:root {
  --ink: #1d1a17;
  --muted: #706b64;
  --line: #e7dfd4;
  --soft: #f8f4ee;
  --paper: #fffaf3;
  --gold: #b49358;
  --gold-dark: #806738;
  --white: #ffffff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Light", "Avenir Next", "Helvetica Neue", Arial, "Noto Sans TC", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  min-height: 160px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.logo-link {
  position: absolute;
  top: 18px;
  left: clamp(28px, 4vw, 51px);
}

.logo-link img {
  width: 251px;
  height: auto;
}

.main-nav {
  position: absolute;
  left: clamp(28px, 4vw, 41px);
  right: clamp(24px, 4vw, 58px);
  top: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav a,
.nav-dropdown > a,
.language-switcher a {
  color: #39342f;
  padding: 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-dropdown:hover > a,
.nav-dropdown.is-active > a,
.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 238px;
  max-height: 70vh;
  overflow: auto;
  transform: translateX(-50%);
  display: none;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(29, 26, 23, 0.12);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  display: grid;
  gap: 2px;
}

.dropdown-panel a {
  display: block;
  padding: 9px 10px;
  border: 0;
  color: var(--ink);
  font-size: 11.5px;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-panel a:hover {
  color: var(--gold-dark);
  background: var(--soft);
}

.language-switcher {
  position: absolute;
  top: 34px;
  right: clamp(20px, 4vw, 52px);
  display: flex;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 250, 243, 0.76) 42%, rgba(255, 250, 243, 0.18) 100%),
    var(--hero-image) center / cover;
}

.hero-copy {
  width: min(620px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 118px);
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 400;
  margin-bottom: 22px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 18px;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 400;
}

.text-nowrap {
  white-space: nowrap;
}

