:root {
  --legacy-blue: #b27370;
  --legacy-pale: #dab6b2;
  --legacy-soft: #f7ecea;
  --legacy-text: #101010;
  --legacy-muted: #344052;
  --legacy-max: 1240px;
  --legacy-font: "Helvetica Neue Regular", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --legacy-body-font: "Helvetica Neue Thin", "HelveticaNeue-Thin", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --legacy-heading-font: "Helvetica Neue Regular", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
  scroll-padding-top: 172px;
}

body.legacy-site,
.legacy-site {
  margin: 0;
  background: #fbf7f7;
  color: var(--legacy-text);
  font-family: var(--legacy-font);
  line-height: 1.72;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  word-spacing: normal;
}

.legacy-site h1,
.legacy-site h2,
.legacy-site h3,
.legacy-site h4 {
  margin: 0;
  font-family: var(--legacy-heading-font);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
  color: #161111;
  text-wrap: balance;
}

.legacy-site p {
  margin: 0;
  color: var(--legacy-muted);
  font-family: var(--legacy-font);
  font-weight: 400;
}

.legacy-site a {
  color: inherit;
  text-decoration: none;
}

.legacy-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 104px;
  transform: none;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  align-items: center;
  gap: clamp(86px, 9vw, 180px);
  padding: 18px clamp(42px, 5vw, 82px);
  border: 0;
  border-bottom: 1px solid rgba(178, 115, 112, 0.16);
  border-radius: 0;
  background: rgba(251, 247, 247, 0.96);
  box-shadow: 0 10px 28px rgba(72, 34, 34, 0.06);
  backdrop-filter: blur(18px);
}

.legacy-header:has(.legacy-header-actions) {
  grid-template-columns: 154px minmax(0, 1fr) auto;
}

.legacy-logo img {
  width: 142px;
  height: auto;
}

.legacy-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px clamp(34px, 3vw, 56px);
  width: 100%;
  font-size: clamp(17px, 1vw, 18px);
  font-weight: 400;
  color: #171313;
  line-height: 1.35;
}

.legacy-nav-item {
  position: relative;
}

.legacy-nav-item.is-mega {
  position: static;
}

.legacy-nav-item.has-submenu::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.legacy-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-transform: uppercase;
}

.legacy-nav > .legacy-nav-link:last-child {
  margin-left: clamp(22px, 2.4vw, 46px);
  padding: 10px 22px;
  border: 1px solid #e2938f;
  border-radius: 5px;
  background: #e2938f;
  color: #fff;
  box-shadow: 0 10px 22px rgba(178, 115, 112, 0.18);
}

.legacy-nav > .legacy-nav-link:last-child:hover,
.legacy-nav > .legacy-nav-link:last-child:focus-visible {
  border-color: #d17f7b;
  background: #d17f7b;
  color: #fff;
}

.legacy-nav-item.has-submenu > .legacy-nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.legacy-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 306px;
  padding: 14px;
  border: 1px solid rgba(178, 115, 112, 0.22);
  border-radius: 6px;
  background: rgba(251, 247, 247, 0.98);
  box-shadow: 0 22px 44px rgba(72, 34, 34, 0.16);
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.legacy-submenu a {
  padding: 11px 12px;
  border-radius: 4px;
  color: #172033;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
}

.legacy-submenu a:hover,
.legacy-submenu a:focus {
  background: var(--legacy-soft);
  color: var(--legacy-blue);
}

.legacy-nav-item:hover .legacy-submenu,
.legacy-nav-item:focus-within .legacy-submenu,
.legacy-nav-item.is-open .legacy-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.legacy-mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
  padding: 30px 34px;
  border: 1px solid rgba(178, 115, 112, 0.18);
  border-radius: 0;
  background: rgba(251, 247, 247, 0.98);
  box-shadow: 0 24px 50px rgba(72, 34, 34, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.legacy-mega-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  padding: 8px 0;
}

.legacy-mega-column {
  min-width: 0;
}

.legacy-mega-heading {
  display: inline-flex;
  margin-bottom: 22px;
  color: #171313;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.legacy-mega-links {
  display: grid;
  gap: 15px;
}

.legacy-mega-links a {
  color: #312c2c;
  font-size: 16px;
  line-height: 1.45;
  text-transform: none;
}

.legacy-mega-heading:hover,
.legacy-mega-heading:focus,
.legacy-mega-links a:hover,
.legacy-mega-links a:focus {
  color: var(--legacy-blue);
}

.legacy-nav-item:hover .legacy-mega-menu,
.legacy-nav-item:focus-within .legacy-mega-menu,
.legacy-nav-item.is-open .legacy-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.legacy-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legacy-language-switch {
  background: rgba(251, 247, 247, 0.78);
}

.legacy-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 150px;
  font-size: 16px;
  line-height: 1.45;
  color: #0c0c0c;
  white-space: nowrap;
}

.legacy-phone::before {
  content: "☎";
  font-size: 14px;
}

.legacy-hero {
  height: 517px;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 190px 24px 54px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

.legacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.16);
}

.legacy-hero.is-dark::before {
  background: rgba(0, 0, 0, 0.32);
}

.legacy-hero.align-left {
  place-items: end start;
  padding-left: max(70px, calc((100vw - var(--legacy-max)) / 2));
}

.legacy-home-page .legacy-hero {
  background-position: center 56%;
}

.legacy-home-page .legacy-hero::before {
  background: linear-gradient(90deg, rgba(251, 247, 247, 0.76) 0%, rgba(251, 247, 247, 0.48) 45%, rgba(251, 247, 247, 0.12) 100%);
}

.legacy-home-hero {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 210px clamp(36px, 5vw, 82px) 86px;
  background-position: center 52%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

.legacy-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 15, 14, 0.42) 0%, rgba(18, 15, 14, 0.2) 48%, rgba(178, 115, 112, 0.18) 100%),
    rgba(0, 0, 0, 0.08);
}

