:root {
  --beauty-black: #070605;
  --beauty-charcoal: #12100d;
  --beauty-ink: #1b1712;
  --beauty-cream: #f3eadc;
  --beauty-cream-deep: #e7d8c3;
  --beauty-white: #f8f3eb;
  --beauty-gold: #b98243;
  --beauty-gold-light: #dfb975;
  --beauty-line-dark: rgba(40, 31, 21, 0.17);
  --beauty-line-light: rgba(222, 184, 117, 0.25);
  --beauty-serif: "Cormorant Garamond", Georgia, serif;
  --beauty-sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--beauty-white);
  background: var(--beauty-black);
  font-family: var(--beauty-sans);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--beauty-ink);
  background: var(--beauty-gold-light);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.beauty-shell,
main {
  min-width: 0;
}

main {
  overflow: hidden;
}

.eyebrow-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--beauty-gold-light);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-kicker::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.beauty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.beauty-button:hover,
.beauty-button:focus-visible {
  transform: translateY(-2px);
}

.beauty-button-primary {
  color: #18120c;
  background: linear-gradient(120deg, #d6aa66, #efd39b);
}

.beauty-button-primary:hover,
.beauty-button-primary:focus-visible {
  background: #f1d8a5;
}

.beauty-button-outline {
  color: var(--beauty-white);
  border-color: rgba(238, 210, 166, 0.45);
  background: rgba(255, 255, 255, 0.02);
}

.beauty-button-outline:hover,
.beauty-button-outline:focus-visible {
  color: var(--beauty-gold-light);
  border-color: var(--beauty-gold-light);
  background: rgba(192, 139, 76, 0.08);
}

.collection-hero,
.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  min-height: max(760px, 100svh);
  padding-top: var(--global-header-height, 86px);
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 15%, rgba(181, 126, 66, 0.22), transparent 30%),
    linear-gradient(118deg, #17120e 0%, #090806 57%, #050504 100%);
}

.collection-hero::after,
.detail-hero::after {
  position: absolute;
  z-index: -1;
  top: 19%;
  left: -0.03em;
  color: rgba(220, 176, 110, 0.038);
  font-family: var(--beauty-serif);
  font-size: clamp(180px, 25vw, 430px);
  line-height: 0.7;
  content: attr(data-watermark);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(84px, 10vw, 155px) clamp(28px, 6.6vw, 106px) 82px;
}

.hero-copy h1 {
  margin: 22px 0 27px;
  color: var(--beauty-cream);
  font-family: var(--beauty-serif);
  font-size: clamp(76px, 8.4vw, 146px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.75;
}

.hero-copy h1 em {
  display: block;
  margin-left: clamp(22px, 4vw, 66px);
  color: var(--beauty-gold-light);
  font-weight: 400;
}

.detail-hero .hero-copy h1 {
  font-size: clamp(70px, 7.1vw, 124px);
  line-height: 0.78;
}

.hero-rule {
  width: clamp(84px, 8vw, 126px);
  height: 1px;
  background: linear-gradient(90deg, var(--beauty-gold), var(--beauty-gold-light), transparent);
}

.hero-summary {
  max-width: 580px;
  margin: 27px 0 0;
  color: rgba(248, 243, 235, 0.72);
  font-family: var(--beauty-serif);
  font-size: clamp(20px, 1.65vw, 29px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.hero-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(222, 184, 117, 0.26);
  color: rgba(248, 243, 235, 0.7);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.66), transparent 25%),
    linear-gradient(180deg, rgba(4, 4, 3, 0.05), transparent 55%, rgba(4, 4, 3, 0.64));
  content: "";
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
}

.hero-visual[data-focus="right"] img {
  object-position: 67% center;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 247, 237, 0.8);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-caption::before {
  flex: 1;
  height: 1px;
  background: rgba(239, 210, 163, 0.5);
  content: "";
}

.collection-intro,
.service-list,
.detail-overview,
.official-gallery,
.related-services {
  padding-inline: clamp(24px, 6vw, 96px);
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(42px, 8vw, 125px);
  padding-top: clamp(100px, 10vw, 160px);
  padding-bottom: clamp(82px, 8vw, 130px);
  color: var(--beauty-ink);
  background: var(--beauty-cream);
}

