:root {
  --lavender: #b8addf;
  --lavender-deep: #6f61d7;
  --lavender-text: #655ad4;
  --pink-soft: #eed8d8;
  --purple-band: #861d86;
  --white: #ffffff;
  --hero-image: url("images/herobg.jpg");
  --shadow: 0 8px 22px rgba(76, 52, 110, 0.16);
  --container: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  background: var(--lavender);
  color: #ffffff;
}

.animate-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.screenshot-header {
  margin: 0 auto;
  background: rgba(184, 173, 223, 0.94);
  box-shadow: 0 10px 16px rgba(91, 72, 142, 0.2);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-image {
  color: #c77da5;
}

.brand-logo-shell {
  position: relative;
  width: 88px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-orbit {
  position: absolute;
  border: 1px solid rgba(199, 125, 165, 0.55);
  border-radius: 50%;
}

.orbit-a {
  width: 70px;
  height: 26px;
}

.orbit-b {
  width: 56px;
  height: 32px;
  transform: rotate(35deg);
}

.orbit-c {
  width: 56px;
  height: 32px;
  transform: rotate(-35deg);
}

.brand-core {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.brand-stack {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.brand-stack strong,
.brand-stack small {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.brand-stack strong {
  font-size: 0.9rem;
}

.brand-stack small {
  font-size: 0.85rem;
  display: block;
}

.screenshot-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.screenshot-nav a {
  position: relative;
  padding-bottom: 0.35rem;
}

.screenshot-nav a.active,
.screenshot-nav a:hover,
.screenshot-nav a:focus-visible {
  color: #7e1687;
}

.screenshot-nav a.active::after,
.screenshot-nav a:hover::after,
.screenshot-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: #6f61d7;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero-shot {
  min-height: 78vh;
  background:
    linear-gradient(rgba(92, 59, 27, 0.18), rgba(92, 59, 27, 0.18)),
    var(--hero-image) center center/cover no-repeat;
}

.hero-overlay {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem 4rem;
  text-align: center;
}

.hero-center {
  max-width: 700px;
}

.hero-center h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 8vw, 6.3rem);
  line-height: 0.92;
  font-weight: 500;
}

.hero-subline,
.hero-description,
.hero-tagline {
  margin-left: auto;
  margin-right: auto;
}

.hero-subline {
  max-width: 640px;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-subline span {
  color: #d55cdc;
  font-weight: 700;
}

.hero-description {
  max-width: 640px;
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

.hero-tagline {
  margin-top: 0.65rem;
  font-size: 0.95rem;
}

.story-band,
.why-band {
  background: var(--lavender);
}

.story-band {
  padding: 4rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.story-copy {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.82);
}

.story-copy h2,
.why-band h2,
.management-band h2,
.booking-band h2,
.footer-preview h2 {
  margin: 0 0 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.story-copy h2 {
  color: rgba(255, 255, 255, 0.88);
  font-size: 3.1rem;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.story-copy p {
  margin: 0;
  line-height: 1.9;
  font-size: 1rem;
}

.story-copy strong {
  color: #a84f97;
}

.story-photos {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 448px;
  border-radius: 12px;
  overflow: hidden;
}

.story-photo {
  min-height: 0;
  background-size: cover;
  background-position: center;
}

.story-photo-top {
  background-image: url("images/aboutimg.jpg");
  background-position: center top;
}

.story-photo-middle {
  background-image: url("images/aboutimg.jpg");
  background-position: center center;
}

.story-photo-bottom {
  background-image: url("images/aboutimg.jpg");
  background-position: center bottom;
}

.why-band {
  padding: 3.8rem 0 4.6rem;
  background: #efdfe4;
  color: var(--lavender-text);
}

.narrow-center {
  max-width: 760px;
  text-align: center;
}

.why-band h2,
.management-band h2,
.footer-preview h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.why-grid {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2rem;
  align-items: start;
}

.why-grid ul {
  margin: 0;
  padding-left: 1rem;
  text-align: left;
  line-height: 1.7;
}

.why-points p {
  margin: 0 0 0.55rem;
  font-weight: 600;
}

.why-summary {
  max-width: 760px;
  margin: 1.2rem auto 0;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 600;
}

.management-band {
  background: var(--pink-soft);
  color: var(--lavender-text);
  padding: 3rem 0 2.5rem;
}

.section-center {
  text-align: center;
}

.section-center p {
  margin: 0;
  color: rgba(111, 97, 215, 0.65);
}

.management-card {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.05fr 1.55fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.manager-photo-wrap,
.manager-details {
  min-height: 280px;
}

.manager-photo {
  position: relative;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(90, 60, 20, 0.08), rgba(90, 60, 20, 0.08)),
    url("images/managernewpic.jpg") center 36%/cover no-repeat;
}

.manager-photo-mask {
  position: absolute;
  inset: 28% 16% 22% 16%;
  background: rgba(209, 171, 160, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.manager-details {
  background: #f7f4f9;
  padding: 1.7rem 1.8rem;
}

.manager-details h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--lavender-text);
}

.manager-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #282028;
}

.manager-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.icon {
  width: 1rem;
  text-align: center;
}

.booking-band {
  background: var(--purple-band);
  padding: 3rem 0 1.8rem;
}

.booking-band-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.booking-band-copy {
  max-width: 520px;
}

.booking-band h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: #ffffff;
}

.policy-copy,
.booking-points {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  font-size: 1rem;
}

.booking-points p {
  margin-bottom: 0.35rem;
}

.booking-points ul {
  margin: 0;
  padding-left: 1.2rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.4rem;
  border-radius: 14px;
  background: #17c964;
  color: #ffffff;
  font-size: 0.95rem;
  margin-top: 1.2rem;
  box-shadow: var(--shadow);
}

.booking-band-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.booking-photo {
  min-height: 320px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.booking-photo-left {
  background-image: url("images/welcomepic.jpg");
}

.booking-photo-right {
  background-image: url("images/massageroom.jpg");
}

.session-gallery-band {
  background: var(--lavender);
  color: #8f1e7d;
  padding: 2.2rem 0 0;
}

.session-gallery-header h2 {
  margin-bottom: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.session-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.session-viewport {
  overflow: hidden;
  width: 100%;
}

.session-track {
  display: flex;
  gap: 2.2rem;
  transition: transform 320ms ease;
  will-change: transform;
}

.session-card {
  flex: 0 0 calc((100% - 6.6rem) / 4);
}

.session-card-image {
  position: relative;
  min-height: 500px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.session-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.12));
}

.session-image-1 {
  background-image: url("images/sessionbookings1.jpg");
}

.session-image-2 {
  background-image: url("images/sessionbookings2.jpg");
}

.session-image-3 {
  background-image: url("images/sessionbookings3.jpg");
}

.session-image-4 {
  background-image: url("images/sessionbookings4.jpg");
}

.session-image-5 {
  background-image: url("images/sessionbookings5.jpg");
}

.session-image-6 {
  background-image: url("images/sessionbookings6.jpg");
}

.session-image-7 {
  background-image: url("images/sessionbookings7.jpg");
}

.session-image-8 {
  background-image: url("images/sessionbookings8.jpg");
}

.session-card-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  font-family: "Lora", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #8f1e7d;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.carousel-arrow-prev {
  left: -0.8rem;
}

.carousel-arrow-next {
  right: -0.8rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 0 2.6rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(101, 90, 212, 0.35);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #2c83ff;
}

.home-footer {
  background: var(--purple-band);
  padding: 1rem 0 1.2rem;
}

.home-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f36bc5, #c83e9b);
  color: #ffffff;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.inner-hero,
.section,
.section-soft,
.site-footer,
.hero-actions,
.button,
.button-secondary,
.button-sm,
.hero-card,
.feature-grid,
.card-grid,
.footer-grid,
.split-layout,
.management-grid,
.policy-banner,
.booking-layout,
.gallery-grid,
.review-grid,
.booking-summary,
.info-card,
.booking-form {
  display: initial;
}

.site-footer {
  display: none;
}

.booking-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  color: #332233;
  box-shadow: var(--shadow);
}

.booking-form label,
.booking-form fieldset {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.booking-form input,
.booking-form select {
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(80, 63, 130, 0.18);
  border-radius: 12px;
}

.booking-form button {
  border: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-note {
  color: rgba(51, 34, 51, 0.7);
}

.story-band,
.why-band,
.management-band,
.booking-band,
.session-gallery-band,
.clinic-band,
.booking-form-band,
.reviews-band,
.refund-policy-band,
.refund-form-band,
.refund-reviews-band {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.form-note.success {
  color: #2e7d32;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 120;
  width: min(92vw, 420px);
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: rgba(46, 125, 50, 0.96);
  color: #ffffff;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-toast.is-error {
  background: rgba(179, 38, 30, 0.97);
}

.book-hero {
  min-height: 72vh;
  background:
    linear-gradient(rgba(92, 59, 27, 0.18), rgba(92, 59, 27, 0.18)),
    var(--hero-image) center center/cover no-repeat;
}

.book-hero-overlay {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1rem 4rem;
  text-align: center;
}

.book-hero-copy {
  max-width: 760px;
}

.book-hero-copy h1,
.clinic-heading h2,
.booking-heading h2,
.reviews-heading h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.book-hero-copy h1 {
  font-size: clamp(3.6rem, 6vw, 5.4rem);
  font-weight: 500;
}

.book-hero-copy p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1rem;
}

.book-hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.book-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.book-pill-primary {
  background: #9826a8;
}

.book-pill-secondary {
  background: #7e70ea;
}

.clinic-band {
  background: var(--lavender);
  color: #8f1e7d;
  padding: 1.5rem 0 2rem;
}

.clinic-heading h2,
.reviews-heading h2 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.clinic-carousel .session-track {
  gap: 0.9rem;
}

.clinic-card {
  flex: 0 0 calc((100% - 2.7rem) / 4);
  min-height: 460px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.clinic-1 {
  background-image: url("images/massageroom.jpg");
}

.clinic-2 {
  background-image: url("images/massageroom2.jpg");
}

.clinic-3 {
  background-image: url("images/massageroom3.jpg");
}

.clinic-4 {
  background-image: url("images/massageroom4.jpg");
}

.clinic-5 {
  background-image: url("images/massageroom5.jpg");
}

.booking-form-band {
  background: var(--pink-soft);
  padding: 2rem 0 2.6rem;
}

.booking-form-wrap {
  max-width: 980px;
}

.booking-heading h2 {
  color: #42374d;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
}

.booking-heading p {
  color: rgba(111, 97, 215, 0.65);
  font-size: 0.88rem;
}

.booking-form-screenshot {
  max-width: none;
  margin-top: 1.8rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #241f25;
}

.booking-form-screenshot label,
.booking-form-screenshot fieldset {
  margin-bottom: 1.25rem;
}

.booking-form-screenshot span,
.booking-form-screenshot legend {
  font-size: 1rem;
  font-weight: 500;
}

.booking-form-screenshot input:not([type="checkbox"]):not([type="radio"]),
.booking-form-screenshot select {
  min-height: 30px;
  background: rgba(219, 196, 193, 0.56);
  border: 1px solid rgba(160, 127, 151, 0.1);
  border-radius: 7px;
  color: #231c22;
}

.services-fieldset,
.meetup-fieldset {
  border: 0;
  padding: 0;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.checkbox-option,
.inline-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.checkbox-option input,
.inline-option input {
  min-height: auto;
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 16px;
}

.booking-form-screenshot small {
  color: rgba(51, 34, 51, 0.7);
}

.date-time-row {
  max-width: 720px;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  align-items: end;
}

.time-range-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.time-range-group > span {
  font-size: 1rem;
  font-weight: 500;
}

.time-range-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.time-range-fields label {
  margin-bottom: 0;
}

.time-range-fields label span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-submit {
  width: 100%;
  border: 0;
  min-height: 44px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f05ce5, #d85be8);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.reviews-band {
  background: var(--lavender);
  color: #8f1e7d;
  padding: 2rem 0 2rem;
}

.review-track {
  gap: 2.3rem;
  align-items: center;
}

.review-shot {
  flex: 0 0 calc((100% - 4rem) / 3);
}

.review-shot-side {
  opacity: 1;
}

.review-screen {
  min-height: 360px;
  border-radius: 16px;
  background-color: rgba(248, 246, 252, 0.96);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 10px 24px rgba(76, 52, 110, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.review-shot-main .review-screen {
  min-height: 392px;
  transform: scale(1.02);
  box-shadow: 0 14px 30px rgba(76, 52, 110, 0.2);
}

.review-shot-side .review-screen {
  min-height: 320px;
}

.review-image-1 {
  background-image: url("images/aftersession1.png");
}

.review-image-2 {
  background-image: url("images/aftersession2.png");
}

.review-image-3 {
  background-image: url("images/aftersession3.png");
}

.review-image-4 {
  background-image: url("images/aftersession4.png");
}

.review-image-5 {
  background-image: url("images/aftersession5.png");
}

.review-image-6 {
  background-image: url("images/aftersession6.png");
}

.review-image-7 {
  background-image: url("images/aftersession7.png");
}

.refund-policy-band {
  background:
    linear-gradient(rgba(87, 69, 181, 0.88), rgba(111, 99, 216, 0.92)),
    var(--hero-image) center center/cover no-repeat;
  color: var(--lavender-text);
  padding: 2rem 0 2.3rem;
}

.refund-policy-heading {
  max-width: 760px;
  margin: 0 auto;
}

.refund-policy-heading h1,
.refund-reviews-heading h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  color: var(--lavender-text);
}

.refund-policy-heading p {
  margin: 0 auto;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-size: 1rem;
}

.refund-policy-heading strong {
  color: #ffffff;
}

.refund-policy-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.refund-policy-card {
  min-height: 140px;
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(195, 184, 235, 0.78);
  box-shadow: var(--shadow);
}

.refund-policy-card h2 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--lavender-text);
}

.refund-policy-card p {
  margin: 0;
  color: #2f2a30;
  line-height: 1.7;
}

.refund-form-band {
  padding-bottom: 2.7rem;
}

.refund-form-screenshot textarea {
  width: 100%;
  resize: none;
  padding: 0.85rem 1rem;
  background: rgba(219, 196, 193, 0.56);
  border: 1px solid rgba(160, 127, 151, 0.1);
  border-radius: 7px;
  color: #231c22;
}

.refund-reason-field span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.refund-reason-field span small {
  color: rgba(36, 31, 37, 0.8);
}

.refund-counter-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: rgba(72, 75, 120, 0.7);
  font-size: 0.85rem;
}

.refund-reviews-band {
  background: #efedf2;
  color: var(--lavender-text);
  padding: 2rem 0 0;
}

.refund-review-shell {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.refund-review-carousel {
  position: relative;
}

.refund-review-track {
  gap: 0;
}

.refund-review-card {
  flex: 0 0 100%;
  min-height: 280px;
  padding: 2rem 5.5rem 2rem;
  border-radius: 14px;
  background: rgba(168, 153, 219, 0.95);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.refund-review-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background:
    linear-gradient(rgba(204, 167, 144, 0.78), rgba(204, 167, 144, 0.78)),
    url("images/aboutimg.jpg") center/cover no-repeat;
  filter: blur(1px);
}

.refund-review-avatar-1 {
  background-image:
    linear-gradient(rgba(204, 167, 144, 0.78), rgba(204, 167, 144, 0.78)),
    url("images/aboutimg.jpg");
}

.refund-review-avatar-2 {
  background-image:
    linear-gradient(rgba(204, 167, 144, 0.78), rgba(204, 167, 144, 0.78)),
    url("images/welcomepic.jpg");
}

.refund-review-avatar-3 {
  background-image:
    linear-gradient(rgba(204, 167, 144, 0.78), rgba(204, 167, 144, 0.78)),
    url("images/massageroom.jpg");
}

.refund-review-avatar-4 {
  background-image:
    linear-gradient(rgba(204, 167, 144, 0.78), rgba(204, 167, 144, 0.78)),
    url("images/massageroom2.jpg");
}

.refund-review-avatar-5 {
  background-image:
    linear-gradient(rgba(204, 167, 144, 0.78), rgba(204, 167, 144, 0.78)),
    url("images/massageroom3.jpg");
}

.refund-review-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
}

.refund-review-location,
.refund-review-stars,
.refund-review-copy {
  margin: 0.35rem 0 0;
}

.refund-review-location {
  font-style: italic;
  opacity: 0.9;
}

.refund-review-stars {
  color: #ffd22f;
  font-size: 1.8rem;
  line-height: 1;
}

.refund-review-copy {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-style: italic;
  font-size: 1.02rem;
}

.refund-arrow {
  background: rgba(255, 255, 255, 0.94);
  color: #7f7897;
}

.animate-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.session-card,
.clinic-card,
.review-shot,
.refund-review-card,
.refund-policy-card {
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    opacity 280ms ease;
}

.session-card:hover,
.clinic-card:hover,
.review-shot:hover,
.refund-review-card:hover,
.refund-policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(76, 52, 110, 0.22);
}

.terms-band {
  background: linear-gradient(180deg, #6b5ad4 0%, #6f63d8 100%);
  padding: 1.5rem 0 0;
}

.terms-wrap {
  max-width: 1100px;
}

.terms-card {
  width: min(100%, 980px);
  margin: 1.4rem auto 2rem;
  padding: 2.1rem 2.15rem 1.9rem;
  border-radius: 18px;
  background: rgba(179, 166, 228, 0.88);
  box-shadow: var(--shadow);
  color: #f7f2ff;
}

.terms-card h1 {
  max-width: 700px;
  margin: 0 auto 1.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 3.9vw, 3.5rem);
  line-height: 1.08;
  text-align: center;
}

.terms-intro,
.terms-closing {
  max-width: 760px;
  line-height: 1.8;
}

.terms-intro {
  margin: 0 auto 1.55rem;
  text-align: left;
}

.terms-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.terms-point {
  padding-left: 0.85rem;
  border-left: 3px solid #9b287c;
}

.terms-point h2 {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  color: #fff8ff;
}

.terms-point h2::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #9826a8;
  color: #ffffff;
  font-size: 0.72rem;
  vertical-align: middle;
}

.terms-point p {
  margin: 0;
  line-height: 1.8;
}

.terms-closing {
  margin: 1.8rem auto 0;
  text-align: center;
}

.terms-updated {
  margin: 1.6rem 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
  text-align: center;
}

@media (max-width: 980px) {
  .story-grid,
  .management-card,
  .booking-band-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: none;
  }

  .session-card {
    flex-basis: calc((100% - 2.2rem) / 2);
  }

  .clinic-card {
    flex-basis: calc((100% - 0.9rem) / 2);
    min-height: 400px;
  }

  .review-shot {
    flex-basis: 100%;
  }

  .session-card-image {
    min-height: 460px;
  }

  .review-screen,
  .review-shot-main .review-screen,
  .review-shot-side .review-screen {
    min-height: 400px;
    transform: none;
  }

  .refund-review-shell {
    max-width: 100%;
  }

  .refund-review-card {
    min-height: 250px;
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }

  .refund-policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header.screenshot-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
  }

  .home-page .container {
    width: min(100% - 1.45rem, 1180px);
  }

  .home-page .screenshot-header {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(91, 72, 142, 0.18);
  }

  .home-page .nav-wrap {
    min-height: 100px;
    padding: 0.35rem 0 0.15rem;
  }

  .home-page .brand {
    gap: 0.45rem;
  }

  .home-page .brand-logo-shell {
    width: 96px;
    height: 52px;
  }

  .home-page .brand-stack {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 45;
  }

  .home-page .menu-toggle {
    width: 42px;
    height: 42px;
    background: transparent;
    border-radius: 0;
  }

  .home-page .menu-toggle span {
    width: 24px;
    height: 3px;
    margin: 4px auto;
    background: rgba(255, 244, 247, 0.95);
  }

  .screenshot-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 9rem 1.6rem 2rem;
    background: rgba(163, 126, 209, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: center;
    z-index: 35;
  }

  .screenshot-nav.open {
    display: flex;
  }

  .screenshot-nav a {
    padding-bottom: 0.45rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    color: rgba(255, 247, 250, 0.96);
  }

  .screenshot-nav a.active::after,
  .screenshot-nav a:hover::after,
  .screenshot-nav a:focus-visible::after {
    left: 20%;
    right: 20%;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle span {
    display: block;
    transform-origin: center;
    transition:
      transform 220ms ease,
      opacity 220ms ease,
      background-color 220ms ease;
  }

  .book-page .screenshot-header,
  .refund-page .screenshot-header,
  .terms-page .screenshot-header {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 8px 16px rgba(91, 72, 142, 0.18);
  }

  .book-page .nav-wrap,
  .refund-page .nav-wrap,
  .terms-page .nav-wrap {
    min-height: 100px;
    padding: 0.35rem 0 0.15rem;
  }

  .book-page .brand,
  .refund-page .brand,
  .terms-page .brand {
    gap: 0.45rem;
  }

  .book-page .brand-logo-shell,
  .refund-page .brand-logo-shell,
  .terms-page .brand-logo-shell {
    width: 96px;
    height: 52px;
  }

  .book-page .brand-stack,
  .refund-page .brand-stack,
  .terms-page .brand-stack {
    display: none;
  }

  .book-page .menu-toggle,
  .refund-page .menu-toggle,
  .terms-page .menu-toggle {
    width: 42px;
    height: 42px;
    background: transparent;
    border-radius: 0;
  }

  .book-page .menu-toggle span,
  .refund-page .menu-toggle span,
  .terms-page .menu-toggle span {
    width: 24px;
    height: 3px;
    margin: 4px auto;
    background: rgba(255, 244, 247, 0.95);
  }

  .home-page .hero-shot,
  .home-page .hero-overlay {
    min-height: 650px;
  }

  .hero-overlay {
    padding-top: 6.5rem;
    padding-bottom: 3.2rem;
  }

  .home-page .hero-overlay {
    align-items: center;
    padding-top: 7.25rem;
    padding-bottom: 4rem;
  }

  .home-page .hero-center {
    max-width: 390px;
  }

  .hero-center h1 {
    font-size: 3.35rem;
  }

  .hero-subline,
  .hero-description,
  .hero-tagline {
    max-width: 100%;
  }

  .home-page .hero-center h1 {
    font-size: 3.45rem;
    line-height: 1;
  }

  .home-page .hero-subline {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .home-page .hero-description {
    margin-top: 1rem;
    font-size: 0.84rem;
    line-height: 1.62;
  }

  .home-page .hero-tagline {
    margin-top: 0.85rem;
    font-size: 0.84rem;
  }

  .booking-band-photos,
  .form-row {
    grid-template-columns: 1fr;
  }

  .session-card {
    flex-basis: 100%;
  }

  .session-track {
    gap: 1rem;
  }

  .session-card-image {
    min-height: 440px;
  }

  .carousel-arrow-prev {
    left: -0.2rem;
  }

  .carousel-arrow-next {
    right: -0.2rem;
  }

  .home-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-hero-actions,
  .service-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .clinic-card {
    flex-basis: 100%;
    min-height: 420px;
  }

  .review-screen,
  .review-shot-main .review-screen,
  .review-shot-side .review-screen {
    min-height: 360px;
  }

  .story-photos {
    min-height: 540px;
  }

  .home-page .story-band {
    padding-top: 1.8rem;
    padding-bottom: 2.9rem;
  }

  .home-page .story-grid {
    gap: 1.7rem;
  }

  .home-page .story-photos {
    order: -1;
    min-height: 522px;
    width: min(100%, 430px);
    margin: 0 auto;
    border-radius: 18px;
  }

  .home-page .story-copy {
    max-width: none;
    padding: 0 0.9rem 0 0.75rem;
  }

  .home-page .story-copy h2 {
    margin-bottom: 0.9rem;
    font-size: 3rem;
  }

  .home-page .story-copy p {
    font-size: 0.94rem;
    line-height: 1.82;
  }

  .home-page .why-band {
    padding-top: 3.4rem;
    padding-bottom: 3.7rem;
  }

  .home-page .narrow-center {
    max-width: 430px;
  }

  .home-page .why-band h2 {
    margin-bottom: 1.65rem;
    font-size: 2.9rem;
  }

  .home-page .why-grid {
    gap: 1rem;
    grid-template-columns: 18px 1fr;
    justify-content: center;
  }

  .home-page .why-grid ul {
    padding-left: 0.8rem;
    line-height: 2.3;
  }

  .home-page .why-points p {
    margin-bottom: 1rem;
    font-size: 0.96rem;
  }

  .home-page .why-summary {
    margin-top: 1.35rem;
    font-size: 0.98rem;
    line-height: 2;
    max-width: 430px;
  }

  .home-page .management-band {
    padding-top: 3.2rem;
    padding-bottom: 2.4rem;
  }

  .home-page .section-center {
    max-width: 430px;
    margin: 0 auto;
  }

  .home-page .section-center h2 {
    margin-bottom: 0.65rem;
    font-size: 3rem;
  }

  .home-page .section-center p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .home-page .management-card {
    margin-top: 2rem;
    border-radius: 20px;
  }

  .home-page .manager-photo-wrap {
    min-height: 350px;
  }

  .home-page .manager-details {
    padding: 1.5rem 1.25rem 1.1rem;
  }

  .home-page .manager-details h3 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
  }

  .home-page .manager-list li {
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .home-page .booking-band {
    padding-top: 1rem;
    padding-bottom: 2.1rem;
  }

  .home-page .booking-band-grid {
    gap: 1.35rem;
  }

  .home-page .booking-band-photos {
    order: -1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-page .booking-photo-right {
    display: none;
  }

  .home-page .booking-photo-left {
    min-height: 470px;
    border-radius: 10px;
    background-position: center center;
  }

  .home-page .booking-band-copy {
    max-width: none;
  }

  .home-page .booking-band h2 {
    margin-bottom: 0.85rem;
    font-size: 3rem;
  }

  .home-page .policy-copy,
  .home-page .booking-points {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .home-page .session-gallery-band {
    padding-top: 1.1rem;
    padding-bottom: 0.25rem;
  }

  .home-page .session-gallery-header h2 {
    margin-bottom: 0.9rem;
  }

  .home-page .session-carousel {
    gap: 0;
  }

  .home-page .session-track {
    gap: 0.8rem;
  }

  .home-page .session-card {
    flex-basis: 100%;
  }

  .home-page .session-card-image {
    min-height: 640px;
    border-radius: 18px;
    background-position: center top;
  }

  .home-page .session-card-caption {
    display: none;
  }

  .home-page .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .home-page .carousel-arrow-prev {
    left: 0.2rem;
  }

  .home-page .carousel-arrow-next {
    right: 0.2rem;
  }

  .home-page .carousel-dots {
    padding-top: 0.8rem;
    padding-bottom: 1.2rem;
  }

  .book-page .book-hero {
    min-height: 610px;
  }

  .book-page .book-hero-overlay {
    min-height: 610px;
    padding: 7rem 1.15rem 2.3rem;
    align-items: center;
  }

  .book-page .book-hero-copy {
    max-width: 400px;
  }

  .book-page .book-hero-copy h1 {
    margin-bottom: 0.7rem;
    font-size: 3.1rem;
    line-height: 1;
  }

  .book-page .book-hero-copy p {
    max-width: 390px;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .book-page .book-hero-actions {
    margin-top: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .book-page .book-pill {
    min-height: 50px;
    padding: 0.8rem 1.55rem;
    font-size: 0.95rem;
  }

  .book-page .clinic-band {
    padding: 1.25rem 0 1.65rem;
  }

  .book-page .clinic-heading h2 {
    margin-bottom: 1rem;
    font-size: 2.75rem;
  }

  .book-page .clinic-carousel .session-track {
    gap: 0.8rem;
  }

  .book-page .clinic-card {
    flex-basis: 100%;
    min-height: 560px;
    border-radius: 18px;
    background-position: center center;
  }

  .book-page .clinic-carousel .carousel-arrow {
    width: 44px;
    height: 44px;
    top: 50%;
    margin-top: -22px;
    font-size: 2.1rem;
  }

  .book-page .clinic-carousel .carousel-arrow-prev {
    left: 0.15rem;
  }

  .book-page .clinic-carousel .carousel-arrow-next {
    right: 0.15rem;
  }

  .book-page .carousel-dots {
    padding-top: 0.85rem;
  }

  .book-page .booking-form-band {
    padding: 2.3rem 0 2rem;
  }

  .book-page .booking-form-wrap {
    max-width: 100%;
  }

  .book-page .booking-heading {
    max-width: 420px;
    margin: 0 auto;
  }

  .book-page .booking-heading h2 {
    font-size: 2.15rem;
    line-height: 1.2;
  }

  .book-page .booking-heading p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .book-page .booking-form-screenshot {
    margin-top: 2rem;
  }

  .book-page .booking-form-screenshot label,
  .book-page .booking-form-screenshot fieldset {
    margin-bottom: 1.05rem;
  }

  .book-page .booking-form-screenshot span,
  .book-page .booking-form-screenshot legend {
    font-size: 0.96rem;
  }

  .book-page .booking-form-screenshot input:not([type="checkbox"]):not([type="radio"]),
  .book-page .booking-form-screenshot select {
    min-height: 48px;
    padding: 0.7rem 0.85rem;
    font-size: 0.96rem;
  }

  .book-page .service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
  }

  .book-page .checkbox-option,
  .book-page .inline-option {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .book-page .checkbox-option {
    gap: 0.5rem;
  }

  .book-page .checkbox-option input,
  .book-page .inline-option input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .book-page .meetup-fieldset .inline-option {
    display: flex;
    margin-bottom: 0.7rem;
  }

  .book-page .date-time-row {
    max-width: 100%;
    gap: 0.9rem;
    margin-bottom: 0.45rem;
  }

  .book-page .date-time-row label {
    margin-bottom: 0;
  }

  .book-page .time-range-fields {
    gap: 0.9rem;
  }

  .book-page .booking-submit {
    min-height: 50px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .book-page .form-note {
    display: none;
  }

  .book-page .reviews-band {
    padding: 2.1rem 0 1.8rem;
  }

  .refund-page main,
  .terms-page main {
    padding-top: 100px;
  }

  .book-page .reviews-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .book-page .review-shot {
    flex-basis: 100%;
  }

  .book-page .review-screen,
  .book-page .review-shot-main .review-screen,
  .book-page .review-shot-side .review-screen {
    min-height: 400px;
    border-radius: 14px;
    background-size: contain;
    background-position: center top;
    background-color: rgba(248, 246, 252, 0.98);
  }

  .story-photo,
  .booking-photo,
  .session-card-image,
  .clinic-card,
  .review-screen {
    background-size: cover;
    background-position: center;
  }

  .booking-photo {
    min-height: 360px;
  }

  .refund-review-card {
    min-height: 236px;
    padding-left: 3.1rem;
    padding-right: 3.1rem;
  }

  .refund-review-card h3 {
    font-size: 1.9rem;
  }

  .refund-review-copy {
    font-size: 0.96rem;
  }

  .terms-card {
    max-width: 92%;
    padding: 1.5rem 1.15rem;
  }

  .terms-card h1 {
    max-width: 100%;
    font-size: 2.7rem;
  }

  .story-band,
  .why-band,
  .management-band,
  .booking-band {
    padding-left: 0;
    padding-right: 0;
  }

  .story-copy p,
  .why-summary,
  .policy-copy,
  .booking-points,
  .refund-policy-card p,
  .terms-intro,
  .terms-closing {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .home-page .container {
    width: min(100% - 1rem, 1180px);
  }

  .nav-wrap {
    min-height: 74px;
    gap: 0.7rem;
  }

  .brand-logo-shell {
    width: 62px;
    height: 32px;
  }

  .brand-stack strong {
    font-size: 0.78rem;
  }

  .brand-stack small {
    font-size: 0.72rem;
  }

  .hero-center h1 {
    font-size: 2.75rem;
  }

  .home-page .screenshot-header {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .home-page .nav-wrap {
    min-height: 92px;
    padding-top: 0.2rem;
  }

  .home-page .brand-logo-shell {
    width: 88px;
    height: 46px;
  }

  .home-page .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .book-page .screenshot-header,
  .refund-page .screenshot-header,
  .terms-page .screenshot-header {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .book-page .nav-wrap,
  .refund-page .nav-wrap,
  .terms-page .nav-wrap {
    min-height: 92px;
    padding-top: 0.2rem;
  }

  .book-page .brand-logo-shell,
  .refund-page .brand-logo-shell,
  .terms-page .brand-logo-shell {
    width: 88px;
    height: 46px;
  }

  .book-page .menu-toggle,
  .refund-page .menu-toggle,
  .terms-page .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .screenshot-nav {
    gap: 1.7rem;
    padding-top: 8.4rem;
  }

  .screenshot-nav a {
    font-size: 2.1rem;
  }

  .home-page .hero-shot,
  .home-page .hero-overlay {
    min-height: 620px;
  }

  .book-page .book-hero,
  .book-page .book-hero-overlay {
    min-height: 590px;
  }

  .book-page .book-hero-overlay {
    padding-top: 6.85rem;
    padding-bottom: 1.9rem;
  }

  .book-page .book-hero-copy {
    max-width: 320px;
  }

  .book-page .book-hero-copy h1 {
    font-size: 2.55rem;
  }

  .book-page .book-hero-copy p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .book-page .book-pill {
    min-height: 48px;
    padding: 0.8rem 1.35rem;
    font-size: 0.9rem;
  }

  .book-page .clinic-band {
    padding-top: 1rem;
  }

  .book-page .clinic-heading h2 {
    font-size: 2.45rem;
  }

  .book-page .clinic-card {
    min-height: 500px;
    border-radius: 16px;
  }

  .book-page .booking-form-band {
    padding-top: 1.9rem;
    padding-bottom: 1.7rem;
  }

  .book-page .booking-heading h2 {
    font-size: 1.9rem;
  }

  .book-page .booking-heading p {
    font-size: 0.82rem;
  }

  .book-page .booking-form-screenshot input:not([type="checkbox"]):not([type="radio"]),
  .book-page .booking-form-screenshot select {
    min-height: 46px;
  }

  .book-page .service-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 0.9rem;
  }

  .book-page .checkbox-option,
  .book-page .inline-option {
    font-size: 0.82rem;
  }

  .book-page .services-fieldset,
  .book-page .meetup-fieldset {
    margin-bottom: 1.1rem;
  }

  .book-page .services-fieldset legend,
  .book-page .meetup-fieldset legend {
    margin-bottom: 0.8rem;
  }

  .book-page .checkbox-option {
    gap: 0.45rem;
  }

  .book-page .checkbox-option input,
  .book-page .inline-option input {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .book-page .date-time-row {
    grid-template-columns: 1fr;
    margin-bottom: 0.7rem;
  }

  .book-page .time-range-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .book-page .booking-submit {
    min-height: 52px;
    font-size: 1rem;
  }

  .book-page .reviews-heading h2 {
    font-size: 2.2rem;
  }

  .book-page .review-screen,
  .book-page .review-shot-main .review-screen,
  .book-page .review-shot-side .review-screen {
    min-height: 345px;
  }

  .refund-page main,
  .terms-page main {
    padding-top: 92px;
  }

  .home-page .hero-overlay {
    padding-top: 6.9rem;
    padding-bottom: 3.5rem;
  }

  .home-page .hero-center {
    max-width: 330px;
  }

  .home-page .hero-center h1 {
    font-size: 2.95rem;
  }

  .home-page .hero-subline {
    font-size: 0.82rem;
  }

  .home-page .hero-description,
  .home-page .hero-tagline {
    font-size: 0.8rem;
  }

  .story-copy h2,
  .why-band h2,
  .management-band h2,
  .booking-band h2,
  .refund-policy-heading h1,
  .refund-reviews-heading h2,
  .terms-card h1 {
    font-size: 2.25rem;
  }

  .management-card,
  .booking-form,
  .terms-card {
    border-radius: 12px;
  }

  .manager-details,
  .booking-form {
    padding: 1.2rem;
  }

  .session-card-image,
  .clinic-card {
    min-height: 360px;
  }

  .review-screen,
  .review-shot-main .review-screen,
  .review-shot-side .review-screen {
    min-height: 420px;
  }

  .story-photos {
    min-height: 510px;
  }

  .home-page .story-band {
    padding-top: 1.45rem;
  }

  .home-page .story-photos {
    min-height: 488px;
    border-radius: 16px;
  }

  .home-page .story-copy {
    padding: 0 0.7rem;
  }

  .home-page .story-copy h2 {
    font-size: 2.55rem;
    margin-bottom: 0.85rem;
  }

  .home-page .story-copy p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .home-page .why-band {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .home-page .why-band h2 {
    font-size: 2.35rem;
  }

  .home-page .why-grid {
    gap: 0.8rem;
    grid-template-columns: 14px 1fr;
  }

  .home-page .why-points p,
  .home-page .why-summary {
    font-size: 0.92rem;
  }

  .home-page .management-band {
    padding-top: 2.85rem;
  }

  .home-page .section-center h2 {
    font-size: 2.55rem;
  }

  .home-page .manager-photo-wrap {
    min-height: 315px;
  }

  .home-page .manager-details h3 {
    font-size: 2rem;
  }

  .home-page .booking-band {
    padding-top: 0.85rem;
    padding-bottom: 1.9rem;
  }

  .home-page .booking-band-grid {
    gap: 1.1rem;
  }

  .home-page .booking-photo-left {
    min-height: 490px;
    border-radius: 10px;
  }

  .home-page .booking-band h2 {
    font-size: 2.7rem;
  }

  .home-page .policy-copy,
  .home-page .booking-points {
    font-size: 0.88rem;
    line-height: 1.78;
  }

  .home-page .whatsapp-button {
    min-height: 42px;
    padding: 0.72rem 1.25rem;
  }

  .home-page .session-gallery-band {
    padding-top: 0.85rem;
  }

  .home-page .session-card-image {
    min-height: 690px;
    border-radius: 16px;
  }

  .home-page .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 2.1rem;
  }

  .home-page .carousel-arrow-prev {
    left: 0.15rem;
  }

  .home-page .carousel-arrow-next {
    right: 0.15rem;
  }

  .story-photo {
    min-height: 170px;
  }

  .booking-photo {
    min-height: 340px;
  }

  .session-card-image {
    min-height: 460px;
  }

  .clinic-card {
    min-height: 440px;
  }

  .review-screen {
    min-height: 460px;
    background-size: cover;
    background-position: center top;
  }

  .refund-review-card {
    min-height: 220px;
    padding: 1.35rem 2.3rem;
  }

  .refund-review-avatar {
    width: 62px;
    height: 62px;
  }

  .refund-review-card h3 {
    font-size: 1.7rem;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
}