.legacy-home-hero-grid {
  width: min(var(--legacy-max), 100%);
  margin: 0 auto;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
}

.legacy-home-hero-title::before {
  content: none;
}

.legacy-home-hero h1 {
  max-width: 1040px;
  color: #fff;
  font-size: 72px;
  font-weight: 100;
  line-height: 1.12;
}

.legacy-home-hero-copy {
  padding-bottom: 0;
}

.legacy-home-hero-copy p {
  max-width: 850px;
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
}

.legacy-home-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin-top: 44px;
  padding: 13px 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: #171313;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.legacy-home-hero-button:hover,
.legacy-home-hero-button:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.legacy-about-page .legacy-hero {
  background-position: center 58%;
}

.legacy-about-page .legacy-hero::before {
  background: rgba(24, 18, 17, 0.34);
}

.legacy-contact-page .legacy-hero {
  background-position: center 30%;
}

.legacy-contact-page .legacy-hero::before {
  background: rgba(24, 18, 17, 0.38);
}

.legacy-blog-page .legacy-hero {
  background-position: center 54%;
}

.legacy-blog-page .legacy-hero::before {
  background: rgba(24, 18, 17, 0.28);
}

.legacy-hero-content {
  width: min(1180px, 100%);
  text-align: center;
}

.legacy-hero.align-left .legacy-hero-content {
  width: min(520px, 100%);
  text-align: left;
}

.legacy-hero h1 {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: none;
}

.legacy-hero.is-dark h1,
.legacy-hero.is-dark p {
  color: #fff;
}

.legacy-hero p {
  max-width: 1080px;
  margin: 34px auto 0;
  font-family: var(--legacy-font);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
}

.legacy-hero.align-left p {
  margin-left: 0;
}

.legacy-hero.is-service-detail-hero .legacy-hero-content {
  position: static;
}

.legacy-hero.is-service-detail-hero .legacy-hero-kicker {
  position: absolute;
  top: 158px;
  left: max(42px, calc((100vw - var(--legacy-max)) / 2 + 36px));
  margin: 0;
  max-width: none;
  color: #fff;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 500;
  line-height: 1.25;
}

.legacy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 46px;
  padding: 10px 24px;
  border-radius: 4px;
  background: #e2938f;
  color: #fff;
  font-weight: 600;
}

