:root {
  --cream: #fbf8f1;
  --ivory: #fffdf8;
  --linen: #eee6d7;
  --beige: #d8c8ad;
  --gold: #a98448;
  --gold-dark: #74613e;
  --sage: #8d9679;
  --sage-soft: #e8eadf;
  --charcoal: #2d2a25;
  --muted: #6f6a5e;
  --line: rgba(120, 100, 70, 0.11);
  --shadow: 0 26px 72px rgba(66, 58, 43, 0.1);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

::selection {
  color: var(--ivory);
  background: var(--sage);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.2rem;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(141, 150, 121, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(169, 132, 72, 0.1), transparent 25rem),
    linear-gradient(135deg, var(--cream), var(--ivory) 46%, #f1eadc);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(116, 97, 62, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 18% 28%, rgba(141, 150, 121, 0.08), transparent 18rem);
  background-size: 100% 9rem, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle at center, rgba(45, 42, 37, 0.18) 0.6px, transparent 0.8px);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.02;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  max-width: 13.5ch;
  font-size: clamp(2.55rem, 6.7vw, 5.35rem);
}

h2 {
  max-width: 20ch;
  font-size: clamp(1.95rem, 4.8vw, 3.85rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  text-wrap: balance;
}

.lead {
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), #dcc698);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
  width: min(94rem, calc(100% - 1.5rem));
  min-height: 4.25rem;
  margin: 0 auto;
  padding: 0.62rem clamp(0.8rem, 3vw, 1.4rem);
  border: 1px solid rgba(120, 100, 70, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 10px 34px rgba(66, 58, 43, 0);
  backdrop-filter: blur(12px);
  transition: box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(120, 100, 70, 0.16);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 48px rgba(66, 58, 43, 0.11);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  width: fit-content;
  font-weight: 800;
}

.logo-image {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  filter: drop-shadow(0 8px 14px rgba(66, 58, 43, 0.08));
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.28rem;
}

.site-nav {
  position: fixed;
  top: 4.5rem;
  right: 1rem;
  left: 1rem;
  z-index: 95;
  display: none;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  position: relative;
  padding: 0.85rem;
  color: var(--muted);
  font-weight: 650;
  transition: color 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-dark);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  bottom: 0.42rem;
  left: 0.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 260ms ease, transform 260ms ease;
}

.site-nav a:hover::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.menu-toggle {
  min-height: 2.65rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.75);
  font: inherit;
  font-weight: 800;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.logo:focus-visible,
.footer-link:focus-visible,
.cookie-close:focus-visible,
.cookie-option:focus-within {
  outline: 3px solid rgba(141, 150, 121, 0.38);
  outline-offset: 4px;
}

.button::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 780ms cubic-bezier(.2,.8,.2,1);
}

.button:hover {
  transform: translateY(-2px) scale(1.015);
}

.button:hover::after {
  left: 115%;
}

.button-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, #7b7f62, var(--gold));
  box-shadow: 0 16px 38px rgba(92, 88, 62, 0.22);
}