.collection-intro h2,
.service-list-heading h2,
.detail-overview h2,
.related-heading h2 {
  margin: 18px 0 0;
  font-family: var(--beauty-serif);
  font-size: clamp(51px, 5.7vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.87;
}

.collection-intro h2 em,
.service-list-heading h2 em,
.detail-overview h2 em,
.related-heading h2 em {
  color: #9b682f;
  font-weight: 400;
}

.collection-intro .eyebrow-kicker,
.service-list .eyebrow-kicker,
.detail-overview .eyebrow-kicker,
.related-services .eyebrow-kicker {
  color: #98652f;
}

.intro-copy {
  max-width: 680px;
  align-self: end;
}

.intro-copy p {
  margin: 0;
  color: rgba(27, 23, 18, 0.7);
  font-family: var(--beauty-serif);
  font-size: clamp(21px, 1.75vw, 29px);
  line-height: 1.48;
}

.intro-copy p + p {
  margin-top: 19px;
  font-family: var(--beauty-sans);
  font-size: 13px;
  line-height: 1.8;
}

.service-list {
  padding-top: clamp(90px, 9vw, 145px);
  padding-bottom: clamp(100px, 10vw, 165px);
  background:
    radial-gradient(circle at 92% 5%, rgba(184, 132, 72, 0.16), transparent 25%),
    var(--beauty-black);
}

.service-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  max-width: 1380px;
  margin: 0 auto 65px;
}

.service-list-heading h2 {
  color: var(--beauty-cream);
}

.service-count {
  margin: 0;
  color: rgba(248, 243, 235, 0.48);
  font-family: var(--beauty-serif);
  font-size: 18px;
  font-style: italic;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  max-width: 1380px;
  min-height: 650px;
  margin: 0 auto;
  border-top: 1px solid var(--beauty-line-light);
}

.service-row:last-child {
  border-bottom: 1px solid var(--beauty-line-light);
}

.service-row:nth-child(odd) .service-media {
  order: 2;
}

.service-row:nth-child(odd) .service-copy {
  order: 1;
  padding-left: 0;
  padding-right: clamp(36px, 6vw, 95px);
}

.service-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.service-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(222, 184, 117, 0.14);
  content: "";
  pointer-events: none;
}

.service-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-row:hover .service-media img {
  transform: scale(1.025);
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 0 70px clamp(36px, 6vw, 95px);
}

.service-index {
  color: rgba(222, 184, 117, 0.48);
  font-family: var(--beauty-serif);
  font-size: 16px;
}

.service-copy h3 {
  margin: 18px 0 12px;
  color: var(--beauty-cream);
  font-family: var(--beauty-serif);
  font-size: clamp(47px, 4.8vw, 78px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.service-tagline {
  margin: 0 0 20px;
  color: var(--beauty-gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-facts {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(222, 184, 117, 0.2);
}

.service-facts span {
  color: rgba(248, 243, 235, 0.76);
  font-family: var(--beauty-serif);
  font-size: 20px;
}

.service-copy ul,
.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-copy li,
.detail-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 243, 235, 0.67);
  font-size: 12px;
  line-height: 1.65;
}

.service-copy li::before,
.detail-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--beauty-gold-light);
  content: "";
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.detail-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1fr);
  gap: clamp(48px, 8vw, 130px);
  padding-top: clamp(105px, 10vw, 165px);
  padding-bottom: clamp(90px, 9vw, 145px);
  color: var(--beauty-ink);
  background: var(--beauty-cream);
}

.detail-overview-copy {
  align-self: end;
}

.detail-overview-copy > p {
  margin: 0 0 31px;
  color: rgba(27, 23, 18, 0.68);
  font-family: var(--beauty-serif);
  font-size: clamp(21px, 1.7vw, 29px);
  line-height: 1.48;
}

.detail-overview .detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.detail-overview .detail-list li {
  color: rgba(27, 23, 18, 0.72);
}