.legacy-contact-actions {
  width: min(980px, 100%);
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.legacy-contact-actions.is-centered {
  margin-right: auto;
  margin-left: auto;
}

.legacy-contact-actions.is-compact,
.legacy-contact-actions.is-full {
  width: 100%;
  grid-template-columns: 1fr;
}

.legacy-contact-actions.is-detail {
  width: min(980px, 100%);
  margin-top: 82px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legacy-contact-action {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(178, 115, 112, 0.24);
  border-radius: 6px;
  background: #fbf7f7;
  color: #101010;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.legacy-contact-action:hover,
.legacy-contact-action:focus {
  border-color: var(--legacy-blue);
  background: var(--legacy-soft);
  transform: translateY(-1px);
}

.legacy-center .legacy-contact-action {
  text-align: center;
}

.legacy-contact-action span {
  color: var(--legacy-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legacy-contact-action strong {
  color: #101010;
  font-size: 16px;
  line-height: 1.35;
}

.legacy-contact-cta {
  background: var(--legacy-soft);
}

.legacy-site .legacy-contact-note {
  margin-top: 40px;
  color: var(--legacy-muted);
  font-size: 16px;
}

.legacy-qr-group {
  width: min(780px, 100%);
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legacy-qr-group.is-compact {
  width: 100%;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.legacy-qr-card {
  width: min(310px, 100%);
  padding: 16px;
  border: 1px solid rgba(178, 115, 112, 0.22);
  border-radius: 6px;
  background: #fbf7f7;
}

.legacy-qr-card.is-compact {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.legacy-qr-card h3 {
  margin: 0 0 8px;
  color: #101010;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.legacy-footer .legacy-qr-card h3 {
  color: #fff;
}

.legacy-qr-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: #fff;
  object-fit: contain;
}

.legacy-qr-card p {
  margin-top: 10px;
  color: var(--legacy-muted);
  font-size: 14px;
  line-height: 1.45;
}

.legacy-footer .legacy-qr-card p {
  color: rgba(255, 255, 255, 0.84);
}

.legacy-section {
  padding: 122px clamp(36px, 5vw, 82px);
}

.legacy-inner {
  width: min(var(--legacy-max), 100%);
  margin: 0 auto;
}

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

.legacy-site .legacy-eyebrow {
  display: none;
}

.legacy-section h2 {
  max-width: 1160px;
  font-size: clamp(30px, 2.55vw, 38px);
  font-weight: 500;
  line-height: 1.22;
}

.legacy-section h3 {
  font-size: clamp(21px, 1.75vw, 25px);
  font-weight: 500;
  line-height: 1.28;
}

.legacy-site .legacy-copy {
  width: min(1160px, 100%);
  margin: 56px 0 0;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
}

.legacy-center h2 {
  margin-right: auto;
  margin-left: auto;
}

.legacy-center .legacy-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.legacy-contact-cta .legacy-copy {
  width: min(980px, 100%);
  text-align: center;
}

.legacy-booking-notes {
  width: min(980px, 100%);
  margin: 58px auto 0;
  display: grid;
  gap: 34px;
  text-align: left;
}

.legacy-booking-note {
  padding: 0;
}

.legacy-booking-note h3 {
  margin: 0 0 12px;
  color: var(--legacy-ink);
  font-family: inherit;
  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 600;
}

.legacy-booking-note p {
  margin: 0;
  color: var(--legacy-muted);
  font-size: 16px;
  line-height: 1.72;
}

.legacy-copy a {
  color: currentColor;
  font-weight: 100;
  text-decoration: none;
}

.legacy-copy a:hover,
.legacy-copy a:focus-visible {
  font-weight: 400;
  opacity: 1;
}

.legacy-contact-cta h2,
.legacy-service-overview h2,
.legacy-service-intro h2 {
  max-width: 1240px;
}

.legacy-pale {
  background: var(--legacy-pale);
}

.legacy-blue {
  background: var(--legacy-blue);
}

.legacy-home-personalised,
.legacy-home-popular {
  background: #e2938f;
  color: #fff;
}

.legacy-home-personalised :is(h2, p, a),
.legacy-home-popular :is(h2, p, a) {
  color: #fff;
}

.legacy-home-popular .legacy-tile-label {
  background: rgba(112, 55, 52, 0.62);
  color: #fff;
}

.legacy-home-popular .legacy-explore-tile {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fbf7f7;
  color: #161111;
}

.legacy-home-popular .legacy-explore-tile:hover {
  background: #f3e8e7;
}

.legacy-home-popular .legacy-explore-tile :is(strong, span) {
  color: #161111;
}

.legacy-home-about {
  background: #fff;
}

.legacy-home-booking {
  background: #fff;
}

.legacy-home-location-section {
  background-color: #e2938f;
  background-image: url("../images/backgrounds/footer-pink-stripes.png");
  background-position: center;
  background-repeat: repeat;
  background-size: 950px 500px;
}

.legacy-home-partners {
  background: #fff;
}

.legacy-blue h2,
.legacy-blue h3,
.legacy-blue p,
.legacy-blue .legacy-eyebrow {
  color: #fff;
}

.legacy-brand-title {
  width: min(540px, 100%);
  margin: 0 auto;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;
  color: var(--legacy-blue);
}

.legacy-about-intro {
  background: linear-gradient(180deg, #dab6b2 0%, #e2c2be 100%);
}

.legacy-about-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.legacy-about-intro .legacy-brand-title {
  width: min(900px, 100%);
  margin: 0;
  color: #111;
  font-size: clamp(34px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.legacy-about-intro .legacy-copy {
  width: 100%;
  margin: 0;
  color: #293447;
  font-size: 17px;
  line-height: 1.82;
  text-align: left;
}

.legacy-about-intro .legacy-copy + .legacy-copy {
  margin-top: 36px;
}

.legacy-logo-grid {
  width: min(1140px, 100%);
  margin: 86px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.legacy-logo-grid figure {
  height: 120px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.legacy-logo-grid img {
  max-width: 120px;
  max-height: 90px;
  object-fit: contain;
}

.legacy-about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 96px;
}

.legacy-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.legacy-collage img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.legacy-collage img:nth-child(even) {
  margin-top: 34px;
}

.legacy-about-process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(72px, 7vw, 128px);
}

.legacy-team-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  align-self: stretch;
}

.legacy-team-photo-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}

.legacy-team-photo-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-process-flow {
  position: relative;
  margin-top: 72px;
  display: grid;
  gap: 0;
}

.legacy-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 56px;
}

.legacy-process-step:last-child {
  padding-bottom: 0;
}

.legacy-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 70px;
  bottom: 18px;
  left: 31px;
  width: 1px;
  background: rgba(178, 115, 112, 0.34);
}

.legacy-process-number {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 115, 112, 0.42);
  border-radius: 50%;
  background: var(--legacy-paper);
  color: var(--legacy-blue);
  font-family: var(--legacy-heading-font);
  font-size: 20px;
  font-weight: 100;
  line-height: 1;
}

.legacy-process-step:not(:last-child) .legacy-process-number::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(178, 115, 112, 0.62);
  border-bottom: 1px solid rgba(178, 115, 112, 0.62);
  transform: translateX(-50%) rotate(45deg);
}

.legacy-process-step h3 {
  margin: 7px 0 18px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.12;
}

.legacy-process-step p {
  max-width: 720px;
  color: var(--legacy-ink-muted);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.72;
}

.legacy-home-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.legacy-home-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(178, 115, 112, 0.18);
  border-radius: 6px;
  background: #fff7f5;
  box-shadow: 0 20px 44px rgba(72, 34, 34, 0.08);
}

.legacy-home-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-home-gallery-main {
  min-height: 640px;
}

.legacy-home-gallery-main img {
  object-position: center center;
}

.legacy-home-gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 100%;
}

.legacy-home-gallery-stack figure {
  min-height: 0;
}

.legacy-home-gallery-stack figure:first-child img {
  object-position: center center;
}

.legacy-home-gallery-stack figure:last-child img {
  object-position: center center;
}

.legacy-number-list {
  margin: 66px 0 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 48px;
}

.legacy-number-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(178, 115, 112, 0.28);
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.legacy-number-row:hover,
.legacy-number-row:focus-visible {
  color: var(--legacy-primary);
  border-color: rgba(178, 115, 112, 0.58);
  transform: translateX(4px);
}

.legacy-number {
  color: var(--legacy-primary);
  font-family: var(--legacy-heading-font);
  font-size: 42px;
  font-weight: 100;
  line-height: 1;
}

.legacy-number-row span:last-child {
  font-size: 20px;
  line-height: 1.25;
}

.legacy-tile-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 86px;
}

.legacy-card-grid-2 {
  display: contents;
}

.legacy-treatment-tile {
  position: relative;
  aspect-ratio: 1.9 / 1;
  min-height: 0;
  overflow: hidden;
}

.legacy-treatment-tile.is-large {
  min-height: 0;
}

.legacy-treatment-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.legacy-explore-tile {
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 5px;
  background: var(--legacy-pale);
  color: #161111;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.legacy-explore-tile:hover,
.legacy-explore-tile:focus-visible {
  background: #cda5a1;
  transform: translateY(-2px);
}

.legacy-explore-tile-copy {
  display: grid;
  gap: 14px;
}

.legacy-explore-tile-copy strong {
  font-family: var(--legacy-heading-font);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.legacy-explore-tile-copy span {
  font-size: 15px;
  line-height: 1.5;
}

.legacy-tile-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  max-width: calc(100% - 48px);
  min-height: 0;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  padding: 14px 24px;
  border-radius: 5px;
  background: rgba(251, 247, 247, 0.9);
  text-align: center;
  font-weight: 600;
}

.legacy-service-menu {
  width: min(var(--legacy-max), calc(100% - 48px));
  margin: -28px auto 72px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  padding: 32px 28px;
  background: var(--legacy-soft);
}

.legacy-service-menu a {
  min-height: 60px;
  padding: 12px 20px;
  border-left: 1px solid #dab6b2;
  color: #172033;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.legacy-service-menu.legacy-menu-after-hero {
  margin-top: 60px;
}

.legacy-service-menu a:first-child {
  border-left: 0;
}

.legacy-treatment-directory {
  background: #fbf7f7;
}

.legacy-treatment-directory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 44px;
  margin-top: 76px;
}

.legacy-treatment-directory-column {
  min-width: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(178, 115, 112, 0.28);
}

.legacy-treatment-directory-title {
  display: inline-flex;
  margin-bottom: 30px;
  color: #141010;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.legacy-treatment-directory-title:hover,
.legacy-treatment-directory-title:focus {
  color: var(--legacy-blue);
}

.legacy-treatment-directory-column ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-treatment-directory-column a:not(.legacy-treatment-directory-title) {
  color: #344052;
  font-size: 17px;
  line-height: 1.5;
}

.legacy-treatment-directory-column a:not(.legacy-treatment-directory-title):hover,
.legacy-treatment-directory-column a:not(.legacy-treatment-directory-title):focus {
  color: var(--legacy-blue);
}

.legacy-service-intro {
  padding-top: 96px;
  padding-bottom: 108px;
}

.legacy-service-intro .legacy-copy {
  margin-top: 34px;
}

.legacy-service-intro .legacy-contact-actions {
  margin-top: 44px;
}

.legacy-service-overview {
  padding-top: 132px;
  padding-bottom: 132px;
}

.legacy-treatment-card-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 36px;
}

.legacy-treatment-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(178, 115, 112, 0.18);
  border-radius: 6px;
  background: #fbf7f7;
}