.button-primary:hover {
  box-shadow: 0 22px 54px rgba(92, 88, 62, 0.26), 0 0 26px rgba(141, 150, 121, 0.15);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 10px 26px rgba(66, 58, 43, 0.06);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.button-large {
  min-height: 3.45rem;
  padding-inline: 1.8rem;
}

.hero,
.page-hero,
.section {
  padding: clamp(3.2rem, 7vw, 6.2rem) clamp(1rem, 5vw, 5rem);
}

.hero-home {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  min-height: min(46rem, calc(100vh - 3.5rem));
  align-items: center;
  max-width: 92rem;
  margin: 0 auto;
  padding-top: clamp(3.4rem, 6vw, 5.6rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.8rem);
}

.section-flow,
.section-blend {
  position: relative;
}

.section-blend::before {
  content: "";
  position: absolute;
  inset: 0 clamp(1rem, 5vw, 5rem) auto;
  height: 1px;
  opacity: 0.62;
  background: linear-gradient(90deg, transparent, rgba(116, 97, 62, 0.12), transparent);
}

.section-blend::after {
  content: "";
  position: absolute;
  inset: -6rem 0 auto;
  z-index: -1;
  height: 16rem;
  pointer-events: none;
  background: radial-gradient(circle at 72% 0%, rgba(141, 150, 121, 0.11), transparent 28rem);
}

.section:nth-of-type(even)::after {
  background: radial-gradient(circle at 16% 0%, rgba(169, 132, 72, 0.08), transparent 26rem);
}

.hero-copy-block,
.section-copy,
.section-heading {
  display: grid;
  gap: 1.15rem;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.hero-points span {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(116, 97, 62, 0.16);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255, 253, 248, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-gallery {
  position: relative;
  min-height: 30rem;
}

.reassurance-note {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: min(15rem, calc(100vw - 2rem));
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(169, 132, 72, 0.16);
  border-radius: 999px;
  color: rgba(74, 63, 43, 0.86);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(248, 241, 229, 0.66));
  box-shadow: 0 16px 42px rgba(66, 58, 43, 0.09);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  pointer-events: none;
  animation: note-drift 9s ease-in-out infinite alternate;
}

.note-hero-one {
  top: 1.15rem;
  right: 8%;
}

.note-hero-two {
  left: 4%;
  bottom: 6.5rem;
  animation-delay: -3s;
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 3rem -1rem auto auto;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  background: rgba(141, 150, 121, 0.16);
  filter: blur(42px);
}

.hero-main-image,
.hero-side-image,
.page-hero-image,
.image-stack img,
.editorial-card,
.service-card,
.mini-card,
.review-card,
.testimonial-card,
.contact-panel,
.spotlight-card,
.feature-panel,
.treatment-row {
  border: 1px solid rgba(120, 100, 70, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 24px 70px rgba(66, 58, 43, 0.08);
}

.hero-main-image,
.hero-side-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
}

.hero-main-image {
  inset: 2rem 0 0 auto;
  width: 76%;
  height: 28rem;
  z-index: 2;
}

.hero-side-image {
  left: 0;
  bottom: 2.4rem;
  width: 38%;
  height: 13rem;
  z-index: 3;
}

.hero-main-image img,
.hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  animation: image-breathe 12s ease-in-out infinite alternate;
}

.hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(45, 42, 37, 0), rgba(45, 42, 37, 0.14));
}

.hero-stat {
  position: absolute;
  right: 1rem;
  bottom: 0;
  display: grid;
  width: min(22rem, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 45px rgba(66, 58, 43, 0.12);
  z-index: 4;
}

.hero-stat span {
  color: rgba(45, 42, 37, 0.82);
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.42), rgba(232, 234, 223, 0.38), rgba(255, 253, 248, 0.42));
}

.trust-strip span {
  padding: 0.82rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.split-section,
.contact-layout {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 92rem;
  margin: 0 auto;
}

.feature-section,
.contact-section {
  position: relative;
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 92rem;
  margin: 0 auto;
}

.skin-section,
.reviews-section,
.booking-section {
  position: relative;
}

.section-note {
  opacity: 0.86;
}

.massage-note {
  top: clamp(1.4rem, 3vw, 2.4rem);
  left: clamp(1rem, 5vw, 5rem);
}

.skin-note {
  top: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1rem, 5vw, 5rem);
  animation-delay: -2.5s;
}

.reviews-note {
  top: clamp(1.2rem, 3vw, 2.2rem);
  right: clamp(1rem, 6vw, 6rem);
  animation-delay: -4s;
}

.feature-copy {
  display: grid;
  gap: 1.05rem;
}

.muted-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 253, 248, 0.8), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(232, 234, 223, 0.48));
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.72), rgba(232, 234, 223, 0.42)),
    radial-gradient(circle at 80% 10%, rgba(141, 150, 121, 0.18), transparent 24rem);
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 42rem;
}

.section-copy h2,
.feature-copy h2 {
  max-width: 18ch;
}

.about-editorial {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
}

.about-editorial p {
  max-width: 44rem;
}

.award-card {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.95rem;
  max-width: 42rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(169, 132, 72, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(248, 241, 229, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(141, 150, 121, 0.1), transparent 14rem);
  box-shadow: 0 18px 54px rgba(66, 58, 43, 0.07);
}

.award-card img {
  width: 5rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(169, 132, 72, 0.22);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(66, 58, 43, 0.14);
}

.award-card div {
  display: grid;
  gap: 0.3rem;
}

.award-card span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-card strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1;
}