.hero p,
.page-hero p,
.section-heading p,
.split-section p {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.page-hero p {
  margin-right: auto;
  margin-left: auto;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.booking-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.button.dark,
.booking-form button {
  color: var(--white);
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-block;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  margin-top: 12px;
}

.split-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 92px auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
}

.split-section.top-space {
  align-items: start;
}

.image-frame {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 14px;
}

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

.image-frame.wide img {
  aspect-ratio: 16 / 7;
  object-fit: contain;
  background: var(--white);
}

.treatments-preview {
  padding: 82px clamp(20px, 4vw, 52px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.treatment-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.page-grid {
  width: min(var(--max), calc(100% - 40px));
  margin-bottom: 54px;
}

.service-group {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 34px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.service-group-heading {
  position: sticky;
  top: 116px;
  align-self: start;
}

.service-group-heading p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-row a {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.service-row span {
  color: var(--muted);
  font-size: 15px;
}

.service-row em {
  color: var(--gold-dark);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

.treatment-detail-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 74px auto 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.original-treatment-hero {
  width: 100%;
  height: var(--treatment-hero-height, clamp(260px, 22vw, 350px));
  overflow: hidden;
  background: var(--soft);
  position: relative;
}

.original-treatment-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.original-treatment-hero.wide-banner-hero {
  height: var(--wide-hero-height, clamp(220px, 18vw, 300px));
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  margin-bottom: 0;
  background: #fff;
  overflow: hidden;
}

.original-treatment-hero.wide-banner-hero > img:not(.hair-removal-award-logo) {
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus-x, center) var(--hero-focus-y, center);
}

.original-hero-title-copy {
  position: absolute;
  left: var(--hero-title-left, 50%);
  top: var(--hero-title-top, 151px);
  bottom: auto;
  width: min(var(--hero-title-width, 526px), calc(100% - 40px));
  transform: translateX(-50%);
  text-align: center;
  color: var(--hero-title-color, #000);
  z-index: 1;
}

.original-hero-title-copy h1 {
  font-family: var(--hero-title-family, "Open Sans", Arial, "Noto Sans TC", sans-serif);
  font-size: var(--hero-title-size, 38px);
  line-height: var(--hero-title-line, 1.24);
  font-weight: var(--hero-title-weight, 400);
  margin: 0 0 8px;
}

.original-hero-title-copy p {
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
}

.original-treatment-title {
  width: min(980px, calc(100% - 40px));
  margin: 12px auto 28px;
  text-align: center;
}

.original-treatment-title.compact h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.original-treatment-title.compact .eyebrow {
  display: none;
}

.brand-strip {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 10vw, 170px);
  margin: 0 auto 18px;
}

.brand-strip img {
  width: auto;
  max-width: 230px;
  max-height: 82px;
  object-fit: contain;
}

.original-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  min-height: 35px;
  padding: 8px 20px;
  color: #000;
  border: 1px solid #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

.original-treatment-title p {
  color: var(--muted);
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.original-treatment-title .hero-actions {
  justify-content: center;
}

.treatment-detail-hero p {
  color: var(--muted);
  font-size: 19px;
}

.treatment-media {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

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

.detail-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.detail-content.original-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.detail-content.original-copy-only {
  width: min(912px, calc(100% - 40px));
  display: block;
  margin-bottom: 42px;
}

.detail-content article,
.detail-content aside,
.related-services {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
}

.detail-content p {
  color: var(--muted);
}

.detail-content aside ul {
  padding-left: 18px;
  color: var(--muted);
}

.detail-content aside li {
  margin-bottom: 12px;
}

.media-section {
  padding: 74px clamp(20px, 4vw, 52px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.original-media-section {
  background: var(--white);
}

.media-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.media-grid.rich {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-grid.original-media-grid {
  align-items: center;
}

.media-grid img,
.media-grid video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.original-media-grid video {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(29, 26, 23, 0.58), rgba(29, 26, 23, 0.58)),
    var(--hero-image, none),
    var(--ink);
  color: var(--white);
}

.media-grid.original-media-grid img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  aspect-ratio: auto;
  justify-self: center;
  object-fit: contain;
  background: var(--white);
  padding: 0;
}

.original-copy p {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.hero-actions.centered {
  justify-content: center;
  margin-top: 34px;
}

.feature-media {
  width: min(902px, calc(100% - 40px));
  margin: 0 auto 34px;
}

.feature-media img,
.feature-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.feature-media video {
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.instrument-section {
  width: min(980px, calc(100% - 40px));
  margin: 80px auto;
  display: grid;
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.intro-pair {
  grid-template-columns: 417px minmax(0, 1fr);
  align-items: start;
}

.intro-pair.text-only {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.device-pair {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  margin-top: 54px;
}

.device-pair.text-only {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.device-pair.text-only .instrument-copy.narrow {
  max-width: none;
}

.picosure-visual-pair {
  margin-top: 58px;
  margin-bottom: 58px;
}

.picosure-visual-pair .instrument-copy {
  align-self: center;
}

.picosure-video-frame {
  width: 100%;
  max-width: 417px;
}

.picosure-case-pair {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  margin-top: 46px;
  margin-bottom: 34px;
}

.picosure-case-pair img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.picosure-case-row {
  margin-top: 26px;
  margin-bottom: 58px;
}

.picosure-case-row img {
  width: auto;
  max-width: 100%;
  max-height: 380px;
  justify-self: center;
  object-fit: contain;
}

.instrument-logo-strip {
  width: min(980px, calc(100% - 40px));
  min-height: 86px;
  margin: 28px auto 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 92px);
}

.instrument-logo-strip img {
  width: auto;
  max-width: min(260px, 42vw);
  max-height: 78px;
  object-fit: contain;
}

.instrument-video {
  display: grid;
  min-height: 220px;
  place-items: center;
}

.instrument-video video {
  width: 417px;
  max-width: 100%;
  aspect-ratio: 834 / 474;
  object-fit: cover;
  background: #000;
}

.instrument-video img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.instrument-copy {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.instrument-copy h2,
.instrument-copy h3 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 18px;
}

.instrument-copy h3 {
  font-size: 18px;
  margin-top: 26px;
}

.instrument-copy p {
  margin: 0 0 16px;
}

.instrument-copy.narrow {
  max-width: 500px;
}

.device-image {
  width: auto;
  max-width: 260px;
  max-height: 430px;
  justify-self: center;
}

.original-secondary-cta.inline {
  min-width: 0;
  width: fit-content;
  margin-top: 22px;
}

.case-image-row {
  width: min(980px, calc(100% - 40px));
  margin: 44px auto 84px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10px;
  align-items: center;
}

.case-image-row.flexible {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.case-image-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.icon-media-row {
  width: min(860px, calc(100% - 40px));
  margin: 18px auto 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
}

.icon-media-row img {
  width: auto;
  max-width: 150px;
  max-height: 96px;
  object-fit: contain;
}

.ultherapy-intro {
  width: min(940px, calc(100% - 40px));
  margin: 66px auto 38px;
  display: grid;
  grid-template-columns: minmax(0, 453px) minmax(300px, 433px);
  gap: clamp(46px, 6vw, 72px);
  align-items: start;
}

.ultherapy-intro-copy {
  padding-top: 2px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.ultherapy-logo {
  width: 356px;
  max-width: 100%;
  height: auto;
  margin: 0 0 32px;
}

.ultherapy-intro-copy p,
.ultherapy-text-block p {
  margin: 0 0 18px;
}

.ultherapy-portrait {
  width: 433px;
  max-width: 100%;
  height: auto;
  margin-top: 54px;
  justify-self: end;
}

.ultherapy-wide-media {
  width: min(981px, calc(100% - 40px));
  margin: 38px auto 70px;
}

.ultherapy-wide-media.lower {
  margin-top: 40px;
}

.ultherapy-wide-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ultherapy-how-heading {
  width: min(560px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
}

.ultherapy-how-heading h2,
.ultherapy-lift h2 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 8px;
}

.ultherapy-how-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.ultherapy-video-copy {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 582px) 350px;
  gap: 28px;
  align-items: start;
}

.ultherapy-video-box {
  width: 100%;
  aspect-ratio: 582 / 343;
  background: #070707;
  object-fit: cover;
}

.video-cover {
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 32%),
    #050505;
}

.video-cover span {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
}

.video-cover span::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 21px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid rgba(255, 255, 255, 0.92);
}

.ultherapy-text-block {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.ultherapy-lift {
  width: min(980px, calc(100% - 40px));
  margin: 42px auto 54px;
  display: grid;
  grid-template-columns: 384px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.ultherapy-awards {
  display: flex;
  justify-content: center;
  gap: 54px;
}

.ultherapy-awards img {
  width: 246px;
  max-width: 246px;
  height: auto;
  object-fit: contain;
}

.morpheus-hero {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.morpheus8-hero > h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}

.morpheus-banner {
  width: min(920px, calc(100% - 40px));
  margin: 10px auto 48px;
}

.morpheus-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.morpheus-copy-block {
  width: min(942px, calc(100% - 40px));
  margin: 0 auto 54px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.morpheus-intro-copy {
  margin-top: 44px;
  margin-bottom: 34px;
}

.morpheus-how-copy {
  margin-bottom: 38px;
}

.morpheus-copy-block h2 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 8px;
}

.morpheus-copy-block h3 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 20px;
}

.morpheus-copy-block p {
  margin: 0 0 18px;
}

.morpheus-feature-grid {
  width: min(900px, 100%);
  margin: 38px auto 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.morpheus-feature-grid strong {
  display: block;
  min-height: 72px;
  padding: 18px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #626262;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.morpheus-benefits {
  width: min(720px, 100%);
  margin: 0 auto;
}

.morpheus-video-section {
  width: min(818px, calc(100% - 40px));
  margin: 30px auto 72px;
}

.morpheus-video-box {
  width: 100%;
  aspect-ratio: 818 / 461;
  display: block;
  border: 0;
  background: #050505;
}

.youtube-preview-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.youtube-preview-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.82;
}

.youtube-preview-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  min-width: 142px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.youtube-preview-card span::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 10px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.morpheus8-hero img {
  width: 2004px;
  max-width: none;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.morpheus8-hero h1 {
  left: var(--hero-title-left, 25.2%);
  top: var(--hero-title-top, 12px);
  width: min(var(--hero-title-width, 526px), calc(100% - 40px));
  transform: translateX(-50%);
  color: var(--hero-title-color, #000);
  font-family: var(--hero-title-family, "Open Sans", Arial, "Noto Sans TC", sans-serif);
  font-size: var(--hero-title-size, 38px);
  line-height: var(--hero-title-line, 1.24);
  text-align: center;
}

.morpheus8-hero h1 span {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.morpheus8-intro {
  margin-top: 42px;
  margin-bottom: 30px;
}

.morpheus8-how h2 {
  font-size: clamp(27px, 3vw, 34px);
  margin-bottom: 18px;
}

.morpheus8-intro p,
.morpheus8-how > p {
  width: min(910px, 100%);
}

.morpheus-section-kicker {
  color: #626262;
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.morpheus8-banner {
  width: min(940px, calc(100% - 40px));
  margin-top: 28px;
  margin-bottom: 42px;
}

.morpheus8-how {
  margin-top: 0;
}

.morpheus8-info-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 233px 499px;
  gap: 122px;
  align-items: start;
}

.morpheus8-callouts {
  display: grid;
  gap: 86px;
}

.morpheus8-callouts strong {
  color: #626262;
  font-weight: 400;
  line-height: 1.35;
}

.morpheus8-feature-grid {
  margin-top: 34px;
}

.morpheus8-detail-list {
  width: min(760px, 100%);
  margin: 30px auto 0;
  display: grid;
  gap: 12px;
}

.morpheus8-detail-list p {
  margin: 0;
}

.morpheus8-benefits p {
  margin-bottom: 18px;
}

.morpheus8-video-section {
  width: min(856px, calc(100% - 40px));
  margin-top: 54px;
}

.morpheus8-video-box {
  aspect-ratio: 856 / 482;
}

.original-flow-logos {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 74px);
}

.original-flow-logos img {
  width: auto;
  max-width: min(var(--media-width), 92vw);
  max-height: 190px;
  object-fit: contain;
}

.original-flow-copy {
  width: min(942px, calc(100% - 40px));
  margin: 44px auto 42px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.original-flow-copy.lower {
  margin-top: 28px;
}

.original-flow-copy h2,
.original-flow-copy h3 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 16px;
}

.original-flow-copy p {
  margin: 0 0 18px;
}

.original-flow-media {
  width: min(980px, calc(100% - 40px));
  margin: 34px auto 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.original-flow-media img {
  width: auto;
  max-width: min(var(--media-width), 100%);
  height: auto;
  object-fit: contain;
}

.original-flow-video {
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.original-flow-copy.compact {
  width: auto;
  margin: 0;
}

.original-flow-pair {
  width: min(980px, calc(100% - 40px));
  margin: 46px auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.original-flow-pair.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
}

.original-flow-pair.reverse .original-flow-pair-media {
  order: 2;
}

.original-flow-pair-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.original-flow-pair-media img {
  width: auto;
  max-width: min(var(--media-width), 100%);
  max-height: 620px;
  height: auto;
  object-fit: contain;
}

.original-flow-actions {
  width: min(980px, calc(100% - 40px));
  margin: 8px auto 46px;
  display: flex;
  justify-content: center;
}

.original-flow-media.tuned {
  align-items: flex-start;
}

.botox-hero {
  width: 100%;
  height: var(--treatment-hero-height, clamp(260px, 22vw, 350px));
  margin: 0 auto;
}

.botox-intro {
  width: min(894px, calc(100% - 40px));
  margin: 54px auto 70px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.botox-intro h2 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
  margin-bottom: 58px;
}

.botox-pair {
  width: min(980px, calc(100% - 40px));
  margin: 58px auto;
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.botox-pair.reverse {
  grid-template-columns: minmax(0, 1fr) 276px;
}

.botox-pair.reverse img {
  order: 2;
}

.botox-pair img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
}

.botox-pair .original-flow-copy h2 {
  font-size: 25px;
  text-align: center;
}

.iv-drip-hero {
  height: clamp(170px, 17vw, 250px);
  margin-top: 0;
}

.iv-drip-hero img {
  object-fit: cover;
  object-position: center;
}

.iv-drip-intro,
.iv-drip-faq {
  width: min(940px, calc(100% - 40px));
  margin: 54px auto;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.iv-drip-intro h1 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.18;
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px;
}

.iv-drip-facts {
  width: min(620px, 100%);
  margin: 0 auto 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #333;
  font-size: 18px;
  line-height: 1.45;
}

.iv-drip-facts li {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 16px;
}

.iv-drip-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.iv-drip-card-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.iv-drip-card-grid h2,
.iv-drip-wellness h2,
.iv-drip-faq h2,
.iv-drip-faq h3 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 1.24;
}

.iv-drip-card-grid h2 {
  font-size: 25px;
  margin-bottom: 12px;
}

.iv-drip-card-grid p,
.iv-drip-wellness p,
.iv-drip-faq p {
  font-size: 17px;
  line-height: 1.62;
  margin: 0 0 16px;
}

.iv-drip-video {
  width: min(760px, calc(100% - 40px));
  margin: 44px auto 56px;
}

.iv-drip-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.iv-drip-wellness {
  width: min(980px, calc(100% - 40px));
  margin: 62px auto 44px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.iv-drip-wellness img {
  width: 100%;
  height: auto;
  display: block;
}

.iv-drip-wellness h2,
.iv-drip-faq h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 18px;
}

.iv-drip-faq {
  margin-top: 34px;
}

.iv-drip-faq article {
  border-top: 1px solid var(--line);
  padding: 24px 0 6px;
}

.iv-drip-faq h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.laser-wide-hero {
  height: 350px;
  margin-top: 0;
}

.why-laser-hero {
  width: 100%;
  height: var(--treatment-hero-height, clamp(260px, 22vw, 350px));
  margin: 0 auto 42px;
}

.treatment-hero-botox { --hero-title-left: 51.5%; --hero-title-top: 142px; }
.treatment-hero-sculptra { --hero-title-left: 33%; --hero-title-top: 151px; }
.treatment-hero-fat-dissolving { --hero-title-left: 48.3%; --hero-title-top: 151px; --hero-focus-x: 50%; }
.treatment-hero-iv-drip { --hero-title-left: 50%; --hero-title-top: 151px; }
.treatment-hero-radiesse { --hero-title-left: 50%; --hero-title-top: 151px; }
.treatment-hero-picoway { --hero-title-left: 61.9%; --hero-title-top: 196px; --hero-title-color: #f6f6f6; --hero-title-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif; --hero-title-weight: 700; --hero-focus-x: 58%; --wide-hero-height: clamp(220px, 18vw, 300px); }
.treatment-hero-fotona-dynamis { --hero-title-left: 32.3%; --hero-title-top: 244px; }
.treatment-hero-morpheus-8 { --hero-title-left: 58.8%; --hero-title-top: 109px; --hero-title-size: 32px; --hero-title-line: 1.25; }
.treatment-hero-fotona-vaginal-tightening { --hero-title-left: 50%; --hero-title-top: 151px; }
.treatment-hero-m22-ipl-therapy { --hero-title-left: 30.7%; --hero-title-top: 151px; }
.treatment-hero-stellar-m22 { --hero-title-left: 64.8%; --hero-title-top: 184px; }
.treatment-hero-hotodynamic-pdt-light-therapy { --hero-title-left: 32.3%; --hero-title-top: 151px; }
.treatment-hero-secret-rf-microneedle { --hero-title-left: 29.1%; --hero-title-top: 119px; }
.treatment-hero-fotona-nd-yag-laser-hair-removal {
  --hero-title-left: 64.3%;
  --hero-title-top: 151px;
  --hero-title-color: #111;
  --hero-title-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  --hero-title-weight: 700;
}
.treatment-hero-morpheus8 { --hero-title-left: 25.2%; --hero-title-top: 12px; }
.treatment-hero-inmode-forma { --hero-title-left: 60.2%; --hero-title-top: 104px; --hero-title-color: #f6f6f6; --hero-title-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif; --hero-title-weight: 700; }
.treatment-hero-fotona-4d { --hero-title-left: 53%; --hero-title-top: 223px; }
.treatment-hero-btl-exilis-1 { --hero-title-left: 32.2%; --hero-title-top: 151px; --hero-title-color: #292929; --hero-title-weight: 700; }
.treatment-hero-smootheye {
  --hero-title-left: 29.1%;
  --hero-title-top: 151px;
  --hero-title-width: 420px;
}
.treatment-hero-teoxane-mesotherapy { --hero-title-left: 31.1%; --hero-title-top: 13px; --hero-title-color: #fff; --hero-title-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif; --hero-title-weight: 700; }
.treatment-hero-prp { --hero-title-left: 67.7%; --hero-title-top: 151px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-aquagold { --hero-title-left: 35.2%; --hero-title-top: 22px; --hero-title-color: #626262; --hero-title-weight: 700; }
.treatment-hero-zo-health-medical-facial { --hero-title-left: 38.1%; --hero-title-top: 11px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-skin-care-facial { --hero-title-left: 69.4%; --hero-title-top: 55px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-extraction { --hero-title-left: 37.9%; --hero-title-top: 191px; --hero-title-width: 660px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-prx-t33-peel { --hero-title-left: 41.3%; --hero-title-top: 101px; --hero-title-width: 686px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-zo-step-3-peel { --hero-title-left: 21.8%; --hero-title-top: 151px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-medical-skin-product { --hero-title-left: 34%; --hero-title-top: 18px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-profhilo { --hero-title-left: 65%; --hero-title-top: 128px; --hero-title-width: 597px; --hero-title-color: #281a39; --hero-title-weight: 700; }
.treatment-hero-inmode-bodyfx { --hero-title-left: 67.7%; --hero-title-top: 245px; }
.treatment-hero-fotona-sculpting { --hero-title-left: 65.9%; --hero-title-top: 128px; --hero-title-width: 572px; }
.treatment-hero-btl-exilis { --hero-title-left: 66.8%; --hero-title-top: 151px; }
.treatment-hero-ultrashape-power { --hero-title-left: 32.3%; --hero-title-top: 151px; }

.treatment-hero-picosure,
.instrument-hero.wide-banner-hero {
  --hero-focus-x: 50%;
  --wide-hero-height: clamp(220px, 18vw, 300px);
}

.treatment-hero-botox,
.treatment-hero-sculptra,
.treatment-hero-fat-dissolving,
.treatment-hero-iv-drip,
.treatment-hero-radiesse,
.treatment-hero-picoway,
.treatment-hero-fotona-dynamis,
.treatment-hero-morpheus-8,
.treatment-hero-fotona-vaginal-tightening,
.treatment-hero-m22-ipl-therapy,
.treatment-hero-stellar-m22,
.treatment-hero-hotodynamic-pdt-light-therapy,
.treatment-hero-secret-rf-microneedle,
.treatment-hero-morpheus8,
.treatment-hero-inmode-forma,
.treatment-hero-fotona-4d,
.treatment-hero-btl-exilis-1,
.treatment-hero-smootheye,
.treatment-hero-inmode-bodyfx,
.treatment-hero-fotona-sculpting,
.treatment-hero-btl-exilis,
.treatment-hero-ultrashape-power {
  --hero-title-color: #281a39;
  --hero-title-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  --hero-title-weight: 700;
}

.treatment-hero-btl-exilis {
  --hero-title-color: #f6f6f6;
}

.treatment-hero-picoway,
.treatment-hero-inmode-forma,
.treatment-hero-morpheus8 {
  --hero-title-color: #f6f6f6;
}

.treatment-hero-btl-exilis-1 {
  --hero-title-color: #292929;
}

.treatment-hero-fotona-4d,
.treatment-hero-silhouette {
  height: 350px;
}

.treatment-hero-fotona-4d img,
.treatment-hero-silhouette img {
  object-fit: cover;
  object-position: center center;
}

.treatment-hero-fotona-4d .original-hero-title-copy {
  top: 223px;
  width: min(526px, calc(100% - 40px));
  color: #281a39;
}

.treatment-hero-hydrafacial {
  --hero-title-left: 23.9%;
  --hero-title-top: 255px;
  --hero-title-width: 420px;
  --hero-title-color: #000;
  --hero-title-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  --hero-title-size: 18px;
  --hero-title-line: 1.35;
  --hero-title-weight: 700;
}

.treatment-hero-picoway {
  height: 424px;
}

.treatment-hero-iv-drip.iv-drip-hero,
.treatment-hero-aquagold {
  height: 350px;
}

.treatment-hero-teoxane-mesotherapy {
  height: 360px;
}

.treatment-hero-fotona-sculpting {
  height: 304px;
}

.fotona-dynamis-body {
  width: min(1080px, calc(100% - 40px));
  margin: 42px auto 70px;
  display: grid;
  grid-template-columns: minmax(260px, 372px) minmax(0, 590px);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.fotona-dynamis-body > img {
  width: 100%;
  max-height: 930px;
  height: auto;
  object-fit: contain;
}

.fotona-dynamis-body .laser-copy {
  font-size: 18px;
  line-height: 1.5;
}

.fotona-dynamis-body .laser-copy h2 {
  font-size: 24px;
  line-height: 1.35;
  margin: 34px 0 14px;
}

.fotona-dynamis-body .laser-copy h2:first-child {
  font-size: 40px;
  margin-top: 0;
}

.fotona-dynamis-body .laser-copy h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 20px 0 6px;
}

.fotona-dynamis-copy-grid {
  width: min(1080px, calc(100% - 40px));
  margin: 26px auto 68px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.fotona-dynamis-copy-grid .laser-copy {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.laser-copy {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

.laser-copy-top,
.laser-copy.lower {
  width: min(940px, calc(100% - 40px));
  margin: 48px auto 36px;
}

.laser-copy h2,
.why-laser-videos h2,
.why-laser-video-grid h3 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 1.24;
}

.laser-copy h2,
.why-laser-videos h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 18px;
}

.laser-copy p {
  margin: 0 0 16px;
}

.why-laser-concerns,
.laser-image-copy,
.laser-award-intro {
  width: min(1040px, calc(100% - 40px));
  margin: 56px auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.why-laser-stage {
  width: min(1080px, calc(100% - 40px));
  min-height: 0;
  margin: 42px auto 58px;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.16fr) minmax(220px, 0.82fr);
  grid-template-areas:
    "title title title"
    "device copy photo";
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.why-laser-stage h1 {
  grid-area: title;
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 400;
  text-align: center;
  margin: 0 0 8px;
}

.why-laser-dots {
  position: absolute;
  right: clamp(188px, 23vw, 282px);
  top: clamp(92px, 13vw, 132px);
  width: min(250px, 26vw);
  height: auto;
  object-fit: contain;
  opacity: 0.28;
  z-index: 0;
}

.why-laser-device {
  grid-area: device;
  position: relative;
  z-index: 1;
  width: min(300px, 100%);
  height: auto;
  display: block;
  justify-self: center;
}

.why-laser-side-photo {
  grid-area: photo;
  position: relative;
  width: 100%;
  max-height: 560px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  justify-self: center;
}

.why-laser-copy {
  grid-area: copy;
  position: relative;
  width: auto;
  z-index: 2;
}

.why-laser-copy .why-laser-lede {
  color: #626262;
  font-size: 18px;
}

.why-laser-copy h2 {
  color: #626262;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.why-laser-copy p {
  margin-bottom: 10px;
}

.why-laser-copy ul {
  margin: 0 0 10px;
  padding-left: 22px;
}

.why-laser-copy li {
  margin-bottom: 4px;
}

.why-laser-concerns-list {
  width: min(980px, calc(100% - 40px));
  margin: 24px auto 72px;
}

.why-laser-concerns-list h2 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 33px;
  line-height: 1.18;
  font-weight: 400;
  text-align: center;
  margin: 0 0 36px;
}

.laser-image-copy > img {
  width: 100%;
  height: auto;
  display: block;
}

.laser-concern-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.95;
}

.laser-concern-grid p {
  margin: 0;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.laser-concern-grid span {
  display: block;
  color: #333;
}

.why-laser-videos {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 64px;
  overflow: visible;
}

.why-laser-videos h2 {
  text-align: left;
  margin-left: 4px;
}

.why-laser-video-grid {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  text-align: left;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

.why-laser-video-card {
  flex: 0 0 672px;
}

.why-laser-video-frame,
.laser-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.why-laser-video-grid h3 {
  font-size: 20px;
  margin: 12px 0 0;
}

.video-card-button {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #050505;
  cursor: pointer;
}

.video-card-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.video-card-button span {
  position: absolute;
  inset: auto auto 18px 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-button::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.video-card-button::before {
  content: "";
  position: absolute;
  z-index: 1;
  border-left: 16px solid #111;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

.video-card-button:hover img {
  transform: scale(1.04);
  opacity: 0.95;
}

.laser-media-row {
  width: min(980px, calc(100% - 40px));
  margin: 34px auto 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.laser-media-row img,
.laser-single-media img {
  width: auto;
  max-width: min(var(--media-width), 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.laser-single-media {
  width: min(760px, calc(100% - 40px));
  margin: 38px auto 44px;
  display: flex;
  justify-content: center;
}

.laser-single-media.wide {
  width: min(980px, calc(100% - 40px));
}

.secret-rf-lede {
  width: min(940px, calc(100% - 40px));
  margin: 46px auto 26px;
}

.secret-rf-lede h2 {
  color: #292929;
  font-size: clamp(28px, 3vw, 40px);
}

.secret-rf-feature {
  width: min(1040px, calc(100% - 40px));
  margin: 26px auto 54px;
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.secret-rf-feature-media img {
  width: auto;
  max-width: min(var(--media-width), 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.secret-rf-feature-copy h2,
.secret-rf-card h2 {
  color: #292929;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.28;
  margin: 22px 0 12px;
}

.secret-rf-feature-copy h2:first-child,
.secret-rf-card h2:first-child {
  margin-top: 0;
}

.secret-rf-card-grid {
  width: min(1040px, calc(100% - 40px));
  margin: 22px auto 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.secret-rf-card {
  border: 1px solid var(--line);
  background: #fbfaf6;
  padding: clamp(22px, 3vw, 34px);
}

.secret-rf-card p:last-child {
  margin-bottom: 0;
}

.secret-rf-actions {
  margin-top: 22px;
  margin-bottom: 30px;
}

.secret-rf-media-row {
  margin-top: 24px;
}

.laser-award-logo {
  width: 144px;
  height: auto;
  justify-self: center;
}

.hair-removal-hero {
  overflow: hidden;
}

.hair-removal-hero .hair-removal-award-logo {
  position: absolute;
  right: clamp(24px, 13vw, 210px);
  bottom: clamp(12px, 2.6vw, 28px);
  width: clamp(58px, 6.5vw, 88px);
  height: clamp(58px, 6.5vw, 88px);
  object-fit: contain;
  display: block;
  z-index: 3;
  pointer-events: none;
}

.hair-removal-copy {
  width: min(775px, calc(100% - 40px));
  margin: 42px auto 0;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.hair-removal-copy p {
  margin: 0 0 18px;
}

.hair-removal-copy h2 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.hair-removal-copy ul {
  margin: 0;
  padding-left: 24px;
}

.hair-removal-copy li {
  margin: 0;
}

.hair-removal-wide-media {
  width: min(979px, calc(100% - 40px));
  margin: 148px auto 0;
}

.hair-removal-wide-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hair-removal-copy.lower {
  width: min(877px, calc(100% - 40px));
  margin-top: 51px;
}

.hair-removal-video {
  width: min(759px, calc(100% - 40px));
  margin: 47px auto 66px;
}

.hair-removal-video-frame {
  width: 100%;
  aspect-ratio: 759 / 427;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.laser-video-section {
  width: min(760px, calc(100% - 40px));
  margin: 42px auto 48px;
}

.picoway-brand {
  width: min(760px, calc(100% - 40px));
  margin: 118px auto 14px;
}

.picoway-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.picoway-intro {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 534px) 408px;
  gap: 42px;
  align-items: start;
}

.picoway-intro .original-flow-copy {
  margin-top: 88px;
  font-size: 18px;
}

.picoway-device {
  width: 408px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.picoway-treatment {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 56px;
  display: grid;
  grid-template-columns: minmax(0, 534px) minmax(280px, 356px);
  gap: 48px;
  align-items: start;
}

.picoway-video {
  width: 534px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #050505;
}

.picoway-detail-copy {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 58px;
}

.picoway-detail-copy .original-flow-copy {
  margin: 0;
}

.video-study-copy {
  width: min(760px, calc(100% - 40px));
  margin: 76px auto 34px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.video-study-copy.lower {
  margin-top: 38px;
}

.video-study-copy h2,
.video-study-copy h3 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 16px;
}

.video-study-copy p {
  margin: 0 0 18px;
}

.video-study-media {
  width: min(747px, calc(100% - 40px));
  margin: 12px auto 0;
}

.video-study-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.fotona4d-intro,
.fotona4d-aftercare {
  width: min(820px, calc(100% - 40px));
  margin: 52px auto 30px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.62;
}

.fotona4d-intro p,
.fotona4d-aftercare p {
  margin: 0 0 18px;
}

.fotona4d-kicker {
  color: #626262;
  font-size: 20px;
  line-height: 1.35;
}

.fotona4d-video {
  width: min(747px, calc(100% - 40px));
  margin: 26px auto 46px;
}

.fotona4d-steps {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 40px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.fotona4d-steps h2 {
  color: #626262;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  text-align: center;
  margin: 0 0 28px;
}

.fotona4d-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fotona4d-step-grid article {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 14px 18px;
  min-height: 168px;
}

.fotona4d-step-grid strong {
  display: block;
  color: #626262;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}

.fotona4d-step-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.fotona4d-aftercare {
  margin-top: 10px;
}

.video-first-layout {
  width: min(980px, calc(100% - 40px));
  margin: 58px auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 521px) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.video-first-frame {
  width: 521px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.case-wide-media {
  width: min(980px, calc(100% - 40px));
  margin: 58px auto 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.case-wide-media.lower {
  margin-top: 30px;
}

.case-wide-media img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
}

.case-grid-media {
  width: min(980px, calc(100% - 40px));
  margin: 40px auto 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.case-grid-media img {
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
}

.case-grid-media img:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: min(620px, 100%);
  justify-self: center;
}

.hydrafacial-hero {
  height: clamp(330px, 32.2vw, 414px);
}

.hydrafacial-hero img {
  object-position: center;
}

.hydrafacial-hero-copy {
  position: absolute;
  left: min(13.2vw, 168px);
  top: 34px;
  width: 380px;
  color: #000;
  text-align: left;
  z-index: 1;
}

.hydrafacial-hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 0;
}

.hydrafacial-hero-copy h2 {
  font-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: clamp(28px, 3.8vw, 38px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 34px 72px;
}

.hydrafacial-hero-copy p {
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
}

.hydrafacial-syndeo-section {
  width: 100%;
  min-height: 448px;
  display: grid;
  grid-template-columns: 49.7% 50.3%;
  align-items: stretch;
  background: #f7f7f7;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.hydrafacial-syndeo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 20px 64px max(14px, calc((100vw - 980px) / 2));
  box-sizing: border-box;
}

.hydrafacial-syndeo-copy p {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
}

.hydrafacial-syndeo-copy .strong {
  margin-bottom: 26px;
}

.hydrafacial-syndeo-media {
  overflow: hidden;
  background: #000;
}

.hydrafacial-syndeo-media img {
  width: 100%;
  height: 100%;
  min-height: 448px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hydrafacial-intro-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 486px minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.hydrafacial-intro-media {
  align-self: start;
}

.hydrafacial-intro-media img {
  width: 486px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hydrafacial-intro-copy {
  padding-top: 58px;
  font-size: 16px;
  line-height: 1.62;
}

.hydrafacial-page-title {
  color: #000;
  font-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 34px;
}

.hydrafacial-intro-copy h3 {
  color: #000;
  font-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 700;
  margin: 0 0 20px;
}

.hydrafacial-intro-copy p,
.hydrafacial-steps-copy p,
.hydrafacial-benefit-copy p {
  margin: 0 0 14px;
}

.hydrafacial-steps-section {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 46px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.hydrafacial-steps-copy {
  width: min(720px, 100%);
  margin: 0 auto;
}

.hydrafacial-benefits-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 52% minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.hydrafacial-benefit-media img {
  width: 100%;
  max-width: 642px;
  height: auto;
  display: block;
  object-fit: contain;
}

.hydrafacial-benefit-copy h2 {
  color: #000;
  font-family: "Avenir Heavy", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 18px;
}

.hydrafacial-benefit-icon {
  width: 72px;
  height: auto;
  display: block;
  margin: 0 0 22px;
}

.skin-original-pair {
  width: min(980px, calc(100% - 40px));
  margin: 44px auto 56px;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5.6vw, 76px);
  align-items: center;
}

.skin-original-pair.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
}

.skin-original-pair.reverse .skin-original-media {
  order: 2;
}

.skin-original-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skin-original-media img {
  width: auto;
  max-width: min(var(--media-width), 100%);
  max-height: 640px;
  height: auto;
  object-fit: contain;
}

.skin-original-copy,
.skin-centered-copy {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.skin-original-copy h2,
.skin-original-copy h3,
.skin-centered-copy h2,
.skin-centered-copy h3 {
  color: #281a39;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 1.22;
  margin: 0 0 16px;
}

.skin-original-copy h2,
.skin-centered-copy h2 {
  font-size: clamp(30px, 3.1vw, 40px);
}

.skin-original-copy h3,
.skin-centered-copy h3 {
  font-size: 20px;
  margin-top: 22px;
}

.skin-original-copy p,
.skin-centered-copy p {
  margin: 0 0 16px;
}

.skin-centered-copy {
  width: min(900px, calc(100% - 40px));
  margin: 44px auto 28px;
  text-align: center;
}

.skin-product-heading {
  margin-top: 34px;
  margin-bottom: 34px;
}

.skin-product-title-block {
  width: min(900px, calc(100% - 40px));
  margin: 36px auto 16px;
  text-align: center;
  color: #281a39;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.skin-product-title-block h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 400;
}

.skin-product-title-block p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: #626262;
  font-size: 18px;
  line-height: 1.45;
}

.skin-product-title-block + .skin-product-heading {
  margin-top: 18px;
}

.skin-product-heading h2:first-child,
.skin-product-heading p:first-child {
  color: #281a39;
  font-size: clamp(32px, 3.3vw, 40px);
  line-height: 1.22;
}

html[lang="fr-CA"] .skin-product-heading h2:first-child,
html[lang="fr-CA"] .skin-product-heading p:first-child,
html[lang="zh-Hant-CA"] .skin-product-heading h2:first-child,
html[lang="zh-Hant-CA"] .skin-product-heading p:first-child {
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.3;
}

.skin-detail-copy {
  width: min(860px, calc(100% - 40px));
  text-align: left;
}

.skin-actions {
  margin-top: 24px;
}

.skin-video-section {
  width: min(760px, calc(100% - 40px));
  margin: 34px auto 58px;
}

.skin-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.skin-image-grid {
  width: min(980px, calc(100% - 40px));
  margin: 36px auto 66px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.skin-image-grid img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.skin-result-grid {
  align-items: start;
}

.skin-wide-image {
  width: min(980px, calc(100% - 40px));
  margin: 44px auto;
}

.skin-wide-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.skin-teoxane-intro {
  align-items: start;
}

.skin-prp-precautions {
  margin-top: 32px;
  align-items: start;
}

.skin-prp-detail,
.skin-zo-step-intro {
  align-items: start;
}

.skin-prx-original-section {
  width: min(965px, calc(100% - 40px));
  margin: 40px auto 42px;
  display: grid;
  grid-template-columns: 305px minmax(0, 608px);
  gap: 46px;
  align-items: start;
}

.skin-prx-left {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding-top: 116px;
}

.skin-prx-left img {
  width: 305px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.skin-prx-left .skin-actions {
  margin-top: 0;
}

.skin-prx-left .button {
  min-width: 268px;
}

.skin-prx-copy {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.skin-prx-copy h2,
.skin-prx-copy h3 {
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  margin: 0 0 8px;
}

.skin-prx-copy p {
  margin: 0 0 14px;
}

.skin-prx-benefit-grid {
  width: min(980px, calc(100% - 40px));
  margin: 10px auto 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 90px;
  color: #281a39;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.skin-prx-benefit-grid p {
  margin: 0 0 12px;
}

.skin-prx-result {
  width: min(850px, calc(100% - 40px));
  margin: 24px auto 36px;
}

.skin-prx-result img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.skin-prx-detail-copy {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 54px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.skin-prx-detail-copy p {
  margin: 0 0 12px;
}

.skin-aquagold-intro .skin-original-media img {
  max-height: 700px;
}

.skin-zo-health-intro {
  align-items: start;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.zo-health-poster-hero {
  background: #f5f1eb;
}

.skin-zo-health-intro .skin-original-media img {
  max-height: 760px;
}

.skin-extraction-detail {
  align-items: start;
}

.skin-zo-step-grid {
  margin-top: 10px;
}

.profhilo-wide {
  margin-top: 28px;
}

.skin-care-facial-grid {
  width: min(990px, calc(100% - 40px));
  margin: 48px auto 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 42px;
}

.skin-care-facial-card {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.skin-care-facial-card img {
  width: 238px;
  height: 232px;
  object-fit: cover;
}

.skin-care-facial-card span {
  display: block;
  margin-bottom: 6px;
  color: #626262;
}

.skin-care-facial-card h2 {
  color: #281a39;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 10px;
}

.skin-care-facial-card p {
  margin: 0 0 9px;
}

.skin-card-meta {
  color: #333;
}

.fotona-vrl-banner {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin: 0 -50vw 40px;
  overflow: hidden;
  background: #efefef;
}

.fotona-vrl-banner img {
  width: 100%;
  height: clamp(150px, 17.4vw, 606px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.fotona-vrl-title {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 26px;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.fotona-vrl-title h1,
.fotona-vrl-title h2 {
  color: #626262;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 10px;
}

.fotona-vrl-title h1 {
  font-size: 34px;
}

.fotona-vrl-title h2 {
  font-size: 26px;
}

.fotona-vrl-intro {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.fotona-vrl-intro img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
}

.fotona-vrl-intro .original-flow-copy,
.fotona-vrl-copy {
  font-size: 17px;
  line-height: 1.62;
}

.fotona-vrl-intro .original-flow-copy h2,
.fotona-vrl-copy h2 {
  font-size: 24px;
  line-height: 1.28;
  margin: 22px 0 12px;
}

.fotona-vrl-video-section {
  width: min(720px, calc(100% - 40px));
  margin: 8px auto 36px;
}

.fotona-vrl-video {
  width: 100%;
  aspect-ratio: 720 / 332;
  display: block;
  border: 0;
  background: #050505;
  object-fit: cover;
}

.fotona-vrl-media-row {
  width: min(760px, calc(100% - 40px));
  margin: 28px auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.fotona-vrl-media-row img {
  width: auto;
  max-width: min(var(--media-width), 42vw);
  max-height: 230px;
  height: auto;
  object-fit: contain;
}

.fotona-vrl-copy {
  margin-top: 22px;
}

.fotona-vrl-actions {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 54px;
  display: flex;
  justify-content: center;
}

.body-logo {
  margin-top: 48px;
  margin-bottom: 28px;
}

.body-video-intro {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.body-video-intro img {
  width: 100%;
  max-height: 460px;
  height: auto;
  object-fit: contain;
}

.body-contour-pair {
  width: min(980px, calc(100% - 40px));
  margin: 46px auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.body-contour-pair.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.body-contour-pair.reverse .body-contour-pair-media {
  order: 2;
}

.body-contour-pair-media {
  display: grid;
  place-items: center;
}

.body-contour-pair-media img {
  width: auto;
  max-width: min(var(--media-width), 100%);
  max-height: 560px;
  height: auto;
  object-fit: contain;
}

.body-contour-pair .body-video-frame {
  width: 100%;
  max-width: 720px;
}

.body-video-media {
  width: min(760px, calc(100% - 40px));
  margin: 28px auto 38px;
}

.body-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #050505;
}

.original-wide-stack {
  margin-top: 34px;
}

.original-wide-stack img {
  max-height: 620px;
}

.compact-media {
  margin-top: 28px;
  margin-bottom: 34px;
}

.compact-media img {
  max-height: 620px;
}

.original-video-slot {
  margin-top: 28px;
  margin-bottom: 34px;
}

.original-case-grid {
  margin-top: 34px;
}

.filler-video-hero video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.filler-brand-row {
  width: min(980px, calc(100% - 40px));
  margin: 18px auto 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.filler-brand-row img {
  width: auto;
  max-width: 230px;
  max-height: 80px;
  object-fit: contain;
}

.filler-feature-media {
  width: min(902px, calc(100% - 40px));
  margin: 38px auto 54px;
}

.filler-feature-media img {
  width: 100%;
  height: auto;
  display: block;
}

.filler-case-row {
  width: min(902px, calc(100% - 40px));
  margin: 28px auto 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.filler-case-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sofwave-source-hero {
  width: 100vw;
  height: var(--wide-hero-height, clamp(220px, 18vw, 300px));
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #f5f1eb;
}

.sofwave-source-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.sofwave-source-intro,
.sofwave-fda,
.sofwave-awards {
  width: 980px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 475px 355px;
  gap: 72px;
  align-items: start;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.sofwave-source-intro {
  min-height: 540px;
  margin-top: 50px;
  padding-left: 77px;
  box-sizing: border-box;
}

.sofwave-source-copy {
  padding-top: 20px;
}

.sofwave-source-copy.compact {
  padding-top: 0;
}

.sofwave-source-copy h2,
.sofwave-principle-heading h2 {
  color: #5c5c5c;
  font-family: "Avenir Light", "Avenir Next", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  margin: 32px 0 16px;
}

.sofwave-source-copy p {
  margin: 0 0 17px;
}

.sofwave-source-copy ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.sofwave-source-copy li {
  margin: 0 0 10px;
}

.sofwave-source-copy li::before {
  content: "✔";
  margin-right: 8px;
  color: #111;
}

.sofwave-machine {
  width: 355px;
  height: auto;
  display: block;
  justify-self: start;
}

.sofwave-source-media {
  width: 980px;
  margin: 0 auto;
}

.sofwave-source-media.energy {
  margin-top: 0;
}

.sofwave-source-media.results {
  margin-top: 72px;
}

.sofwave-source-media img {
  width: 100%;
  height: auto;
  display: block;
}

.sofwave-principle-heading {
  width: 980px;
  margin: 44px auto 0;
  text-align: center;
  color: #000;
  font-family: "Avenir Light", "Avenir Next", Arial, "Noto Sans TC", sans-serif;
}

.sofwave-principle-heading h2 {
  margin: 0 0 8px;
}

.sofwave-principle-heading p {
  margin: 0;
  font-size: 16px;
}

.sofwave-fda {
  grid-template-columns: 511px 428px;
  gap: 31px;
  margin-top: 40px;
  align-items: start;
}

.sofwave-video-player {
  width: 511px;
  height: 302px;
  background: #000;
}

.sofwave-video-player iframe,
.sofwave-video-player video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.sofwave-awards {
  margin-top: 58px;
  grid-template-columns: 369px 461px;
  gap: 106px;
  align-items: center;
}

.sofwave-awards img {
  width: 461px;
  height: auto;
  display: block;
  justify-self: end;
}

.video-placeholder span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.related-services {
  width: min(var(--max), calc(100% - 40px));
  margin: 72px auto;
}

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

.service-list.compact .service-row a {
  grid-template-columns: 160px 1fr;
}

.treatment-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.treatment-card span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.treatment-card p {
  color: var(--muted);
}

.treatment-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}

.treatment-card a {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  width: fit-content;
  margin-top: 18px;
}

.contact-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 76px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 180px;
  gap: 30px;
  align-items: center;
  padding: 38px;
  background: var(--ink);
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 8px;
}

.contact-band .muted {
  max-width: 620px;
}

.contact-band .button.dark {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.contact-band .button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

.contact-page-band {
  text-align: left;
}

.contact-page-band > div:first-child,
.contact-page-band .contact-actions,
.contact-page-band .contact-wechat {
  justify-self: auto;
}

.contact-page-band .contact-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.contact-page-band .muted {
  margin-right: 0;
  margin-left: 0;
}

.contact-page-band h2 {
  max-width: 100%;
}

.contact-title-stack {
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-title-stack .eyebrow,
.contact-title-stack h1,
.contact-title-stack p {
  width: 100%;
  text-align: center;
}

.contact-title-stack p {
  margin-right: auto;
  margin-left: auto;
}

.contact-wechat,
.footer-wechat {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.contact-wechat img {
  display: block;
  width: 168px;
  height: auto;
  background: var(--white);
  padding: 8px;
}

.footer-wechat {
  display: grid;
  width: 156px;
  margin-top: 22px;
  padding: 13px;
  gap: 10px;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.footer-wechat img {
  display: block;
  width: 118px;
  height: auto;
  background: var(--white);
  padding: 6px;
}

.contact-wechat span,
.footer-wechat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

.page-hero {
  width: min(900px, calc(100% - 40px));
  margin: 86px auto 48px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.about-page-hero {
  width: min(980px, calc(100% - 40px));
  margin-bottom: 34px;
}

.about-page-hero h1,
.booking-hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.12;
}

.about-page-hero p {
  margin: 0 auto;
}

.about-content-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.booking-hero {
  width: min(780px, calc(100% - 40px));
  margin: 72px auto 34px;
}

.booking-hero p {
  margin: 0 auto;
}

.note {
  width: min(var(--max), calc(100% - 40px));
  margin: 44px auto 82px;
  padding: 24px 28px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
}

.before-after-gallery {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 44px;
  display: grid;
  gap: 46px;
}

.before-after-group {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.before-after-group-header {
  position: sticky;
  top: 104px;
}

.before-after-group-header span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.before-after-group-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--ink);
}

.before-after-group-header p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.before-after-card {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.before-after-card-wide {
  grid-column: span 2;
}

.before-after-card img {
  display: block;
  width: 100%;
  height: auto;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.value-list li {
  border-left: 2px solid var(--gold);
  padding: 10px 12px;
  background: var(--soft);
}

.booking-layout {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.booking-options {
  display: grid;
  gap: 12px;
  align-content: start;
}

.booking-options a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.booking-form {
  padding: 28px;
  border: 1px solid var(--line);
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
}

.booking-form p {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 0;
}

.map-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 82px;
  display: grid;
  grid-template-rows: minmax(300px, 420px) auto;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.contact-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.map-panel-info {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 20px;
  text-align: center;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.map-panel-info span {
  display: block;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-panel-info strong {
  display: block;
  max-width: 680px;
  text-align: center;
}

.map-panel-info a {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.08fr) minmax(280px, 1fr) minmax(210px, 0.78fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: 54px clamp(20px, 4vw, 52px);
  background: #171513;
  color: var(--white);
}

.footer-logo {
  width: 170px;
  background: var(--white);
  padding: 8px;
  margin-bottom: 18px;
}

.site-footer h2 {
  font-family: inherit;
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.footer-brand p,
.footer-contact p {
  max-width: 360px;
}

.footer-connect {
  justify-self: end;
  width: 210px;
}

.footer-connect p {
  max-width: 210px;
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    min-height: 80px;
    padding: 14px 16px;
    z-index: 1000;
  }

  .logo-link,
  .language-switcher,
  .main-nav {
    position: static;
  }

  .logo-link img {
    width: 138px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 9px 12px;
  }

  .main-nav {
    position: static;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 96px);
    padding: 18px 6px max(32px, env(safe-area-inset-bottom));
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 0;
    font-size: 13px;
    text-align: left;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav::before {
    content: "";
    display: block;
    height: 2px;
  }

  .main-nav a,
  .nav-dropdown > a {
    display: block;
    padding: 12px 14px;
    text-align: left;
    white-space: normal;
  }

  .nav-dropdown {
    position: static;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--soft);
  }

  .dropdown-panel {
    position: static;
    display: grid;
    justify-items: stretch;
    gap: 0;
    max-height: none;
    transform: none;
    min-width: 0;
    padding: 0 14px 12px;
    box-shadow: none;
    border: 0;
    background: transparent;
  }

  .dropdown-panel a {
    white-space: normal;
    padding: 9px 0 9px 12px;
    border-top: 1px solid rgba(231, 223, 212, 0.9);
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.35;
  }

  .nav-dropdown > a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .main-nav > a {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
  }

  .main-nav > a.is-active,
  .nav-dropdown.is-active > a {
    color: var(--gold-dark);
    border-color: var(--gold);
  }

  .nav-dropdown.is-active {
    border-color: var(--gold);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    overflow-y: auto;
    align-content: start;
  }

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

  .split-section,
  .split-section.reverse,
  .about-content-section,
  .booking-layout,
  .service-group,
  .treatment-detail-hero,
  .detail-content,
  .media-grid,
  .media-grid.rich,
  .intro-pair,
  .device-pair,
  .picosure-case-pair,
  .case-image-row,
  .ultherapy-intro,
  .ultherapy-video-copy,
  .ultherapy-lift,
  .morpheus-feature-grid,
  .morpheus8-info-grid,
  .picoway-intro,
  .picoway-treatment,
	  .fotona-dynamis-copy-grid,
	  .secret-rf-feature,
	  .secret-rf-card-grid,
	  .video-first-layout,
	  .fotona-vrl-intro,
  .body-video-intro,
  .body-contour-pair,
  .body-contour-pair.reverse,
  .case-grid-media,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .instrument-video video {
    width: 100%;
  }

  .sofwave-source-intro,
  .sofwave-fda,
  .sofwave-awards,
  .sofwave-source-media,
  .sofwave-principle-heading {
    width: min(100%, calc(100% - 32px));
  }

  .sofwave-source-intro,
  .sofwave-fda,
  .sofwave-awards {
    grid-template-columns: 1fr;
  }

  .sofwave-source-intro {
    min-height: 0;
    padding-left: 0;
    gap: 28px;
  }

  .sofwave-source-copy {
    padding-top: 0;
  }

  .sofwave-machine {
    width: min(300px, 100%);
    justify-self: center;
  }

  .sofwave-video-player {
    width: 100%;
    height: auto;
    aspect-ratio: 511 / 302;
  }

  .sofwave-awards {
    gap: 30px;
  }

  .sofwave-awards img {
    width: min(461px, 100%);
    justify-self: center;
  }

  .fotona4d-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fotona-vrl-banner img {
    min-height: 120px;
  }

  .fotona-vrl-media-row {
    flex-wrap: wrap;
  }

  .fotona-vrl-media-row img {
    max-width: min(var(--media-width), 86vw);
  }

  .fotona-vrl-intro .original-flow-copy,
  .fotona-vrl-copy {
    width: min(100%, calc(100% - 32px));
    font-size: 16px;
    line-height: 1.65;
  }

  .fotona-vrl-intro .original-flow-copy h2,
  .fotona-vrl-copy h2 {
    font-size: 22px;
  }

  .device-image {
    justify-self: start;
  }

  .ultherapy-portrait {
    justify-self: start;
  }

  .ultherapy-awards {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .morpheus-benefits {
    margin-left: 0;
  }

  .morpheus-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px auto 24px;
  }

  .morpheus-feature-grid strong {
    min-height: 66px;
    padding: 14px 10px;
  }

  .morpheus-section-kicker {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .morpheus8-intro {
    margin-top: 30px;
    margin-bottom: 24px;
  }

  .morpheus8-how h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .morpheus8-banner {
    width: min(100%, calc(100% - 32px));
    margin-top: 12px;
    margin-bottom: 30px;
  }

  .morpheus8-feature-grid {
    margin-top: 26px;
  }

  .morpheus8-detail-list {
    gap: 10px;
    margin-top: 24px;
  }

  .morpheus8-video-section {
    margin-top: 38px;
  }

  .fotona4d-intro,
  .fotona4d-aftercare {
    width: min(100%, calc(100% - 32px));
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.68;
  }

  .fotona4d-kicker {
    font-size: 17px;
  }

  .fotona4d-video,
  .fotona4d-steps {
    width: min(100%, calc(100% - 32px));
  }

  .fotona4d-video {
    margin-top: 20px;
    margin-bottom: 34px;
  }

  .fotona4d-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
  }

  .fotona4d-step-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fotona4d-step-grid article {
    min-height: 0;
    padding: 16px 0 15px;
  }

  .morpheus-intro-copy {
    margin-top: 34px;
    margin-bottom: 24px;
  }

  .morpheus-banner {
    width: min(100%, calc(100% - 32px));
    margin: 0 auto 34px;
  }

  .morpheus-how-copy {
    margin-bottom: 30px;
  }

  .morpheus8-hero h1 {
    left: 50%;
    top: 32px;
    width: min(526px, calc(100% - 40px));
  }

  .morpheus8-hero img {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .morpheus8-info-grid {
    gap: 28px;
  }

  .morpheus8-callouts {
    gap: 20px;
  }

  .picoway-intro .original-flow-copy {
    margin-top: 18px;
  }

  .picoway-device,
  .picoway-video,
  .picosure-video-frame,
  .video-first-frame {
    width: 100%;
  }

  .case-grid-media img:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .filler-brand-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
  }

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

  .body-video-intro img,
  .body-contour-pair-media img,
  .case-wide-media img,
  .compact-media img {
    max-height: none;
  }

  .body-contour-pair.reverse .body-contour-pair-media {
    order: 0;
  }

  .service-group-heading {
    position: static;
  }

  .service-row a,
  .service-list.compact .service-row a {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }

  .footer-connect {
    justify-self: start;
    width: min(100%, 240px);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 80px;
    padding: 14px 16px;
    gap: 12px;
  }

  .logo-link img {
    width: 138px;
  }

  .language-switcher {
    gap: 8px;
  }

  .main-nav {
    top: 79px;
  }

  .footer-wechat {
    justify-items: start;
  }

  .map-panel {
    grid-template-rows: minmax(260px, 300px) auto;
    width: min(100%, calc(100% - 32px));
    margin-bottom: 64px;
  }

  .contact-map-frame {
    min-height: 260px;
  }

  .original-treatment-hero,
  .laser-wide-hero,
  .instrument-hero,
  .body-contour-hero,
  .morpheus-hero,
  .skin-care-hero {
    height: clamp(218px, 64vw, 300px);
  }

  .original-treatment-hero {
    --hero-mobile-title-left: 50%;
    --hero-mobile-title-top: 50%;
    --hero-mobile-title-width: 320px;
    --hero-mobile-title-size: clamp(23px, 6.6vw, 30px);
  }

  .original-treatment-hero img {
    object-position: var(--hero-mobile-position, center center);
  }

  .original-treatment-hero.wide-banner-hero {
    height: clamp(150px, 42vw, 220px);
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    margin-bottom: 0;
  }

  .original-treatment-hero.wide-banner-hero > img:not(.hair-removal-award-logo) {
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-mobile-position, var(--hero-focus-x, center) var(--hero-focus-y, center));
  }

  .sofwave-source-hero {
    height: clamp(150px, 42vw, 220px);
  }

  .original-hero-title-copy {
    left: var(--hero-mobile-title-left);
    top: var(--hero-mobile-title-top);
    width: min(var(--hero-mobile-title-width), calc(100% - 32px));
    transform: translate(-50%, -50%);
  }

  .original-hero-title-copy h1 {
    font-size: var(--hero-mobile-title-size);
    line-height: 1.18;
  }

  .original-hero-title-copy p {
    font-size: 15px;
  }

  .treatment-hero-botox {
    --hero-mobile-title-left: 52%;
    --hero-mobile-title-top: 42%;
  }

  .treatment-hero-sculptra,
  .treatment-hero-hotodynamic-pdt-light-therapy,
  .treatment-hero-ultrashape-power {
    --hero-mobile-title-left: 33%;
    --hero-mobile-title-top: 43%;
  }

  .treatment-hero-fat-dissolving,
  .treatment-hero-iv-drip,
  .treatment-hero-radiesse,
  .treatment-hero-fotona-vaginal-tightening {
    --hero-mobile-title-left: 50%;
    --hero-mobile-title-top: 43%;
  }

  .treatment-hero-fat-dissolving {
    --hero-mobile-position: 46% center;
    --hero-mobile-title-left: 48%;
    --hero-mobile-title-top: 42%;
  }

  .treatment-hero-picoway {
    --hero-mobile-position: 60% center;
    --hero-mobile-title-left: 62%;
    --hero-mobile-title-top: 56%;
  }

  .treatment-hero-fat-dissolving.wide-banner-hero,
  .treatment-hero-picoway.wide-banner-hero {
    height: clamp(118px, 34vw, 148px);
    margin-bottom: 62px;
    overflow: visible;
  }

  .treatment-hero-fat-dissolving .original-hero-title-copy,
  .treatment-hero-picoway .original-hero-title-copy {
    top: calc(100% + 26px);
    left: 50%;
    width: calc(100% - 32px);
    color: #281a39;
  }

  .treatment-hero-fat-dissolving .original-hero-title-copy h1,
  .treatment-hero-picoway .original-hero-title-copy h1 {
    color: #281a39;
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.2;
    text-align: center;
  }

  .treatment-hero-fotona-dynamis {
    --hero-mobile-title-left: 32%;
    --hero-mobile-title-top: 70%;
    --hero-mobile-title-size: clamp(22px, 6vw, 28px);
  }

  .treatment-hero-morpheus-8 {
    --hero-mobile-title-left: 59%;
    --hero-mobile-title-top: 32%;
    --hero-mobile-title-size: clamp(21px, 5.8vw, 27px);
  }

  .treatment-hero-m22-ipl-therapy,
  .treatment-hero-secret-rf-microneedle {
    --hero-mobile-title-left: 31%;
    --hero-mobile-title-top: 43%;
  }

  .treatment-hero-stellar-m22 {
    --hero-mobile-title-left: 65%;
    --hero-mobile-title-top: 53%;
  }

  .treatment-hero-fotona-nd-yag-laser-hair-removal {
    --hero-mobile-title-left: 64%;
    --hero-mobile-title-top: 43%;
    --hero-mobile-title-size: clamp(20px, 5.6vw, 26px);
  }

  .treatment-hero-morpheus8 {
    --hero-mobile-title-left: 25%;
    --hero-mobile-title-top: 10%;
  }

  .treatment-hero-inmode-forma {
    --hero-mobile-title-left: 60%;
    --hero-mobile-title-top: 30%;
  }

  .treatment-hero-btl-exilis-1 {
    --hero-mobile-title-left: 32%;
    --hero-mobile-title-top: 43%;
  }

  .treatment-hero-smootheye {
    --hero-mobile-title-left: 29%;
    --hero-mobile-title-top: 43%;
    --hero-mobile-title-width: 280px;
  }

  .treatment-hero-inmode-bodyfx {
    --hero-mobile-title-left: 68%;
    --hero-mobile-title-top: 70%;
  }

  .treatment-hero-fotona-sculpting {
    --hero-mobile-title-left: 66%;
    --hero-mobile-title-top: 37%;
  }

  .treatment-hero-btl-exilis {
    --hero-mobile-title-left: 67%;
    --hero-mobile-title-top: 43%;
  }

  .treatment-hero-fotona-4d .original-hero-title-copy {
    top: var(--hero-mobile-title-top);
    width: min(var(--hero-mobile-title-width), calc(100% - 32px));
    transform: translate(-50%, -50%);
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.82) 54%, rgba(255, 250, 243, 0.42) 100%),
      var(--hero-image) center / cover;
  }

  .hero-copy {
    margin: 0 auto;
  }

  h1 {
    font-size: 40px;
  }

  .hero p,
  .page-hero p,
  .section-heading p,
  .split-section p {
    font-size: 16px;
  }

  .split-section {
    margin: 62px auto;
  }

  .about-content-section {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .iv-drip-card-grid,
  .iv-drip-wellness,
  .botox-pair,
  .botox-pair.reverse,
  .fotona-dynamis-body,
  .fotona-dynamis-copy-grid,
  .picosure-case-pair,
  .original-flow-pair,
  .original-flow-pair.reverse,
  .skin-original-pair,
  .skin-original-pair.reverse,
  .laser-image-copy,
  .laser-award-intro,
  .why-laser-video-grid {
    grid-template-columns: 1fr;
  }

  .original-flow-pair.reverse .original-flow-pair-media {
    order: 2;
  }

  .original-flow-pair .original-flow-pair-media,
	  .skin-original-pair .skin-original-media,
	  .body-contour-pair .body-contour-pair-media,
	  .secret-rf-feature-media,
	  .laser-image-copy > img,
	  .laser-award-intro > img,
  .picosure-visual-pair .instrument-video,
  .picosure-case-pair > img,
  .picoway-treatment > .picoway-video,
  .video-first-layout > iframe,
  .video-first-layout > video,
  .video-first-layout > .youtube-preview-card {
    order: 2;
  }

  .original-flow-pair .original-flow-copy,
	  .skin-original-pair .skin-original-copy,
	  .body-contour-pair .original-flow-copy,
	  .secret-rf-feature-copy,
	  .laser-image-copy .laser-copy,
  .laser-award-intro .laser-copy,
  .picosure-visual-pair .instrument-copy,
  .picosure-case-pair .instrument-copy,
  .picoway-treatment .original-flow-copy,
  .video-first-layout .original-flow-copy {
    order: 1;
  }

  .skin-original-pair.reverse .skin-original-media {
    order: 2;
  }

  .hydrafacial-intro-section,
  .hydrafacial-benefits-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hydrafacial-syndeo-section {
    grid-template-columns: 1fr;
  }

  .hydrafacial-syndeo-copy {
    min-height: 250px;
    padding: 48px 22px;
  }

  .hydrafacial-syndeo-copy p {
    font-size: 24px;
  }

  .hydrafacial-syndeo-media img {
    min-height: 280px;
  }

  .hydrafacial-intro-copy,
  .hydrafacial-steps-copy {
    padding-top: 0;
  }

  .hydrafacial-page-title {
    font-size: 34px;
    margin-bottom: 22px;
  }

  .botox-pair.reverse img {
    order: 0;
  }

  .botox-hero {
    height: 280px;
  }

  .fotona-dynamis-body {
    margin-top: 30px;
    margin-bottom: 46px;
    gap: 28px;
  }

  .fotona-dynamis-body .laser-copy {
    order: 1;
  }

  .secret-rf-lede,
  .secret-rf-feature,
  .secret-rf-card-grid,
  .secret-rf-media-row {
    width: min(100%, calc(100% - 32px));
  }

  .secret-rf-lede {
    margin-top: 36px;
    margin-bottom: 22px;
  }

  .secret-rf-feature {
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .secret-rf-feature-media img {
    max-width: min(82%, var(--media-width));
    margin: 0 auto;
  }

  .secret-rf-card-grid {
    gap: 16px;
    margin-top: 18px;
  }

  .secret-rf-feature-copy h2,
  .secret-rf-card h2 {
    font-size: 24px;
  }

  .fotona-dynamis-body > img {
    order: 2;
    width: min(78%, 320px);
    max-height: 580px;
    margin: 0 auto;
  }

  .hair-removal-hero .hair-removal-award-logo {
    top: auto;
    right: 14px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }

  .hair-removal-copy {
    margin-top: 44px;
  }

  .treatment-hero-hydrafacial {
    --hero-mobile-title-left: 34%;
    --hero-mobile-title-top: 72%;
    --hero-mobile-title-width: 300px;
    --hero-mobile-title-size: 16px;
  }

  .treatment-hero-fotona-4d,
  .treatment-hero-silhouette {
    height: 280px;
  }

  .treatment-hero-fotona-4d {
    --hero-mobile-title-left: 50%;
    --hero-mobile-title-top: 61%;
    --hero-mobile-title-width: 300px;
    --hero-mobile-title-size: 30px;
  }

  .hydrafacial-hero {
    height: 330px;
  }

  .hydrafacial-hero-copy {
    left: 22px;
    top: 42px;
    width: 260px;
  }

  .hydrafacial-hero-copy h1 {
    font-size: 44px;
    margin-bottom: 22px;
  }

  .hydrafacial-hero-copy h2 {
    font-size: 32px;
    margin: 0 0 74px 56px;
  }

  .hydrafacial-hero-copy p {
    font-size: 15px;
  }

  .treatment-hero-teoxane-mesotherapy,
  .treatment-hero-aquagold,
  .treatment-hero-zo-health-medical-facial,
  .treatment-hero-medical-skin-product {
    --hero-mobile-title-left: 50%;
    --hero-mobile-title-top: 18%;
    --hero-mobile-title-width: 330px;
    --hero-mobile-title-size: 28px;
  }

  .skin-product-title-block {
    width: min(100%, calc(100% - 32px));
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .skin-product-title-block h1 {
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.2;
  }

  .skin-product-title-block p {
    font-size: 16px;
    line-height: 1.45;
  }

  .skin-product-title-block + .skin-product-heading {
    margin-top: 14px;
  }

  .treatment-hero-prp,
  .treatment-hero-skin-care-facial,
  .treatment-hero-extraction,
  .treatment-hero-prx-t33-peel,
  .treatment-hero-zo-step-3-peel,
  .treatment-hero-profhilo {
    --hero-mobile-title-left: 50%;
    --hero-mobile-title-top: 42%;
    --hero-mobile-title-width: 340px;
    --hero-mobile-title-size: 28px;
  }

  .hair-removal-wide-media {
    margin-top: 58px;
  }

  .why-laser-stage {
    width: min(100%, calc(100% - 28px));
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "device"
      "photo";
    gap: 24px;
    margin: 34px auto;
    overflow: hidden;
  }

  .why-laser-stage h1 {
    grid-area: title;
    font-size: 34px;
  }

  .why-laser-copy {
    grid-area: copy;
    position: relative;
    width: 100%;
  }

  .why-laser-device {
    grid-area: device;
    position: relative;
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .why-laser-side-photo {
    grid-area: photo;
    position: relative;
    width: min(360px, 100%);
    max-height: 520px;
    margin: 0 auto;
    object-fit: contain;
  }

  .why-laser-dots {
    display: none;
  }

  .laser-concern-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-laser-concerns-list {
    width: min(100%, calc(100% - 28px));
    margin-bottom: 46px;
  }

  .why-laser-concerns-list h2 {
    margin-bottom: 26px;
  }

  .why-laser-video-card {
    flex-basis: min(672px, 86vw);
  }

  .iv-drip-intro,
  .iv-drip-faq {
    margin: 42px auto;
  }

  .about-page-hero,
  .booking-hero {
    margin-top: 58px;
  }

  .treatment-grid,
  .value-list,
  .skin-care-facial-grid {
    grid-template-columns: 1fr;
  }

  .before-after-group,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .before-after-group {
    gap: 18px;
  }

  .before-after-group-header {
    position: static;
  }

  .before-after-card-wide {
    grid-column: auto;
  }

  .skin-care-facial-card {
    grid-template-columns: 1fr;
  }

  .skin-care-facial-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 238 / 232;
  }

  .skin-prx-original-section,
  .skin-prx-benefit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .skin-prx-left {
    padding-top: 0;
  }

  .skin-prx-left img {
    width: min(305px, 100%);
  }

  .treatments-preview {
    padding: 58px 20px;
  }

  .treatment-card {
    min-height: 0;
  }

  .service-list.compact {
    grid-template-columns: 1fr;
  }

  .contact-band {
    padding: 28px 22px;
  }

  .home-contact-band {
    margin: 52px auto 34px;
    padding: 26px 20px;
    gap: 20px;
    background: #f7f3ef;
    color: var(--ink);
    border: 1px solid rgba(23, 21, 19, 0.08);
  }

  .home-contact-band > div:first-child p {
    display: none;
  }

  .home-contact-band .eyebrow {
    color: rgba(23, 21, 19, 0.58);
  }

  .home-contact-band h2 {
    margin-bottom: 0;
    font-size: 20px;
  }

  .home-contact-band .contact-actions {
    display: grid;
    gap: 10px;
  }

  .home-contact-band .button.dark {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
  }

  .home-contact-band .button.light {
    color: var(--ink);
    border-color: rgba(23, 21, 19, 0.35);
    background: transparent;
  }

  .home-contact-band .contact-wechat {
    display: none;
  }

  .button,
  .booking-form button {
    width: 100%;
  }
}