.legacy-treatment-card img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.legacy-treatment-card-body {
  min-height: 260px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 30px;
}

.legacy-treatment-card strong {
  color: #101010;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.36;
}

.legacy-treatment-card span span {
  color: var(--legacy-muted);
  font-size: 15px;
  line-height: 1.68;
}

.legacy-treatment-card em {
  width: max-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--legacy-blue);
  color: var(--legacy-blue);
  font-style: normal;
  font-weight: 700;
}

.legacy-related-carousel .legacy-inner {
  overflow: hidden;
}

.legacy-carousel-heading {
  width: min(1180px, 100%);
  margin: 0 auto 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legacy-center .legacy-carousel-heading h2,
.legacy-carousel-heading h2 {
  margin: 0;
  text-align: left;
}

.legacy-carousel-controls {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

.legacy-carousel-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(178, 115, 112, 0.36);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.56);
  color: #101010;
  cursor: pointer;
  font: inherit;
  font-size: 30px;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.legacy-carousel-button:hover,
.legacy-carousel-button:focus-visible {
  border-color: rgba(178, 115, 112, 0.72);
  background: var(--legacy-accent);
  transform: translateY(-1px);
  outline: none;
}

.legacy-treatment-card-grid.is-carousel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 2px 22px;
  -webkit-overflow-scrolling: touch;
}

.legacy-treatment-card-grid.is-carousel::-webkit-scrollbar {
  height: 8px;
}

.legacy-treatment-card-grid.is-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.42);
}

.legacy-treatment-card-grid.is-carousel::-webkit-scrollbar-thumb {
  background: rgba(178, 115, 112, 0.5);
}

.legacy-treatment-card-grid.is-carousel .legacy-treatment-card {
  flex: 0 0 min(360px, calc(100vw - 72px));
  scroll-snap-align: start;
}

.legacy-treatment-list {
  display: grid;
  gap: 190px;
}

.legacy-treatment-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 88px;
}

.legacy-treatment-row:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.legacy-treatment-row:nth-child(even) .legacy-treatment-image {
  order: 2;
}

.legacy-treatment-image img {
  width: 100%;
  aspect-ratio: 517 / 382;
  object-fit: cover;
}

.legacy-treatment-image {
  position: relative;
}