#beauty-treatments-morecambe .section-heading {
  max-width: 100%;
}

#beauty-treatments-morecambe .section-heading h2 {
  max-width: 24ch;
}

#beauty-treatments-morecambe .section-heading p:not(.eyebrow) {
  max-width: 34rem;
}

#reviews-cdt-beauty .section-heading {
  max-width: 72rem;
}

#reviews-cdt-beauty .section-heading h2 {
  max-width: 22ch;
}

#skin-treatments-morecambe .section-heading {
  max-width: 74rem;
}

#skin-treatments-morecambe .section-heading h2 {
  max-width: 22ch;
}

#skin-treatments-morecambe .section-heading p:not(.eyebrow) {
  max-width: 60rem;
}

#reviews-cdt-beauty .section-heading h2,
#contact-cdt-beauty .section-copy h2 {
  font-size: clamp(1.85rem, 4vw, 3.25rem);
}

.image-stack {
  position: relative;
  min-height: 31rem;
}

.image-stack-large,
.image-stack-small,
.image-stack-award {
  position: absolute;
  object-fit: cover;
}

.image-stack-large {
  top: 0;
  right: 0;
  width: 78%;
  height: 28rem;
  object-position: center;
}

.image-stack-small {
  left: 0;
  bottom: 0;
  width: 42%;
  height: 13rem;
  object-position: center;
}

.image-stack-award {
  right: 1.2rem;
  bottom: -1.1rem;
  z-index: 4;
  width: min(15rem, 46%);
  aspect-ratio: 4 / 5;
  object-position: center 18%;
  border: 1px solid rgba(169, 132, 72, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 22px 62px rgba(66, 58, 43, 0.13);
  transform: rotate(1.4deg);
}

.service-grid,
.skin-grid,
.mini-grid,
.review-grid,
.testimonial-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.treatment-bento {
  align-items: stretch;
}

.service-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-content: start;
  min-height: 100%;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), box-shadow 520ms ease, border-color 520ms ease, background 520ms ease;
}

.card-note {
  top: 0.85rem;
  right: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  animation: none;
}

.service-card:hover .card-note {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover,
.mini-card:hover,
.review-card:hover,
.treatment-row:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 150, 121, 0.26);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 34px 92px rgba(66, 58, 43, 0.11), 0 0 38px rgba(141, 150, 121, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(.2,.8,.2,1), filter 420ms ease;
}

.service-card img.branded-service-image,
.spotlight-card img.branded-service-image {
  object-position: left center;
}

.treatment-bento .service-card:not(.service-card-featured) img.branded-service-image {
  object-fit: contain;
  background: #d7c5ad;
}

.service-card:hover img {
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.055);
}

.service-card div,
.editorial-card div {
  display: grid;
  gap: 0.82rem;
  padding: clamp(1.12rem, 2.2vw, 1.65rem);
}

.service-card div {
  align-content: start;
  height: 100%;
}

.service-card p {
  line-height: 1.56;
}

.service-card span,
.editorial-card span,
.treatment-row .eyebrow {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link {
  width: fit-content;
  color: var(--gold-dark);
  font-weight: 900;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: color 220ms ease, background-size 320ms cubic-bezier(.2,.8,.2,1);
}

.text-link:hover {
  color: var(--sage);
  background-size: 42% 1px;
}

.feature-panel {
  position: relative;
  display: grid;
  gap: 1.15rem;
  max-width: 62rem;
  margin: auto;
  padding: clamp(2rem, 6vw, 4rem);
  overflow: hidden;
}

.booking-note {
  top: 1.25rem;
  right: 1.25rem;
  animation-delay: -1.5s;
}

.policy-note {
  max-width: 44rem;
  margin-top: 0.25rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(120, 100, 70, 0.12);
  color: rgba(45, 42, 37, 0.68);
  font-size: 0.88rem;
  line-height: 1.65;
}

.policy-note strong {
  color: var(--charcoal);
  font-weight: 800;
}

.spotlight-card {
  display: grid;
  overflow: hidden;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 150, 121, 0.24);
  box-shadow: 0 32px 88px rgba(66, 58, 43, 0.11);
}