.detail-overview .detail-list li::before {
  background: #9b682f;
}

.official-gallery {
  padding-top: clamp(95px, 9vw, 145px);
  padding-bottom: clamp(95px, 9vw, 145px);
  background:
    radial-gradient(circle at 88% 7%, rgba(184, 132, 72, 0.14), transparent 26%),
    #0b0907;
}

.official-gallery-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(42px, 8vw, 130px);
  max-width: 1380px;
  margin: 0 auto clamp(48px, 5vw, 78px);
}

.official-gallery-heading h2 {
  margin: 20px 0 0;
  color: var(--beauty-cream);
  font-family: var(--beauty-serif);
  font-size: clamp(52px, 5.6vw, 91px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.official-gallery-heading h2 em {
  color: var(--beauty-gold-light);
  font-weight: 400;
}

.official-gallery-intro {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 243, 235, 0.67);
  font-family: var(--beauty-serif);
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.5;
}

.official-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
  max-width: 1380px;
  margin: 0 auto;
}

.official-gallery-grid.is-single {
  grid-template-columns: 1fr;
}

.official-gallery-grid.is-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
}

.official-gallery-item {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: var(--beauty-charcoal);
}

.official-gallery-item.is-result {
  aspect-ratio: 4 / 5;
}

.official-gallery-item.is-portrait {
  aspect-ratio: 3 / 4;
}

.official-gallery-item.is-wide {
  aspect-ratio: 14 / 5;
}

.official-gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(239, 210, 163, 0.18);
  content: "";
  pointer-events: none;
}

.official-gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.official-gallery-item:hover img {
  transform: scale(1.025);
}

.related-services {
  padding-top: clamp(90px, 9vw, 145px);
  padding-bottom: clamp(100px, 10vw, 160px);
  color: var(--beauty-ink);
  background: var(--beauty-cream-deep);
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1380px;
  margin: 0 auto 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1380px;
  margin: 0 auto;
}

.related-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: var(--beauty-white);
  text-decoration: none;
}

.related-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.related-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 4, 3, 0.92));
  content: "";
}

.related-card:hover img,
.related-card:focus-visible img {
  transform: scale(1.035);
}

.related-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 25px;
  left: 24px;
}

.related-card span {
  color: var(--beauty-gold-light);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 8px 0 0;
  font-family: var(--beauty-serif);
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 400;
}

.beauty-cta {
  position: relative;
  display: grid;
  min-height: 610px;
  padding: 95px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 32%, rgba(187, 134, 72, 0.24), transparent 37%),
    linear-gradient(135deg, #17120e, #070605 68%);
  place-items: center;
}

.beauty-cta::before,
.beauty-cta::after {
  position: absolute;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  border: 1px solid rgba(222, 184, 117, 0.14);
  border-radius: 50%;
  content: "";
}

.beauty-cta::after {
  width: min(31vw, 430px);
  height: min(31vw, 430px);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  text-align: center;
}

.cta-content .eyebrow-kicker {
  justify-content: center;
}

.cta-content h2 {
  margin: 22px 0 22px;
  color: var(--beauty-cream);
  font-family: var(--beauty-serif);
  font-size: clamp(55px, 6.5vw, 102px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.84;
}

.cta-content h2 em {
  display: block;
  color: var(--beauty-gold-light);
  font-weight: 400;
}

.cta-content > p {
  max-width: 560px;
  margin: 0 auto 31px;
  color: rgba(248, 243, 235, 0.68);
  font-family: var(--beauty-serif);
  font-size: 21px;
  line-height: 1.5;
}

.cta-content address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 23px;
  color: rgba(248, 243, 235, 0.52);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-content address svg {
  width: 15px;
}

.site-footer {
  padding: 78px clamp(24px, 6vw, 96px) 30px;
  color: var(--beauty-white);
  background: #050504;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 0.85fr;
  gap: clamp(34px, 5vw, 80px);
  max-width: 1380px;
  margin: 0 auto;
}

.footer-brand img {
  width: 185px;
}

.footer-brand p,
.footer-connect p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(248, 243, 235, 0.55);
  font-family: var(--beauty-serif);
  font-size: 18px;
  line-height: 1.5;
}