.legacy-site .legacy-treatment-label {
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  width: max-content;
  max-width: calc(100% - 60px);
  min-height: 0;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  padding: 14px 24px;
  border-radius: 5px;
  background: rgba(251, 247, 247, 0.9);
  text-align: center;
  font-family: var(--legacy-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.34;
  color: #0b0b0b;
}

.legacy-treatment-text .legacy-treatment-lede {
  color: var(--legacy-blue);
  font-family: var(--legacy-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.legacy-treatment-rule {
  display: block;
  width: 175px;
  height: 3px;
  margin: 28px 0;
  background: var(--legacy-blue);
}

.legacy-treatment-text p + p {
  margin-top: 30px;
}

.legacy-service-detail .legacy-inner {
  width: min(1320px, 100%);
}

.legacy-treatment-detail {
  display: grid;
  gap: 78px;
}

.legacy-treatment-detail-media {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.legacy-treatment-detail-media img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 6px;
}

.legacy-treatment-detail-copy {
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.legacy-service-parent-link {
  margin: 34px auto 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.legacy-service-parent-link a {
  color: var(--legacy-primary);
  text-decoration: none;
}

.legacy-service-parent-link a::after {
  content: " \2192";
}

.legacy-service-parent-link a:hover,
.legacy-service-parent-link a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legacy-treatment-detail-copy h2 {
  max-width: 1040px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.18;
}

.legacy-treatment-detail-copy .legacy-treatment-lede {
  max-width: 920px;
  margin: 0 auto;
  color: var(--legacy-muted);
  text-align: center;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.84;
}

.legacy-treatment-detail-copy .legacy-treatment-rule {
  margin: 58px auto 0;
}

.legacy-service-option-grid {
  width: min(980px, 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.legacy-service-option-grid article {
  min-height: 100%;
  padding: 30px 28px;
  border: 1px solid rgba(178, 115, 112, 0.2);
  background: rgba(255, 255, 255, 0.42);
}

.legacy-service-option-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 0 26px;
}

.legacy-service-option-grid h3 {
  margin: 0 0 18px;
  color: #101010;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.18;
}

.legacy-service-option-grid p {
  margin: 0;
  color: var(--legacy-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
}

.legacy-treatment-detail-copy h3 {
  max-width: 980px;
  margin: 78px auto 28px;
  font-family: inherit;
  font-size: clamp(22px, 1.7vw, 26px);
  font-weight: 600;
  line-height: 1.32;
  text-align: center;
}

.legacy-treatment-detail-copy p {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.82;
}

.legacy-treatment-detail-copy p + p {
  margin-top: 30px;
}

.legacy-treatment-detail-copy .legacy-treatment-lede + .legacy-service-parent-link {
  margin-top: 38px;
}

.legacy-treatment-detail-copy .legacy-check-list {
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 34px auto 0;
  gap: 18px;
  justify-items: start;
  text-align: left;
}

.legacy-check-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}

.legacy-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--legacy-muted);
}

.legacy-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--legacy-blue);
}

.legacy-faq-list {
  margin-top: 58px;
  display: grid;
  gap: 18px;
}

.legacy-faq-list details {
  border: 1px solid rgba(178, 115, 112, 0.18);
  border-radius: 6px;
  background: #fbf7f7;
}

.legacy-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #101010;
  font-weight: 700;
}

.legacy-faq-list details p {
  padding: 0 18px 18px;
}

.legacy-treatment-faq h2 {
  width: min(980px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.legacy-treatment-faq .legacy-faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legacy-faq-check-list {
  list-style: none;
  margin: 0;
  padding: 0 28px 26px;
  color: var(--legacy-muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
}

.legacy-faq-check-list li {
  position: relative;
  padding-left: 28px;
}

.legacy-faq-check-list li + li {
  margin-top: 14px;
}

.legacy-faq-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--legacy-blue);
}

.legacy-contact-grid h2 {
  font-size: 30px;
}

.legacy-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: start;
}

.legacy-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 24px;
  margin-top: 72px;
}

.legacy-location-card h3 {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--legacy-blue);
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
}

.legacy-location-card p {
  margin-top: 20px;
}

.legacy-map-embed {
  display: block;
  width: 100%;
  height: 360px;
  margin-bottom: 36px;
  border: 1px solid rgba(178, 115, 112, 0.18);
  border-radius: 6px;
  background: var(--legacy-soft);
}

.legacy-contact-image {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.legacy-contact-methods {
  margin-top: 0;
}

.legacy-contact-methods .legacy-copy {
  margin-right: 0;
  margin-left: 0;
}

.legacy-form {
  margin-top: 54px;
  display: grid;
  gap: 22px;
}

.legacy-form input,
.legacy-form select,
.legacy-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d5dce5;
  border-radius: 3px;
  padding: 12px 14px;
  font: inherit;
}

.legacy-form textarea {
  min-height: 108px;
}

.legacy-blog-grid,
.legacy-locations-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-top: 82px;
}