.spotlight-card,
.testimonial-card,
.contact-panel,
.feature-panel {
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), box-shadow 420ms ease, border-color 420ms ease;
}

.spotlight-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(.2,.8,.2,1);
}

.spotlight-card:hover img {
  transform: scale(1.04);
}

.editorial-moment {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3rem) clamp(1rem, 5vw, 5rem);
}

.editorial-moment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.78), rgba(232, 234, 223, 0.42)),
    url("assets/skin-glow.jpg") center 36% / cover;
  opacity: 0.12;
  filter: saturate(0.82);
}

.editorial-moment-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  max-width: 92rem;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(120, 100, 70, 0.1);
  border-bottom: 1px solid rgba(120, 100, 70, 0.1);
}

.editorial-moment span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-moment p {
  max-width: 21ch;
  color: rgba(45, 42, 37, 0.86);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
}

.editorial-moment small {
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.spotlight-card div {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.spotlight-card span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-section {
  max-width: 92rem;
  margin: 0 auto;
}

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

.testimonial-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
}

.testimonial-card:hover,
.contact-panel:hover {
  border-color: rgba(141, 150, 121, 0.22);
  box-shadow: 0 30px 86px rgba(66, 58, 43, 0.1);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  right: 1.2rem;
  top: -0.5rem;
  color: rgba(141, 150, 121, 0.14);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.testimonial-card p,
.testimonial-card span,
.testimonial-card .stars {
  position: relative;
}

.testimonial-card p {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1.13;
}

.testimonial-card span {
  color: var(--muted);
  font-weight: 800;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.booking-section {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.booking-section .feature-panel {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(232, 234, 223, 0.6)),
    radial-gradient(circle at 88% 18%, rgba(169, 132, 72, 0.14), transparent 19rem);
}

.social-updates-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.social-updates-panel {
  max-width: 58rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(248, 241, 229, 0.68)),
    radial-gradient(circle at 92% 12%, rgba(169, 132, 72, 0.11), transparent 19rem);
}

.social-update-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.facebook-hero {
  max-width: 92rem;
  margin: 0 auto;
}

.facebook-hero .page-hero-image {
  min-height: 24rem;
  object-position: center 48%;
}

.facebook-feed-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 92rem;
  margin: 0 auto;
}

.facebook-feed-card {
  position: relative;
  overflow: hidden;
  min-height: 32rem;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(120, 100, 70, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(248, 241, 229, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(141, 150, 121, 0.12), transparent 20rem);
  box-shadow: 0 24px 70px rgba(66, 58, 43, 0.08);
}

.facebook-consent-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 28rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(169, 132, 72, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(12px);
}

.facebook-consent-panel h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.facebook-embed-shell {
  display: grid;
  justify-items: center;
  min-height: 32rem;
}

.facebook-embed-shell[hidden],
.facebook-consent-panel[hidden] {
  display: none;
}

.fb-page,
.fb-page span,
.fb-page iframe {
  max-width: 100% !important;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.feature-panel > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(3rem, 8vw, 6rem);
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.editorial-card {
  overflow: hidden;
}

.editorial-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0.3rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.mini-card,
.review-card,
.contact-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 0.13em;
}

.treatment-list {
  display: grid;
  gap: 1.2rem;
}

.treatment-row {
  display: grid;
  gap: 0;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.treatment-row img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
}

.treatment-row div {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: clamp(1.3rem, 4vw, 2.2rem);
}

.cta-strip {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
}

.contact-row {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.86), rgba(248, 241, 229, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(169, 132, 72, 0.09), transparent 16rem);
  backdrop-filter: blur(10px);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-row span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-row strong {
  font-size: 1rem;
}

.contact-actions {
  align-items: stretch;
  padding-top: 0.45rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2.2rem clamp(1rem, 5vw, 5rem) 5.4rem;
  border-top: 1px solid rgba(120, 100, 70, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.5), rgba(232, 234, 223, 0.35));
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-brand {
  flex-direction: column;
  gap: 0.25rem;
  max-width: 42rem;
}

.footer-logo {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  margin-bottom: 0.1rem;
  filter: drop-shadow(0 10px 20px rgba(66, 58, 43, 0.08));
}

.footer-brand small {
  color: rgba(90, 81, 67, 0.74);
  line-height: 1.6;
}

.site-footer strong {
  color: var(--charcoal);
}

.site-footer a {
  font-weight: 900;
  transition: color 180ms ease;
}

.footer-link {
  appearance: none;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-footer a:hover,
.footer-link:hover {
  color: var(--sage);
}

.mobile-sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 90;
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(169, 132, 72, 0.18);
  color: var(--charcoal);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(248, 241, 229, 0.82));
  box-shadow: 0 18px 45px rgba(66, 58, 43, 0.16);
  backdrop-filter: blur(14px);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.cookie-consent,
.cookie-modal {
  position: fixed;
  z-index: 120;
  inset: auto 1rem 1rem;
}

.cookie-modal {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(45, 42, 37, 0.18);
  backdrop-filter: blur(8px);
}

.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-consent-panel,
.cookie-modal-panel {
  border: 1px solid rgba(169, 132, 72, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(248, 241, 229, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(141, 150, 121, 0.1), transparent 18rem);
  box-shadow: 0 26px 84px rgba(45, 42, 37, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-consent-panel {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-left: auto;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.cookie-consent h2,
.cookie-modal h2 {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions .button {
  min-height: 2.75rem;
  padding: 0.78rem 1rem;
}

.cookie-modal-panel {
  display: grid;
  gap: 1.25rem;
  width: min(37rem, 100%);
  padding: clamp(1.1rem, 4vw, 1.7rem);
}

.cookie-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-close {
  min-height: 2.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.7);
  font: inherit;
  font-weight: 800;
}

.cookie-options {
  display: grid;
  gap: 0.7rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.95rem;
  border: 1px solid rgba(120, 100, 70, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
}

.cookie-option input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--sage);
}

.cookie-option span {
  display: grid;
  gap: 0.15rem;
}

.cookie-option small {
  color: var(--muted);
  line-height: 1.5;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes image-breathe {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes note-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0.35rem, -0.45rem, 0);
  }
}

@media (min-width: 640px) {
  .trust-strip,
  .skin-grid,
  .mini-grid,
  .review-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .treatment-row {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (min-width: 720px) {
  .hero-home {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
  }

  .hero-gallery {
    min-height: 29rem;
  }

  .hero-main-image {
    height: 27rem;
  }
}

@media (min-width: 720px) and (max-width: 859px) {
  h1 {
    font-size: clamp(2.45rem, 5.7vw, 4.45rem);
  }

  .hero-copy-block {
    gap: 0.9rem;
  }

  .lead {
    line-height: 1.52;
  }

  .hero-main-image {
    height: 24rem;
  }

  .hero-gallery {
    min-height: 26rem;
  }
}

@media (min-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.6rem 0.75rem;
    font-size: 0.93rem;
  }

  #beauty-treatments-morecambe .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    column-gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
  }

  #reviews-cdt-beauty .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    column-gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
  }

  #beauty-treatments-morecambe .section-heading .eyebrow,
  #skin-treatments-morecambe .section-heading .eyebrow,
  #reviews-cdt-beauty .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

  #beauty-treatments-morecambe .section-heading p:not(.eyebrow),
  #reviews-cdt-beauty .section-heading p:not(.eyebrow) {
    padding-bottom: 0.35rem;
  }

  .page-hero,
  .split-section,
  .feature-section,
  .contact-section,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
  }

  .facebook-feed-layout {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(26rem, 1.28fr);
    align-items: start;
  }

  #about.split-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  }

  .skin-grid,
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }

  .treatment-bento .service-card-featured {
    grid-row: span 2;
  }

  .treatment-bento .service-card-featured img {
    aspect-ratio: 5 / 4;
  }

  .treatment-bento .service-card:not(.service-card-featured) {
    grid-template-columns: minmax(13rem, 1fr) minmax(0, 1fr);
  }

  .treatment-bento .service-card:not(.service-card-featured) img {
    height: 100%;
    min-height: 15rem;
    aspect-ratio: auto;
  }

  .treatment-bento .service-card:not(.service-card-featured) img.branded-service-image {
    object-position: center;
  }

  .editorial-moment-inner {
    grid-template-columns: 0.4fr minmax(20rem, 1fr) 0.55fr;
    align-items: center;
    column-gap: clamp(1.5rem, 4vw, 4rem);
  }

  .editorial-moment small {
    justify-self: end;
  }

  .service-grid article:nth-child(2) {
    margin-top: 1.2rem;
  }

  .service-grid article:nth-child(3) {
    margin-top: 0;
  }

  .skin-grid article:nth-child(2) {
    margin-top: 1.8rem;
  }

  .skin-grid article:nth-child(3) {
    margin-top: 0.4rem;
  }

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

  .trust-strip span {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-strip span:last-child {
    border-right: 0;
  }

  .mini-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer {
    grid-template-columns: minmax(18rem, 0.95fr) minmax(24rem, 1.05fr) auto;
    align-items: start;
    padding-bottom: 2rem;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: end;
    gap: 0.45rem 1rem;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.65rem);
  }

  h3 {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  body {
    line-height: 1.58;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: clamp(2.35rem, 9vw, 3.2rem);
    padding-bottom: clamp(2.35rem, 9vw, 3.2rem);
  }

  .section-heading {
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .hero-copy-block,
  .section-copy,
  .feature-copy {
    gap: 0.85rem;
  }

  .logo-image {
    width: 2.55rem;
    height: 2.55rem;
  }

  .logo-text {
    font-size: 1.14rem;
  }

  .about-editorial {
    gap: 0.72rem;
  }

  .award-card {
    grid-template-columns: 4.35rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }

  .award-card img {
    width: 4.35rem;
  }

  .service-grid,
  .skin-grid,
  .testimonial-grid {
    gap: 0.85rem;
  }

  .service-card div,
  .spotlight-card div {
    gap: 0.65rem;
    padding: 1rem;
  }

  .service-card img,
  .spotlight-card img {
    aspect-ratio: 16 / 10;
  }

  .service-card img.branded-service-image {
    object-fit: cover;
    object-position: left center;
  }

  .image-stack {
    min-height: 22rem;
  }

  .image-stack-large {
    height: 19rem;
  }

  .image-stack-small {
    height: 10rem;
  }

  .image-stack-award {
    right: 0.6rem;
    bottom: -0.5rem;
    width: min(10rem, 40%);
  }

  .testimonial-card {
    gap: 0.75rem;
    padding: 1.15rem;
  }

  .testimonial-card p {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .feature-panel {
    gap: 0.85rem;
    padding: 1.35rem;
  }

  .contact-panel {
    padding: 1rem;
  }

  .contact-row {
    padding-block: 0.72rem;
  }

  .site-footer {
    gap: 1rem;
    padding-top: 1.55rem;
    padding-bottom: 5rem;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.85rem;
  }

  .site-footer a,
  .footer-link {
    text-align: left;
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 4.8rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    top: 0.5rem;
    width: calc(100% - 1rem);
    min-height: 4rem;
  }

  .site-header > .button {
    display: none;
  }

  .logo {
    gap: 0.48rem;
  }

  .logo-text {
    font-size: 1.02rem;
  }

  .hero-main-image {
    width: 82%;
    height: 16.6rem;
  }

  .hero-side-image {
    width: 46%;
    height: 8.4rem;
  }

  .hero-stat {
    right: 0.4rem;
    bottom: -0.75rem;
    width: min(18.5rem, calc(100% - 0.8rem));
    padding: 0.82rem 0.9rem;
  }

  .hero-stat span {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .hero-gallery {
    min-height: 18.4rem;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: clamp(2rem, 9vw, 2.8rem);
    padding-bottom: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-home {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 2.1rem;
    gap: 1.55rem;
  }

  .editorial-moment {
    padding-block: 1.5rem;
  }

  .editorial-moment p {
    max-width: 16ch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 0.45rem;
  }

  .hero-points span {
    font-size: 0.74rem;
  }

  .trust-strip span {
    padding: 0.62rem 0.8rem;
    font-size: 0.7rem;
  }

  .contact-actions .button,
  .feature-panel .button,
  .social-update-actions .button {
    width: 100%;
  }

  .service-grid article,
  .skin-grid article {
    margin-top: 0;
  }

  .reassurance-note {
    font-size: 0.72rem;
    padding: 0.52rem 0.72rem;
  }

  .note-hero-one,
  .note-hero-two,
  .section-note,
  .card-note {
    display: none;
  }

  .booking-note {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    margin-bottom: 0.2rem;
  }

  .cookie-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

/* Layout refinement layer: final art-directed section balance and desktop polish. */
.layout-refinement-about .image-stack-award {
  right: 0.4rem;
  bottom: 0.2rem;
  width: min(12.5rem, 38%);
  opacity: 0.94;
  box-shadow: 0 18px 48px rgba(66, 58, 43, 0.1);
  transform: rotate(0.8deg);
}

.layout-refinement-treatments .service-card p,
.layout-refinement-skin .service-card p {
  line-height: 1.52;
}

.layout-refinement-massage .spotlight-card img {
  object-position: center 42%;
  filter: saturate(0.94) contrast(1.01);
}

.skin-feature-note {
  display: none;
}

@media (min-width: 640px) and (max-width: 859px) {
  .layout-refinement-skin .skin-card-featured {
    grid-column: 1 / -1;
  }

  .layout-refinement-skin .skin-card-featured img {
    aspect-ratio: 16 / 8;
    object-position: center 42%;
  }
}

@media (min-width: 860px) {
  .layout-refinement-treatments .treatment-bento .service-card:not(.service-card-featured) {
    grid-template-columns: minmax(10.5rem, 0.76fr) minmax(0, 1.24fr);
  }

  .layout-refinement-treatments .treatment-bento .service-card:not(.service-card-featured) img {
    min-height: 13.6rem;
  }

  .layout-refinement-treatments .treatment-bento .service-card:not(.service-card-featured) div {
    padding: clamp(1.15rem, 1.7vw, 1.45rem) clamp(1.25rem, 2vw, 1.7rem);
  }

  .layout-refinement-treatments .treatment-bento .service-card:not(.service-card-featured) .card-note {
    opacity: 0;
  }

  .layout-refinement-massage {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(26rem, 1.18fr);
  }

  .layout-refinement-massage .spotlight-card {
    grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
    align-self: center;
  }

  .layout-refinement-massage .spotlight-card img {
    height: 100%;
    min-height: 28rem;
    aspect-ratio: auto;
  }

  .layout-refinement-massage .spotlight-card img.branded-service-image {
    object-fit: contain;
    object-position: center;
    background:
      linear-gradient(135deg, rgba(226, 211, 190, 0.88), rgba(248, 241, 229, 0.9));
  }

  .layout-refinement-skin .skin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .layout-refinement-skin .skin-grid article:nth-child(2),
  .layout-refinement-skin .skin-grid article:nth-child(3) {
    margin-top: 0;
  }

  .layout-refinement-skin .skin-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  }

  .layout-refinement-skin .skin-feature-note {
    display: block;
    right: clamp(1.15rem, 2vw, 1.75rem);
    top: clamp(1.15rem, 2vw, 1.75rem);
    bottom: auto;
    z-index: 5;
    max-width: 14rem;
    opacity: 0.96;
    animation-delay: -2.2s;
    pointer-events: none;
  }

  .layout-refinement-skin .skin-card-featured img {
    height: 100%;
    min-height: 22rem;
    aspect-ratio: auto;
    object-position: center 45%;
  }

  .layout-refinement-skin .skin-card-featured div {
    align-content: center;
    padding: clamp(1.5rem, 3vw, 2.25rem);
  }

  .layout-refinement-skin .skin-grid article:not(.skin-card-featured) img {
    aspect-ratio: 16 / 8.4;
  }

  .layout-refinement-skin .skin-grid article:not(.skin-card-featured) div {
    padding: clamp(1.05rem, 1.7vw, 1.35rem);
  }

  .layout-refinement-skin .skin-grid article:not(.skin-card-featured) .text-link {
    margin-top: 0.1rem;
  }
}

@media (max-width: 720px) {
  .layout-refinement-treatments .service-card img,
  .layout-refinement-skin .service-card img,
  .layout-refinement-massage .spotlight-card img {
    aspect-ratio: 16 / 8.8;
  }

  .layout-refinement-treatments .service-card div,
  .layout-refinement-skin .service-card div,
  .layout-refinement-massage .spotlight-card div {
    padding: 0.95rem;
  }

  .layout-refinement-about .image-stack-award {
    width: min(8.6rem, 34%);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reassurance-note {
    animation: none !important;
  }
}