.footer-column h2 {
  margin: 0 0 24px;
  color: var(--beauty-gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav a,
.footer-nav span {
  color: rgba(248, 243, 235, 0.64);
  font-family: var(--beauty-serif);
  font-size: 18px;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav span[aria-current="page"] {
  color: var(--beauty-gold-light);
}

.footer-nav span[aria-disabled="true"] {
  color: rgba(248, 243, 235, 0.3);
}

.footer-visit address {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(248, 243, 235, 0.61);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.footer-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  margin-top: 27px;
  padding: 14px 16px;
  border: 1px solid rgba(222, 184, 117, 0.55);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-book-link svg {
  width: 16px;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 23px;
}

.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(222, 184, 117, 0.35);
  border-radius: 50%;
  color: var(--beauty-gold-light);
  text-decoration: none;
  place-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1380px;
  margin: 66px auto 0;
  padding-top: 21px;
  border-top: 1px solid rgba(222, 184, 117, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 243, 235, 0.38);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1099px) {
  .collection-hero,
  .detail-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: var(--global-header-height, 96px);
  }

  .hero-copy {
    min-height: 640px;
    padding: 105px clamp(28px, 8vw, 80px) 78px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .collection-intro,
  .detail-overview {
    grid-template-columns: 1fr;
  }

  .service-row {
    min-height: 580px;
  }

  .official-gallery-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 760px) {
  .hero-copy {
    min-height: 545px;
    padding: 88px 24px 64px;
  }

  .hero-copy h1,
  .detail-hero .hero-copy h1 {
    font-size: clamp(59px, 19vw, 86px);
  }

  .hero-summary {
    font-size: 20px;
  }

  .hero-actions,
  .service-actions {
    width: 100%;
  }

  .hero-actions .beauty-button,
  .service-actions .beauty-button {
    flex: 1 1 170px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .collection-intro,
  .service-list,
  .detail-overview,
  .official-gallery,
  .related-services {
    padding-inline: 20px;
  }

  .service-list-heading,
  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row,
  .service-row:nth-child(odd) {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(odd) .service-media,
  .service-row:nth-child(odd) .service-copy {
    order: initial;
  }

  .service-media {
    min-height: 430px;
  }

  .service-copy,
  .service-row:nth-child(odd) .service-copy {
    padding: 48px 0 62px;
  }

  .service-copy h3 {
    font-size: 52px;
  }

  .detail-overview .detail-list {
    grid-template-columns: 1fr;
  }

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

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

  .related-card {
    min-height: 430px;
  }

  .beauty-cta {
    min-height: 560px;
  }

  .beauty-cta::before {
    width: 520px;
    height: 520px;
  }

  .beauty-cta::after {
    width: 340px;
    height: 340px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 430px) {
  body[data-page="laser-hair-removal"] .hero-copy,
  body[data-page="microneedling"] .hero-copy,
  body[data-page="tattoo-removal"] .hero-copy {
    min-width: 0;
  }

  body[data-page="microneedling"] .detail-hero .hero-copy h1 {
    font-size: clamp(50px, 15.5vw, 66px);
  }

  body[data-page="laser-hair-removal"] .hero-actions,
  body[data-page="microneedling"] .hero-actions,
  body[data-page="tattoo-removal"] .hero-actions {
    flex-direction: column;
  }

  body[data-page="laser-hair-removal"] .hero-actions .beauty-button,
  body[data-page="microneedling"] .hero-actions .beauty-button,
  body[data-page="tattoo-removal"] .hero-actions .beauty-button {
    width: 100%;
    flex: 0 0 auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-meta {
    gap: 8px;
  }

  .service-media {
    min-height: 370px;
  }

  .service-facts {
    gap: 17px;
  }

  .official-gallery-grid,
  .official-gallery-grid.is-pair {
    grid-template-columns: 1fr;
  }

  .related-card {
    min-height: 375px;
  }
}

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-media img,
  .related-card img,
  .beauty-button {
    transition: none;
  }
}