.legacy-locations-home {
  width: min(960px, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

.legacy-post-card,
.legacy-home-location {
  background: #fbf7f7;
  border: 1px solid rgba(178, 115, 112, 0.18);
}

.legacy-post-card img {
  width: 100%;
  aspect-ratio: 342 / 231;
  object-fit: cover;
}

.legacy-post-card div,
.legacy-home-location {
  padding: 22px;
}

.legacy-home-location-map {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.legacy-home-location-map .legacy-map-embed {
  height: 430px;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}

.legacy-home-location-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 30px 34px 34px;
}

.legacy-post-card h3,
.legacy-home-location h3 {
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.legacy-footer {
  background: #e2938f;
  color: #fff;
}

.legacy-footer .legacy-inner {
  width: min(1280px, calc(100% - 72px));
}

.legacy-footer p,
.legacy-footer h2,
.legacy-footer h3,
.legacy-footer a {
  color: #fff;
}

.legacy-footer-main {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) repeat(4, minmax(135px, 1fr));
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.legacy-footer-logo {
  width: min(190px, 100%);
  margin-bottom: 22px;
  background: transparent;
  filter: brightness(0) invert(1);
}

.legacy-footer h2,
.legacy-footer h3,
.legacy-footer-heading {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.legacy-footer h3,
.legacy-footer-heading {
  margin-top: 0;
  margin-bottom: 1em;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legacy-footer-tagline {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.62;
}

.legacy-footer p,
.legacy-footer li,
.legacy-footer a {
  font-size: 14px;
  line-height: 1.68;
}

.legacy-footer ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.legacy-footer-services {
  margin-top: 30px;
  padding-top: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.legacy-footer-service-column ul {
  margin-top: 20px;
}

.legacy-footer-service-column a {
  color: rgba(255, 255, 255, 0.88);
}

.legacy-footer-service-column a:hover,
.legacy-footer-service-column a:focus {
  color: #fff;
}

.legacy-footer .legacy-footer-heading,
.legacy-footer .legacy-footer-heading a {
  font-family: var(--legacy-font);
  font-weight: 400;
}

.legacy-footer ul li,
.legacy-footer ul li a {
  font-family: var(--legacy-body-font);
  font-weight: 100;
}

.legacy-legal-links {
  width: min(1280px, calc(100% - 72px));
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  text-align: center;
}

.legacy-legal-page .legacy-hero {
  min-height: 360px;
}

.legacy-legal-content {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.legacy-legal-content h2 {
  margin: 48px 0 16px;
  font-size: clamp(25px, 3vw, 38px);
}

.legacy-legal-content p,
.legacy-legal-content li {
  color: #33343a;
  font-size: 17px;
  line-height: 1.75;
}

.legacy-legal-content ul {
  padding-left: 24px;
}

.legacy-social-links {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legacy-social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  overflow: hidden;
  padding: 0;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.legacy-social-link img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
  transition: transform 160ms ease;
}

.legacy-social-link.is-instagram img,
.legacy-social-link.is-threads img,
.legacy-social-link.is-xiaohongshu img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.legacy-social-link:hover,
.legacy-social-link:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.38);
  color: var(--legacy-blue);
  transform: translateY(-1px);
}

.legacy-social-link:hover img,
.legacy-social-link:focus img {
  transform: scale(1.03);
}

.legacy-site .legacy-copyright {
  margin-top: 46px;
  text-align: center;
}

@media (max-width: 980px) {
  .legacy-header {
    top: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 32px;
    min-height: 0;
    padding: 14px 24px;
    border-radius: 0;
    transform: none;
  }

  .legacy-header:has(.legacy-header-actions) {
    grid-template-columns: 112px minmax(0, 1fr) auto;
  }

  .legacy-logo img {
    width: 112px;
  }

  .legacy-nav {
    gap: 8px 14px;
    font-size: 14px;
    font-weight: 400;
    justify-content: flex-end;
  }

  .legacy-nav-link {
    min-height: 32px;
  }

  .legacy-submenu {
    left: 0;
    width: min(300px, calc(100vw - 48px));
    transform: translateY(-6px);
  }

  .legacy-mega-menu {
    grid-template-columns: 1fr;
    gap: 24px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding: 22px;
  }

  .legacy-mega-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .legacy-treatment-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 34px;
  }

  .legacy-nav-item:hover .legacy-submenu,
  .legacy-nav-item:focus-within .legacy-submenu,
  .legacy-nav-item.is-open .legacy-submenu {
    transform: translateY(0);
  }

  .legacy-hero h1 {
    font-size: 42px;
  }

  .legacy-home-hero {
    min-height: 690px;
    padding: 210px 34px 74px;
  }

  .legacy-home-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legacy-home-hero-title::before {
    content: none;
  }

  .legacy-home-hero h1 {
    max-width: 720px;
    font-size: 58px;
  }

  .legacy-home-hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .legacy-home-hero-copy p {
    font-size: 19px;
  }

  .legacy-home-hero-button {
    min-width: 0;
    margin-top: 40px;
  }

  .legacy-section h2 {
    max-width: 980px;
    font-size: 34px;
  }

  .legacy-section h3 {
    font-size: 22px;
  }

  .legacy-phone {
    justify-self: start;
  }

  .legacy-header-actions {
    justify-self: start;
  }

  .legacy-about-grid,
  .legacy-about-process-grid,
  .legacy-about-intro-grid,
  .legacy-tile-mosaic,
  .legacy-treatment-row,
  .legacy-treatment-row:nth-child(even),
  .legacy-treatment-detail,
  .legacy-contact-grid {
    grid-template-columns: 1fr;
  }

  .legacy-about-grid,
  .legacy-about-process-grid,
  .legacy-about-intro-grid,
  .legacy-treatment-detail,
  .legacy-contact-grid {
    gap: 68px;
  }

  .legacy-team-photo-grid {
    max-width: 720px;
    aspect-ratio: 2 / 3;
  }

  .legacy-process-flow {
    margin-top: 54px;
  }

  .legacy-home-gallery {
    grid-template-columns: 1fr;
  }

  .legacy-home-gallery-main {
    min-height: 380px;
  }

  .legacy-home-gallery-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .legacy-home-gallery-stack figure {
    min-height: 220px;
  }

  .legacy-treatment-row:nth-child(even) .legacy-treatment-image {
    order: 0;
  }

  .legacy-logo-grid,
  .legacy-treatment-card-grid,
  .legacy-blog-grid,
  .legacy-locations-home {
    grid-template-columns: repeat(2, 1fr);
  }

  .legacy-footer-main,
  .legacy-footer-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 220px;
  }

  .legacy-section {
    padding: 78px 20px;
  }

  .legacy-header {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
  }

  .legacy-header:has(.legacy-header-actions) {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .legacy-logo img {
    width: 96px;
  }

  .legacy-nav {
    gap: 8px 16px;
    font-size: 14px;
    justify-content: flex-end;
  }

  .legacy-nav > .legacy-nav-link:last-child {
    margin-left: 16px;
  }

  .legacy-mega-menu {
    padding: 18px;
  }

  .legacy-mega-columns,
  .legacy-treatment-directory-grid {
    grid-template-columns: 1fr;
  }

  .legacy-mega-heading,
  .legacy-treatment-directory-title {
    font-size: 16px;
  }

  .legacy-home-gallery-main {
    min-height: 340px;
  }

  .legacy-home-gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-home-gallery-stack figure {
    min-height: 190px;
  }

  .legacy-number-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legacy-number-row {
    padding: 24px 0;
  }

  .legacy-number {
    font-size: 36px;
  }

  .legacy-map-embed {
    height: 300px;
    margin-bottom: 30px;
  }

  .legacy-hero {
    height: auto;
    min-height: 520px;
    padding-top: 230px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .legacy-hero.align-left {
    padding-left: 20px;
  }

  .legacy-hero h1 {
    font-size: 32px;
    line-height: 1.16;
  }

  .legacy-home-hero {
    min-height: 620px;
    padding: 210px 22px 62px;
    background-position: center 48%;
  }

  .legacy-home-hero::before {
    background: linear-gradient(180deg, rgba(20, 15, 14, 0.34) 0%, rgba(20, 15, 14, 0.42) 100%);
  }

  .legacy-home-hero-grid {
    gap: 0;
    padding-left: 0;
  }

  .legacy-home-hero-title::before {
    content: none;
  }

  .legacy-home-hero h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .legacy-home-hero-copy p {
    font-size: 16px;
    line-height: 1.52;
  }

  .legacy-home-hero-button {
    min-width: 0;
    margin-top: 36px;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
  }

  .legacy-hero p {
    font-size: 16px;
    line-height: 1.62;
    margin-top: 34px;
    max-width: 100%;
  }

  .legacy-hero.is-service-detail-hero .legacy-hero-kicker {
    top: 202px;
    left: 20px;
    font-size: 13px;
  }

  .legacy-site .legacy-eyebrow {
    margin-bottom: 34px;
  }

  .legacy-section h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.24;
  }

  .legacy-section h3 {
    font-size: 20px;
  }

  .legacy-brand-title {
    font-size: 34px;
  }

  .legacy-logo-grid,
  .legacy-card-grid-2,
  .legacy-treatment-card-grid,
  .legacy-location-grid,
  .legacy-blog-grid,
  .legacy-locations-home,
  .legacy-contact-actions,
  .legacy-contact-actions.is-detail,
  .legacy-qr-group,
  .legacy-qr-group.is-compact,
  .legacy-service-option-grid {
    grid-template-columns: 1fr;
  }

  .legacy-site .legacy-copy {
    font-size: 15px;
    line-height: 1.72;
    margin-top: 42px;
    width: 100%;
  }

  .legacy-service-intro,
  .legacy-service-overview {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .legacy-treatment-card-grid,
  .legacy-logo-grid,
  .legacy-blog-grid,
  .legacy-locations-home,
  .legacy-location-grid {
    margin-top: 58px;
  }

  .legacy-home-location-map .legacy-map-embed {
    height: 320px;
  }

  .legacy-home-location-copy {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 24px 30px;
  }

  .legacy-about-intro {
    text-align: left;
  }

  .legacy-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legacy-about-intro .legacy-brand-title {
    font-size: 32px;
  }

  .legacy-team-photo-grid {
    aspect-ratio: 2 / 3;
    gap: 16px;
  }

  .legacy-process-flow {
    margin-top: 44px;
  }

  .legacy-process-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 42px;
  }

  .legacy-process-number {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .legacy-process-step:not(:last-child)::after {
    top: 58px;
    bottom: 13px;
    left: 25px;
  }

  .legacy-process-step:not(:last-child) .legacy-process-number::after {
    bottom: -28px;
  }

  .legacy-process-step h3 {
    margin-top: 5px;
    margin-bottom: 14px;
    font-size: 22px;
  }

  .legacy-process-step p {
    font-size: 15px;
    line-height: 1.68;
  }

  .legacy-booking-notes {
    margin-top: 44px;
    gap: 28px;
  }

  .legacy-footer-main,
  .legacy-footer-services {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legacy-footer {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .legacy-footer .legacy-inner {
    width: min(100%, 520px);
  }

  .legacy-footer-logo {
    width: 150px;
    margin-bottom: 16px;
  }

  .legacy-footer-tagline {
    font-size: 14px;
    line-height: 1.55;
  }

  .legacy-footer h3,
  .legacy-footer-heading {
    font-size: 13px;
  }

  .legacy-footer ul {
    margin-top: 12px;
    gap: 7px;
  }

  .legacy-footer p,
  .legacy-footer li,
  .legacy-footer a {
    font-size: 13px;
    line-height: 1.58;
  }

  .legacy-treatment-card-body {
    min-height: 0;
    padding: 24px;
  }

  .legacy-carousel-heading {
    margin-bottom: 34px;
    align-items: flex-start;
    flex-direction: column;
  }

  .legacy-carousel-button {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .legacy-treatment-card-grid.is-carousel {
    gap: 18px;
    padding-bottom: 16px;
  }

  .legacy-treatment-card-grid.is-carousel .legacy-treatment-card {
    flex-basis: min(310px, calc(100vw - 48px));
  }

  .legacy-collage img:nth-child(even) {
    margin-top: 0;
  }
}

.legacy-site h1,
.legacy-site h2,
.legacy-site h3,
.legacy-site h4 {
  font-family: var(--legacy-heading-font) !important;
  font-weight: 400 !important;
}

.legacy-site,
.legacy-site li,
.legacy-site address,
.legacy-site input,
.legacy-site textarea {
  font-family: var(--legacy-font);
  font-weight: 400;
}

.legacy-site p {
  font-family: var(--legacy-font);
  font-weight: 400;
}

.legacy-site .legacy-home-hero h1 {
  font-family: var(--legacy-body-font) !important;
  font-weight: 100 !important;
}

.legacy-site .legacy-footer,
.legacy-site .legacy-footer p,
.legacy-site .legacy-footer li,
.legacy-site .legacy-footer a,
.legacy-site .legacy-footer address {
  font-family: var(--legacy-font);
  font-weight: 400;
}

/* Desktop sections grow beyond the viewport whenever their content needs it. */
@media (min-width: 1024px) {
  .legacy-home-document .legacy-home-page > .legacy-section {
    box-sizing: border-box;
    min-height: calc(100svh - var(--home-header-height, 104px));
    display: flex;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
    scroll-margin-top: var(--home-header-height, 104px);
  }

  .legacy-home-document .legacy-home-hero {
    box-sizing: border-box;
    min-height: calc(100svh - 4px);
    align-items: center;
    padding-top: calc(var(--home-header-height, 104px) + 56px);
    padding-bottom: 56px;
  }
}

/* Homepage-only sunlit gold palette. */
.legacy-site.legacy-home-document {
  background: #fffaf2;
  color: #4a2c19;
}

.legacy-home-document .legacy-header {
  border-bottom-color: rgba(199, 122, 39, 0.18);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 10px 28px rgba(112, 67, 38, 0.1);
}

.legacy-home-document .legacy-nav,
.legacy-home-document .legacy-nav a {
  color: #4a2c19;
}

.legacy-home-document .legacy-nav > .legacy-nav-link:last-child {
  border-color: #e7a13f;
  background: linear-gradient(135deg, #f4c568 0%, #e7a13f 52%, #c77a27 100%);
  color: #4a2c19;
  box-shadow: 0 10px 22px rgba(199, 122, 39, 0.28);
}

.legacy-home-document .legacy-nav > .legacy-nav-link:last-child:hover,
.legacy-home-document .legacy-nav > .legacy-nav-link:last-child:focus-visible {
  border-color: #c77a27;
  background: linear-gradient(135deg, #e7a13f 0%, #c77a27 100%);
  color: #fffaf2;
}

.legacy-home-document .legacy-home-personalised {
  background: #121110 url("../images/backgrounds/personalised-black-gold.png") center / cover no-repeat;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
}

.legacy-home-personalised-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(54px, 6vw, 92px);
}

.legacy-home-personalised-image {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}

.legacy-home-personalised-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.legacy-home-personalised-copy h2 {
  max-width: 680px;
}

.legacy-home-personalised-copy .legacy-copy {
  width: min(680px, 100%);
  margin-top: 32px;
}

.legacy-home-document .legacy-home-popular {
  background: #121110 url("../images/backgrounds/popular-black-gold.png") center / cover no-repeat;
  box-shadow: inset 0 1px rgba(255, 244, 214, 0.68);
}

.legacy-home-document .legacy-home-personalised :is(h2, p, a) {
  color: #ffffff;
}

.legacy-home-document .legacy-home-popular h2 {
  color: #ffffff;
}

.legacy-home-document .legacy-home-popular :is(p, p a) {
  color: #ffffff;
}

.legacy-home-document :is(.legacy-home-about, .legacy-home-partners, .legacy-home-booking) {
  background: #fffaf2;
}

.legacy-home-document :is(.legacy-home-about, .legacy-home-partners, .legacy-home-booking, .legacy-home-location-section) h2 {
  color: #4a2c19;
}

.legacy-home-document :is(.legacy-home-about, .legacy-home-partners, .legacy-home-booking, .legacy-home-location-section) p {
  color: #704326;
}

.legacy-home-document .legacy-home-popular .legacy-tile-label {
  background: rgba(255, 250, 242, 0.93);
  color: #4a2c19;
}

.legacy-home-document .legacy-home-popular .legacy-explore-tile {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 250, 242, 0.95);
  color: #4a2c19;
}

.legacy-home-document .legacy-home-popular .legacy-explore-tile :is(strong, span) {
  color: #4a2c19;
}

.legacy-home-document .legacy-home-popular .legacy-explore-tile:hover {
  background: #ffe8b0;
}

.legacy-home-document .legacy-home-location-section {
  background: #121110 url("../images/backgrounds/location-black-gold.png") center / cover no-repeat;
}

.legacy-home-document .legacy-home-location-section :is(h2, h3, p, p strong) {
  color: #ffffff;
}

.legacy-visit-section > h2 {
  text-align: center;
  margin: 0 auto 20px;
}

.legacy-site .legacy-visit-section > .legacy-visit-subheading {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
  color: #704326;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
}

.legacy-home-document .legacy-home-location-section .legacy-visit-section > :is(h2, .legacy-visit-subheading) {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(0, 0, 0, 0.8);
}

.legacy-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

.legacy-visit-map {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.legacy-visit-map .legacy-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.legacy-visit-details {
  align-self: stretch;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}

.legacy-visit-info {
  display: grid;
  gap: 24px;
}

.legacy-visit-details .legacy-visit-info p,
.legacy-visit-details .legacy-visit-intro {
  margin: 0;
}

.legacy-visit-details h3 {
  color: #4a2c19;
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.legacy-visit-info p,
.legacy-visit-intro {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.legacy-visit-info strong {
  font-weight: 400;
  color: #4a2c19;
}

.legacy-visit-details .legacy-visit-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  width: 100%;
  justify-items: center;
}

.legacy-visit-actions .legacy-contact-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 12px 16px;
  min-height: 52px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.legacy-visit-actions .legacy-contact-action strong {
  font-size: 18px;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .legacy-visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .legacy-visit-map { min-height: 0; aspect-ratio: 4 / 3; }
  .legacy-visit-section > h2 { margin-bottom: 18px; }
  .legacy-site .legacy-visit-section > .legacy-visit-subheading { font-size: 18px; margin-bottom: 32px; }
}

.legacy-home-document :is(.legacy-home-location, .legacy-contact-action) {
  border-color: rgba(199, 122, 39, 0.22);
  background: #fffaf2;
  color: #4a2c19;
}

.legacy-home-document .legacy-contact-action span {
  color: #c77a27;
}

.legacy-home-document .legacy-footer {
  background: #fffaf2;
  color: #4a2c19;
}

.legacy-home-document .legacy-footer :is(p, h2, h3, a, li) {
  color: #4a2c19;
}

.legacy-home-document .legacy-footer-logo {
  filter: brightness(0);
}

.legacy-home-document .legacy-social-link,
.legacy-home-document .legacy-legal-links {
  border-color: rgba(74, 44, 25, 0.25);
}

@media (max-width: 860px) {
  .legacy-home-personalised-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legacy-home-personalised-image img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .legacy-home-personalised-grid {
    gap: 34px;
  }

  .legacy-home-personalised-image img {
    aspect-ratio: 4 / 3;
  }

  .legacy-home-personalised-copy .legacy-copy {
    margin-top: 24px;
  }
}
