:root {
  --ivory: #f4efe7;
  --champagne: #c9a46f;
  --champagne-light: #ebcf9f;
  --warm-black: #100e0c;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--warm-black);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ivory);
  background: var(--warm-black);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--warm-black);
  background: var(--champagne-light);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.home-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 58px);
  min-height: var(--header-height);
  padding: 10px clamp(28px, 3.1vw, 62px);
  border-bottom: 1px solid rgba(235, 207, 159, 0.18);
  background: rgba(8, 7, 6, 0.42);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  backdrop-filter: blur(16px) saturate(1.18);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 88px;
  background: rgba(8, 7, 6, 0.78);
  border-color: rgba(201, 164, 111, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.9vw, 34px);
}

.primary-nav .nav-item {
  position: relative;
  padding: 12px 0;
  color: rgba(244, 239, 231, 0.86);
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

.primary-nav a.nav-item {
  text-decoration: none;
  cursor: pointer;
}

.primary-nav a.nav-item:hover,
.primary-nav a.nav-item:focus-visible {
  color: var(--champagne-light);
}

.primary-nav a.nav-item:hover::after,
.primary-nav a.nav-item:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav .nav-item::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
}

.primary-nav .nav-item.is-active {
  color: var(--champagne-light);
}

.primary-nav .nav-item.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer !important;
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(201, 164, 111, 0.34);
  background: rgba(8, 7, 6, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 15px;
  color: rgba(244, 239, 231, 0.82);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--champagne-light);
  background: rgba(201, 164, 111, 0.1);
}

.header-actions,
.social-links,
.login-link {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 18px;
}

.social-links {
  gap: 7px;
}

.social-links a,
.mobile-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  color: rgba(235, 207, 159, 0.86);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible,
.mobile-socials a:hover,
.mobile-socials a:focus-visible {
  color: var(--ivory);
  transform: translateY(-2px);
}

.login-link {
  gap: 8px;
  min-height: 38px;
  padding-left: 18px;
  border-left: 1px solid rgba(201, 164, 111, 0.32);
  color: var(--champagne-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: default;
  user-select: none;
}

.login-link svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px 8px;
  border: 0;
  color: var(--champagne-light);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 31px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.reveal-item {
  --reveal-blur: 7px;
  --reveal-delay: 0ms;
  --reveal-duration: 920ms;
  --reveal-scale: 1;
  --reveal-x: 0px;
  --reveal-y: 38px;
}

html.motion-ready .reveal-item {
  opacity: 0;
  filter: blur(var(--reveal-blur));
  scale: var(--reveal-scale);
  translate: var(--reveal-x) var(--reveal-y);
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    filter var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    scale var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    translate var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay),
    rotate var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
  will-change: opacity, filter, scale, translate;
}

html.motion-ready .reveal-item.is-revealed {
  opacity: 1;
  filter: blur(0);
  scale: 1;
  translate: 0 0;
}

html.motion-ready .reveal-item[data-reveal-effect="left"] {
  --reveal-x: -54px;
  --reveal-y: 0px;
}

html.motion-ready .reveal-item[data-reveal-effect="right"] {
  --reveal-x: 54px;
  --reveal-y: 0px;
}

html.motion-ready .reveal-item[data-reveal-effect="down"] {
  --reveal-y: -28px;
}

html.motion-ready .reveal-item[data-reveal-effect="scale"] {
  --reveal-blur: 4px;
  --reveal-scale: 0.78;
  --reveal-y: 0px;
  rotate: -7deg;
}

html.motion-ready .reveal-item[data-reveal-effect="scale"].is-revealed {
  rotate: 0deg;
}

html.motion-ready .reveal-item[data-reveal-effect="image"] {
  --reveal-blur: 4px;
  --reveal-scale: 1.045;
  --reveal-x: 42px;
  --reveal-y: 0px;
}

html.motion-ready .reveal-item[data-reveal-effect="line"] {
  --reveal-blur: 0px;
  --reveal-scale: 0.08 1;
  --reveal-y: 0px;
  transform-origin: left center;
}

html.motion-ready .reveal-item[data-reveal-effect="text"] {
  --reveal-blur: 3px;
  --reveal-y: 0.82em;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="left"] {
  --reveal-x: 54px;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="right"] {
  --reveal-x: -54px;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="up"] {
  --reveal-y: -38px;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="down"] {
  --reveal-y: 28px;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="scale"] {
  rotate: 7deg;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="image"] {
  --reveal-x: -42px;
}

html.motion-ready .reveal-item[data-reveal-direction="up"][data-reveal-effect="text"] {
  --reveal-y: -0.82em;
}

html.motion-ready .personalized-badge.is-revealed {
  animation: reveal-float 5s ease-in-out 1.7s infinite;
}

html.motion-ready .hero-divider.is-revealed span,
html.motion-ready .about-cta.is-revealed .about-cta-sparkle {
  animation: reveal-sparkle 2.8s ease-in-out 1.1s infinite;
}

@keyframes reveal-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes reveal-sparkle {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.86) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.16) rotate(90deg);
  }
}

.mobile-nav {
  display: none;
}

.mobile-nav-close {
  position: absolute;
  top: 26px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(235, 207, 159, 0.35);
  border-radius: 50%;
  color: var(--champagne-light);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.mobile-nav-close span {
  margin-top: -4px;
  font-family: Arial, sans-serif;
  font-size: 39px;
  font-weight: 200;
  line-height: 1;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
  color: var(--warm-black);
  background: var(--champagne-light);
  outline: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(720px, min(100svh, calc(100vw * 941 / 1672)));
  overflow: hidden;
  background: url("../images/hero/background-desktop-clean.png") center top / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 5, 0.16) 0%, transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(37vw, 650px);
  margin-left: clamp(54px, 6.2vw, 104px);
  padding-top: clamp(188px, 20.6vh, 226px);
  padding-bottom: 62px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  color: var(--champagne);
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 500;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  width: clamp(30px, 2.6vw, 44px);
  height: 1px;
  background: var(--champagne);
  content: "";
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(76px, 6.45vw, 108px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.83;
}

.hero h1 span {
  color: var(--ivory);
}

.hero h1 em {
  margin-top: 12px;
  color: var(--champagne);
  font-style: italic;
  font-weight: 400;
}

.hero-divider {
  display: flex;
  align-items: center;
  width: min(100%, 335px);
  margin: clamp(32px, 4vh, 46px) 0 28px;
}

.hero-divider::before,
.hero-divider::after {
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), rgba(201, 164, 111, 0.2));
  content: "";
  flex: 1;
}

.hero-divider::before {
  background: linear-gradient(90deg, rgba(201, 164, 111, 0.2), var(--champagne));
}

.hero-divider span {
  width: 12px;
  height: 12px;
  margin: 0 12px;
  background: var(--champagne-light);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.hero-description {
  max-width: 505px;
  margin: 0;
  color: rgba(244, 239, 231, 0.79);
  font-size: clamp(13px, 1.03vw, 17px);
  font-weight: 400;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: clamp(28px, 4.5vh, 48px);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 70px;
  padding: 0 clamp(24px, 2.2vw, 40px);
  border: 1px solid var(--champagne);
  color: var(--champagne-light);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.hero-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
  transition: transform 200ms ease;
}

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

.hero-button.is-disabled {
  opacity: 0.56;
  pointer-events: none;
  cursor: default;
}

.hero-button .arrow {
  font-size: 20px;
  line-height: 1;
}

.hero-button:hover svg,
.hero-button:focus-visible svg {
  transform: translateX(4px);
}

.hero-button-primary {
  color: #17120c;
  border-color: var(--champagne-light);
  background: linear-gradient(115deg, #d6b47f 0%, #efd4a6 48%, #ba8f57 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  background: linear-gradient(115deg, #e0c18f 0%, #f3ddb8 48%, #c69b64 100%);
}

.hero-button-secondary {
  background: rgba(12, 10, 8, 0.26);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  color: #17120c;
  background: var(--champagne-light);
}

.hero-features {
  display: flex;
  align-items: stretch;
  margin-top: clamp(42px, 7vh, 76px);
}

.feature-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 155px;
  padding: 0 30px;
  color: var(--champagne);
  text-align: center;
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item + .feature-item {
  border-left: 1px solid rgba(201, 164, 111, 0.24);
}

.feature-item svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.2;
}

.feature-item i {
  font-size: 27px;
}

.feature-item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-trust {
  display: none;
}

.personalized-badge {
  position: absolute;
  right: 3.5vw;
  bottom: 5.4vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(201, 164, 111, 0.56);
  border-radius: 50%;
  color: var(--champagne-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.personalized-badge svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.3;
}

.about-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1448 / 1086;
  overflow: hidden;
  background: #080909 url("../images/about/background-desktop-clean.png") center top / 100% 100% no-repeat;
}

.about-pill,
.about-wall-brand {
  display: none;
}

.about-portrait {
  position: absolute;
  z-index: 1;
  top: 14.088%;
  left: 52.624%;
  width: 30.733%;
  height: 59.024%;
  border: 1px solid rgba(200, 154, 92, 0.78);
  border-radius: 1.45vw;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  position: absolute;
  z-index: 2;
  top: 11.878%;
  left: 7.804%;
  width: 39.365%;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.86vw;
  margin: 0;
  color: #c89a5c;
  font-size: clamp(8px, 0.83vw, 12px);
  font-weight: 500;
  letter-spacing: 0.27em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-eyebrow::before {
  width: 2.831vw;
  height: 1px;
  background: #c89a5c;
  content: "";
  flex: 0 0 auto;
}

.about-copy h2 {
  display: flex;
  flex-direction: column;
  margin: 3.64vw 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.56vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.about-copy h2 span:first-child {
  color: #e9e2d9;
}

.about-copy h2 span:last-child,
.about-copy h2 em {
  color: #c89a5c;
}

.about-copy h2 em {
  font-style: normal;
  font-weight: 400;
}

.about-divider {
  width: 2.831vw;
  height: 1px;
  margin-top: 3.32vw;
  background: #c89a5c;
}

.about-description {
  width: 89.5%;
  margin: 2.7vw 0 0;
  color: #c9c2ba;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(12px, 1.28vw, 18.5px);
  font-weight: 400;
  line-height: 1.78;
}

.about-location {
  position: absolute;
  z-index: 3;
  top: 63.628%;
  left: 7.804%;
  display: flex;
  align-items: center;
  width: 32.044%;
  height: 11.602%;
  border: 1px solid rgba(200, 154, 92, 0.56);
  border-radius: clamp(8px, 0.75vw, 12px);
  background: linear-gradient(112deg, rgba(30, 28, 25, 0.66), rgba(8, 9, 9, 0.55));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.about-location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14.66%;
  aspect-ratio: 1;
  margin-left: 4.74%;
  border: 1px solid rgba(200, 154, 92, 0.58);
  border-radius: 50%;
  flex: 0 0 auto;
}

.about-location-icon img {
  width: 47%;
  height: 47%;
}

.about-location-divider {
  width: 1px;
  height: 55.5%;
  margin: 0 5.4%;
  background: rgba(200, 154, 92, 0.45);
  flex: 0 0 auto;
}

.about-location address {
  min-width: 0;
  color: #c9c2ba;
  font-size: clamp(10px, 1.18vw, 17px);
  font-style: normal;
  line-height: 1.75;
}

.about-location address span {
  display: block;
  white-space: nowrap;
}

.about-location address span:first-child {
  color: #c89a5c;
}

.about-cta {
  position: absolute;
  z-index: 3;
  top: 78.913%;
  left: 7.804%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 26.727%;
  height: 7.459%;
  padding: 0 3.1%;
  border: 1px solid rgba(233, 194, 139, 0.88);
  border-radius: clamp(5px, 0.5vw, 8px);
  color: #fff7ea;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 240, 201, 0.34), transparent 55%),
    linear-gradient(105deg, #9b7448 0%, #d3ad77 23%, #a77e4e 62%, #d9b47f 100%);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: clamp(9px, 1.03vw, 15px);
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  cursor: default;
  user-select: none;
}

a.about-cta {
  text-decoration: none;
  cursor: pointer;
}

.about-cta svg {
  width: 7.5%;
  height: auto;
  stroke-width: 1.5;
}

.about-cta-sparkle {
  display: none;
}

.about-features {
  position: absolute;
  z-index: 3;
  top: 77.072%;
  left: 49.724%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 44.544%;
  height: 9.116%;
}

.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
  min-width: 0;
  color: #c89a5c;
  text-align: center;
}

.about-feature + .about-feature {
  border-left: 1px solid rgba(200, 154, 92, 0.32);
}

.about-feature img {
  width: clamp(30px, 3.8vw, 55px);
  height: clamp(30px, 3.8vw, 55px);
}

.about-feature span {
  font-size: clamp(7px, 0.76vw, 11px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1491 / 1055;
  overflow: hidden;
  color: #e9dfd2;
  background: #090a09;
}

.services-background,
.services-background img,
.services-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-background {
  z-index: 0;
}

.services-art {
  z-index: 1;
  pointer-events: none;
}

.services-art-mobile {
  display: none;
}

.services-background img {
  object-fit: fill;
}

.services-layer {
  position: absolute;
  z-index: var(--layer-z);
  top: var(--layer-y);
  left: var(--layer-x);
  width: var(--layer-w);
  height: var(--layer-h);
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.services-kicker,
.services-title,
.services-intro,
.services-card-title,
.services-card-copy,
.services-card-cta {
  position: absolute;
  z-index: 3;
  margin: 0;
}

.services-kicker {
  top: 9.858%;
  left: 11.469%;
  width: 8.719%;
  color: #e2b976;
  font-size: 0.872vw;
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-title {
  top: 14.313%;
  left: 8.249%;
  width: 36.754%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.292vw;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.services-title span {
  display: block;
  white-space: nowrap;
}

.services-title em {
  color: #e2b976;
  font-style: normal;
  font-weight: 400;
}

.services-intro {
  top: 36.682%;
  left: 8.317%;
  width: 33.87%;
  color: #aaa39a;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.341vw;
  line-height: 1.55;
}

.services-card {
  display: contents;
}

.services-card-title {
  color: #e9dfd2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.884vw;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
  white-space: nowrap;
}

.services-card-copy {
  color: #aaa39a;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.341vw;
  line-height: 1.5;
}

.services-card-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.7vw;
  color: #f2e8d9;
  font-size: 1.073vw;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.services-card-cta span {
  display: block;
  width: 88%;
  text-align: center;
  white-space: nowrap;
}

.services-card-cta:hover,
.services-card-cta:focus-visible {
  background: rgba(226, 185, 118, 0.1);
  box-shadow: inset 0 0 0 1px rgba(226, 185, 118, 0.78), 0 10px 24px rgba(0, 0, 0, 0.22);
  outline: 0;
}

.services-card-laser .services-card-title {
  top: 19.147%;
  left: 53.655%;
  width: 24.95%;
}

.services-card-laser .services-card-copy {
  top: 28.152%;
  left: 53.655%;
  width: 21.462%;
}

.services-card-laser .services-card-cta {
  top: 41.517%;
  left: 53.655%;
  width: 15.292%;
  height: 5.403%;
}

.services-card-eyebrows .services-card-title {
  top: 56.872%;
  left: 26.761%;
  width: 15.56%;
}

.services-card-eyebrows .services-card-copy {
  top: 65.592%;
  left: 26.828%;
  width: 19.45%;
}

.services-card-eyebrows .services-card-cta {
  top: 81.137%;
  left: 26.828%;
  width: 15.694%;
  height: 5.498%;
}

.services-card-microneedling .services-card-title {
  top: 63.412%;
  left: 53.655%;
  width: 19.852%;
}

.services-card-microneedling .services-card-copy {
  top: 72.512%;
  left: 53.655%;
  width: 20.121%;
}

.services-card-microneedling .services-card-cta {
  top: 84.645%;
  left: 53.655%;
  width: 14.755%;
  height: 5.024%;
}

.payment-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1491 / 1055;
  overflow: hidden;
  color: #f2f0ec;
  background: #090909;
}

.payment-background,
.payment-background img,
.payment-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.payment-background {
  z-index: 0;
}

.payment-background img {
  display: block;
  object-fit: fill;
}

.payment-art {
  z-index: 1;
  pointer-events: none;
}

.payment-art-mobile,
.payment-mobile-plans {
  display: none;
}

.payment-layer {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
}

.payment-desktop-rear-card {
  top: 13.365%;
  left: 67.673%;
  width: 25.822%;
}

.payment-desktop-flower {
  top: 17.156%;
  left: 85.044%;
  width: 4.829%;
}

.payment-desktop-halo {
  top: 66.256%;
  left: 80.885%;
  width: 14.755%;
}

.payment-desktop-disc {
  top: 70.427%;
  left: 83.434%;
  width: 8.853%;
}

.payment-form-panel {
  top: 26.351%;
  left: 52.716%;
  width: 29.846%;
}

.payment-desktop-row {
  left: 54.661%;
  width: 25.822%;
}

.payment-desktop-row-one {
  top: 34.882%;
}

.payment-desktop-row-two {
  top: 47.583%;
}

.payment-desktop-row-three {
  top: 59.431%;
}

.payment-desktop-radio {
  left: 56.07%;
  width: 2.817%;
}

.payment-desktop-radio-one {
  top: 37.725%;
}

.payment-desktop-radio-two {
  top: 49.289%;
}

.payment-desktop-radio-three {
  top: 61.137%;
}

.payment-desktop-apr {
  left: 74.313%;
  width: 4.829%;
}

.payment-desktop-apr-one {
  top: 36.967%;
}

.payment-desktop-apr-two {
  top: 49.384%;
}

.payment-desktop-apr-three {
  top: 61.232%;
}

.payment-desktop-panel-divider {
  top: 72.038%;
  left: 54.661%;
  width: 25.755%;
}

.payment-desktop-footer-shield {
  top: 74.502%;
  left: 54.661%;
  width: 3.487%;
}

.payment-desktop-mark {
  top: 13.555%;
  left: 7.176%;
  width: 2.146%;
}

.payment-headline-divider-desktop {
  top: 41.043%;
  left: 7.176%;
  width: 5.298%;
}

.payment-desktop-benefit-icon {
  top: 61.232%;
  width: 3.085%;
}

.payment-desktop-clock {
  left: 7.109%;
}

.payment-desktop-benefit-shield {
  left: 18.981%;
}

.payment-desktop-percent {
  left: 32.529%;
}

.payment-desktop-benefit-separator {
  top: 61.232%;
  width: 0.134%;
}

.payment-desktop-benefit-separator-one {
  left: 17.505%;
}

.payment-desktop-benefit-separator-two {
  left: 30.986%;
}

.payment-cta-button-desktop {
  top: 71.754%;
  left: 7.243%;
  width: 27.029%;
}

.payment-cta-arrow-desktop {
  top: 73.839%;
  left: 29.846%;
  width: 1.878%;
}

.payment-eyebrow,
.payment-title,
.payment-description,
.payment-benefit,
.payment-form-heading,
.payment-desktop-plan,
.payment-apr-copy,
.payment-form-footer,
.payment-rear-brand,
.payment-popular,
.payment-mobile-plan,
.payment-cta,
.payment-fineprint {
  position: absolute;
  z-index: 3;
  margin: 0;
}

.payment-eyebrow {
  top: 13.744%;
  left: 10.798%;
  width: 23.139%;
  color: #c69a5b;
  font-size: 1.073vw;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-title {
  top: 20.664%;
  left: 7.109%;
  display: flex;
  flex-direction: column;
  gap: 1.81vw;
  width: 39.571%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.963vw;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.payment-title span:first-child {
  color: #f2f0ec;
}

.payment-title span:last-child {
  color: #cba16b;
}

.payment-description {
  top: 45.498%;
  left: 7.176%;
  color: #c8c5c2;
  font-size: 1.475vw;
  font-weight: 400;
  line-height: 1.9;
  white-space: nowrap;
}

.payment-description span {
  color: #cba16b;
}

.payment-benefit {
  top: 61.801%;
  color: #e3deda;
  font-size: 1.14vw;
  line-height: 1.25;
}

.payment-benefit-one {
  left: 11.133%;
  width: 5.5%;
}

.payment-benefit-two {
  left: 22.871%;
  width: 7.244%;
}

.payment-benefit-three {
  left: 36.419%;
  width: 8.853%;
}

.payment-benefit-mobile-copy {
  display: none;
}

.payment-form-heading {
  top: 30.616%;
  left: 55.869%;
  width: 18.243%;
  color: #d1c7bb;
  font-size: 0.872vw;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-desktop-plan {
  left: 60.161%;
  display: flex;
  flex-direction: column;
  width: 13.816%;
}

.payment-desktop-plan-one {
  top: 37.251%;
  color: #d6b079;
}

.payment-desktop-plan-two {
  top: 49.479%;
  color: #bda88d;
}

.payment-desktop-plan-three {
  top: 61.422%;
  color: #bda88d;
}

.payment-desktop-plan .payment-plan-months {
  font-size: 1.073vw;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.payment-desktop-plan .payment-plan-price {
  margin-top: 0.48vw;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.884vw;
  font-weight: 400;
  line-height: 0.9;
}

.payment-desktop-plan .payment-plan-price small {
  margin-left: 0.15em;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.4em;
  font-weight: 400;
}

.payment-apr-copy {
  left: 74.916%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.622%;
  color: #ae9b83;
  text-align: center;
}

.payment-apr-copy-one {
  top: 37.725%;
  color: #e4c394;
}

.payment-apr-copy-two {
  top: 50.142%;
}

.payment-apr-copy-three {
  top: 61.991%;
}

.payment-apr-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.213vw;
  font-weight: 400;
  line-height: 0.82;
}

.payment-apr-copy small {
  margin-top: 0.3vw;
  font-size: 0.805vw;
  letter-spacing: 0.1em;
  line-height: 1;
}

.payment-form-footer {
  top: 75.166%;
  left: 59.356%;
  display: flex;
  flex-direction: column;
  width: 16.767%;
  color: #bdb6ad;
  font-size: 0.939vw;
  line-height: 1.35;
}

.payment-form-footer strong {
  font-size: 0.872vw;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-form-footer span {
  margin-top: 0.26vw;
}

.payment-rear-brand {
  top: 24.645%;
  left: 84.373%;
  width: 7.378%;
  color: #a9865b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.274vw;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.payment-cta {
  top: 73.839%;
  left: 10.597%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.572%;
  height: 2.938%;
  color: #f7f2e9;
  font-size: 1.073vw;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.payment-cta:hover,
.payment-cta:focus-visible {
  color: #f2d39a;
  transform: translateY(-2px);
}

.payment-fineprint {
  top: 81.422%;
  left: 7.176%;
  width: 27.498%;
  color: #8c8986;
  font-size: 1.073vw;
  line-height: 1.2;
  white-space: nowrap;
}

.reviews-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 7.2vw, 138px) clamp(32px, 6vw, 112px) clamp(82px, 6.2vw, 118px);
  border-top: 1px solid rgba(201, 164, 111, 0.22);
  color: #f4efe8;
  background:
    radial-gradient(circle at 5% 5%, rgba(190, 146, 86, 0.22), transparent 25%),
    radial-gradient(circle at 49% 83%, rgba(201, 164, 111, 0.08), transparent 20%),
    linear-gradient(120deg, #0b0a08 0%, #11100d 46%, #0b0a08 100%);
}

.reviews-section::before,
.reviews-section::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(201, 164, 111, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.reviews-section::before {
  top: -43vw;
  right: -20vw;
  width: 62vw;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 13px rgba(201, 164, 111, 0.032),
    0 0 0 27px rgba(201, 164, 111, 0.027),
    0 0 0 41px rgba(201, 164, 111, 0.022),
    0 0 0 55px rgba(201, 164, 111, 0.017);
}

.reviews-section::after {
  bottom: -43vw;
  left: -35vw;
  width: 68vw;
  aspect-ratio: 1;
  border-color: rgba(221, 180, 112, 0.42);
  background: radial-gradient(circle at 67% 28%, rgba(190, 146, 86, 0.25), rgba(97, 70, 37, 0.08) 42%, transparent 63%);
  box-shadow:
    0 0 0 2px rgba(201, 164, 111, 0.07),
    inset 0 0 80px rgba(214, 172, 104, 0.09);
}

.reviews-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1460px);
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
}

.reviews-sparkle {
  display: block;
  margin-bottom: 26px;
  color: #d5a55d;
  font-size: clamp(19px, 1.5vw, 27px);
  line-height: 1;
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 54px);
  margin: 0 0 25px;
  color: #d2a15b;
  font-size: clamp(11px, 1vw, 18px);
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.reviews-eyebrow::before,
.reviews-eyebrow::after {
  width: clamp(70px, 9.5vw, 164px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 161, 91, 0.84));
  content: "";
}

.reviews-eyebrow::after {
  background: linear-gradient(90deg, rgba(210, 161, 91, 0.84), transparent);
}

.reviews-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 5.45vw, 104px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.reviews-title span,
.reviews-title em {
  font-weight: inherit;
}

.reviews-title em {
  color: #c99b59;
}

.reviews-intro {
  margin: clamp(25px, 2.1vw, 39px) 0 0;
  color: rgba(235, 230, 223, 0.72);
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.75;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 30px);
  margin-top: clamp(46px, 4vw, 72px);
}

.reviews-track:focus-visible {
  outline: 1px solid #d8b271;
  outline-offset: 8px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: clamp(282px, 20vw, 348px);
  flex-direction: column;
  padding: clamp(31px, 2.6vw, 46px) clamp(28px, 2.35vw, 42px) clamp(27px, 2.2vw, 39px);
  overflow: hidden;
  border: 1px solid rgba(194, 141, 64, 0.64);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 8%, rgba(201, 164, 111, 0.08), transparent 35%),
    linear-gradient(145deg, rgba(24, 22, 18, 0.92), rgba(8, 8, 7, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 238, 204, 0.035);
}

.review-stars {
  color: #d8a55b;
  font-size: clamp(20px, 1.55vw, 28px);
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-quote-mark {
  position: absolute;
  top: 8px;
  right: clamp(21px, 2.2vw, 39px);
  color: rgba(201, 164, 111, 0.12);
  font-family: Georgia, serif;
  font-size: clamp(86px, 7.3vw, 134px);
  font-weight: 700;
  line-height: 1;
}

.review-card blockquote {
  position: relative;
  margin: clamp(24px, 2.05vw, 35px) 0 0;
  padding-left: 31px;
  color: rgba(244, 239, 232, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.28vw, 23px);
  font-style: italic;
  line-height: 1.42;
}

.review-card blockquote::before {
  position: absolute;
  top: -7px;
  left: 0;
  color: rgba(207, 164, 98, 0.42);
  content: "“";
  font-size: 50px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}

.review-card blockquote p {
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 26px;
}

.review-avatar {
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(217, 174, 109, 0.44);
  border-radius: 50%;
  place-items: center;
  flex: 0 0 auto;
  color: #e0b876;
  background:
    radial-gradient(circle at 35% 28%, rgba(229, 196, 144, 0.24), transparent 28%),
    linear-gradient(145deg, #403421, #15120e 72%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  letter-spacing: 0.08em;
}

.review-person {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-person strong {
  color: #d8a55d;
  font-size: clamp(12px, 0.93vw, 16px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.review-person small {
  margin-top: 8px;
  color: rgba(236, 230, 222, 0.7);
  font-size: clamp(11px, 0.8vw, 14px);
  line-height: 1.2;
}

.reviews-scroll-hint {
  display: none;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  width: min(100%, 370px);
  min-height: 60px;
  margin: clamp(35px, 3vw, 54px) auto 0;
  border: 1px solid #c99b59;
  color: #d9aa62;
  background: rgba(7, 7, 6, 0.38);
  box-shadow: 0 18px 30px -28px rgba(241, 197, 119, 0.85);
  font-size: clamp(11px, 0.87vw, 15px);
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  cursor: default;
  user-select: none;
}

.reviews-cta > span:first-child {
  font-size: 19px;
}

.instagram-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 8.2vw, 156px) clamp(32px, 6vw, 112px) clamp(112px, 9.2vw, 176px);
  border-top: 1px solid rgba(201, 164, 111, 0.22);
  color: #f2eee8;
  background:
    radial-gradient(circle at 10% 4%, rgba(177, 125, 66, 0.22), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(201, 164, 111, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(7, 6, 5, 0.96), rgba(16, 13, 10, 0.9)),
    url("../images/payment-options/backgrounds/background-desktop-clean.png") center / cover no-repeat;
}

.instagram-section::before {
  position: absolute;
  z-index: -1;
  top: -26vw;
  right: -19vw;
  width: 53vw;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 164, 111, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7vw rgba(201, 164, 111, 0.018);
  content: "";
}

.instagram-section::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 7%;
  width: 33%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a46f 42%, transparent);
  content: "";
}

.instagram-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.instagram-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(44px, 6vw, 110px);
  margin-bottom: clamp(48px, 5vw, 82px);
}

.instagram-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: #c9a46f;
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-transform: uppercase;
}

.instagram-eyebrow::after {
  width: clamp(46px, 6vw, 92px);
  height: 1px;
  background: linear-gradient(90deg, #c9a46f, transparent);
  content: "";
}

.instagram-eyebrow i {
  font-size: 1.45em;
}

.instagram-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 6.25vw, 112px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.83;
}

.instagram-title span,
.instagram-title em {
  display: block;
}

.instagram-title em {
  margin-left: 0.72em;
  color: #cba16b;
  font-weight: 400;
}

.instagram-intro-wrap {
  padding-bottom: 4px;
}

.instagram-intro {
  max-width: 490px;
  margin: 0;
  color: rgba(225, 218, 209, 0.72);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.9;
}

.instagram-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: min(100%, 320px);
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid rgba(201, 164, 111, 0.68);
  color: #f3eee6;
  background: rgba(15, 12, 9, 0.42);
  font-size: clamp(10px, 0.76vw, 13px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.instagram-profile-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  transition: translate 240ms ease;
}

.instagram-profile-link:hover,
.instagram-profile-link:focus-visible {
  border-color: #d9b980;
  color: #0c0a08;
  background: #c9a46f;
}

.instagram-profile-link:hover svg,
.instagram-profile-link:focus-visible svg {
  translate: 3px -3px;
}

.instagram-profile-link:focus-visible,
.instagram-post:focus-visible {
  outline: 2px solid #ebcf9f;
  outline-offset: 4px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 20px);
}

.instagram-post {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 111, 0.25);
  color: #f4efe7;
  background: #110e0b;
  text-decoration: none;
}

.instagram-post::before {
  position: absolute;
  z-index: 2;
  inset: 8px;
  border: 1px solid rgba(235, 207, 159, 0.18);
  pointer-events: none;
  content: "";
  transition: border-color 300ms ease, inset 300ms ease;
}

.instagram-post::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 5, 4, 0.84) 100%);
  pointer-events: none;
  content: "";
  opacity: 0.42;
  transition: opacity 340ms ease;
}

.instagram-post > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 800ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 500ms ease;
}

.instagram-post-portrait > img {
  object-position: 50% 18%;
}

.instagram-post-hero > img {
  object-position: 50% 28%;
}

.instagram-post-laser > img,
.instagram-post-brows > img,
.instagram-post-microneedling > img {
  object-position: center;
}

.instagram-post-brand {
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 164, 111, 0.2), transparent 38%),
    linear-gradient(rgba(8, 7, 6, 0.78), rgba(8, 7, 6, 0.9)),
    url("../images/payment-options/backgrounds/background-desktop-clean.png") center / cover no-repeat;
}

.instagram-brand-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12%;
  text-align: center;
}

.instagram-brand-card img {
  width: 44%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.38));
}

.instagram-brand-card > span {
  margin-top: 4%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(21px, 2.05vw, 36px);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.instagram-brand-card small {
  margin-top: 5%;
  color: #c9a46f;
  font-size: clamp(7px, 0.68vw, 11px);
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
}

.instagram-post-overlay {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f5efe7;
  font-size: clamp(8px, 0.7vw, 12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  translate: 0 10px;
  transition: opacity 300ms ease, translate 300ms ease;
}

.instagram-post-overlay i {
  color: #d6ad72;
  font-size: 1.65em;
}

.instagram-post:hover::before,
.instagram-post:focus-visible::before {
  inset: 12px;
  border-color: rgba(235, 207, 159, 0.52);
}

.instagram-post:hover::after,
.instagram-post:focus-visible::after {
  opacity: 0.82;
}

.instagram-post:hover > img,
.instagram-post:focus-visible > img {
  filter: saturate(1.05) contrast(1.03);
  scale: 1.045;
}

.instagram-post:hover .instagram-post-overlay,
.instagram-post:focus-visible .instagram-post-overlay {
  opacity: 1;
  translate: 0 0;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 7vw, 124px) clamp(32px, 6vw, 112px) clamp(28px, 2.5vw, 44px);
  border-top: 1px solid rgba(201, 164, 111, 0.32);
  color: #eee7de;
  background:
    radial-gradient(circle at 8% 2%, rgba(190, 137, 70, 0.2), transparent 28%),
    radial-gradient(circle at 92% 105%, rgba(201, 164, 111, 0.11), transparent 30%),
    linear-gradient(145deg, #090806, #11100d 52%, #080706);
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  top: -28vw;
  right: -18vw;
  width: 47vw;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 164, 111, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6vw rgba(201, 164, 111, 0.014);
  content: "";
}

.site-footer::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(72%, 1040px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 185, 119, 0.82), transparent);
  content: "";
  translate: -50% 0;
}

.footer-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.28fr) minmax(130px, 0.62fr) minmax(250px, 1fr) minmax(210px, 0.82fr);
  gap: clamp(34px, 4.2vw, 76px);
}

.footer-brand {
  padding-right: clamp(10px, 2vw, 34px);
}

.footer-home-link {
  display: inline-block;
  width: min(100%, 245px);
  text-decoration: none;
}

.footer-home-link:focus-visible,
.footer-nav a:focus-visible,
.footer-book-link:focus-visible,
.footer-socials a:focus-visible {
  outline: 2px solid #ebcf9f;
  outline-offset: 4px;
}

.footer-home-link img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.36));
}

.footer-brand p {
  max-width: 330px;
  margin: 25px 0 0;
  color: rgba(231, 224, 215, 0.68);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.48vw, 25px);
  line-height: 1.45;
}

.footer-column h2 {
  margin: 5px 0 28px;
  color: #d2a766;
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 500;
  letter-spacing: 0.27em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav {
  align-items: flex-start;
}

.footer-nav a,
.footer-nav span {
  display: block;
  width: fit-content;
  color: rgba(241, 235, 227, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.2;
}

.footer-nav a {
  text-decoration: none;
  transition: color 220ms ease, translate 220ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #e0b979;
  translate: 4px 0;
}

.footer-nav span {
  margin-top: 16px;
  color: rgba(241, 235, 227, 0.42);
  cursor: default;
  user-select: none;
}

.footer-visit address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(236, 229, 220, 0.74);
  font-size: clamp(12px, 0.9vw, 15px);
  font-style: normal;
  line-height: 1.65;
}

.footer-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: min(100%, 245px);
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px solid rgba(201, 164, 111, 0.7);
  color: #eee6da;
  background: rgba(201, 164, 111, 0.04);
  font-size: clamp(9px, 0.68vw, 12px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.footer-book-link svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
  transition: translate 220ms ease;
}

.footer-book-link:hover,
.footer-book-link:focus-visible {
  border-color: #ddb778;
  color: #0b0907;
  background: #cda76b;
}

.footer-book-link:hover svg,
.footer-book-link:focus-visible svg {
  translate: 3px -3px;
}

.footer-connect p {
  max-width: 240px;
  margin: 0;
  color: rgba(236, 229, 220, 0.64);
  font-size: clamp(12px, 0.88vw, 15px);
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.footer-socials a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 164, 111, 0.42);
  border-radius: 50%;
  color: #d8b171;
  background: rgba(255, 255, 255, 0.015);
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, translate 220ms ease;
  place-items: center;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: #d9b77e;
  color: #0b0907;
  background: #cda76b;
  translate: 0 -3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(58px, 6vw, 94px);
  padding-top: 24px;
  border-top: 1px solid rgba(201, 164, 111, 0.22);
}

.footer-bottom p {
  margin: 0;
  color: rgba(226, 219, 210, 0.48);
  font-size: clamp(9px, 0.67vw, 12px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 899px) {
  .reviews-section {
    padding: clamp(70px, 16vw, 104px) 0 clamp(68px, 14vw, 96px);
    background:
      radial-gradient(circle at 8% 3%, rgba(190, 146, 86, 0.2), transparent 24%),
      linear-gradient(150deg, #0b0a08, #11100d 52%, #090807);
  }

  .reviews-section::before {
    top: -58vw;
    right: -47vw;
    width: 112vw;
  }

  .reviews-section::after {
    bottom: -62vw;
    left: -70vw;
    width: 132vw;
  }

  .reviews-header {
    padding-inline: clamp(20px, 5.8vw, 44px);
  }

  .reviews-sparkle {
    margin-bottom: 21px;
  }

  .reviews-eyebrow {
    gap: clamp(13px, 4vw, 28px);
    margin-bottom: 22px;
    font-size: clamp(9px, 2.65vw, 13px);
    letter-spacing: 0.24em;
  }

  .reviews-eyebrow::before,
  .reviews-eyebrow::after {
    width: clamp(44px, 14vw, 88px);
  }

  .reviews-title {
    font-size: clamp(42px, 11.4vw, 70px);
    line-height: 0.91;
  }

  .reviews-title > span {
    white-space: nowrap;
  }

  .reviews-intro {
    max-width: 560px;
    margin: 25px auto 0;
    font-size: clamp(11px, 3.05vw, 15px);
    line-height: 1.72;
  }

  .reviews-intro br {
    display: none;
  }

  .reviews-track {
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 420px);
    grid-auto-flow: column;
    gap: clamp(14px, 4vw, 24px);
    margin-top: clamp(38px, 10vw, 58px);
    padding: 2px clamp(20px, 5.8vw, 44px) 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: clamp(20px, 5.8vw, 44px);
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(201, 164, 111, 0.58) rgba(255, 255, 255, 0.06);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .review-card {
    min-height: clamp(306px, 80vw, 374px);
    padding: clamp(29px, 7vw, 39px) clamp(24px, 6.2vw, 35px) clamp(25px, 6vw, 33px);
    border-radius: 15px;
    scroll-snap-align: start;
  }

  .review-stars {
    font-size: clamp(19px, 5.5vw, 27px);
  }

  .review-quote-mark {
    top: 6px;
    right: 24px;
    font-size: clamp(88px, 25vw, 122px);
  }

  .review-card blockquote {
    margin-top: clamp(25px, 6.5vw, 34px);
    padding-left: 28px;
    font-size: clamp(18px, 5vw, 22px);
  }

  .review-desktop-break {
    display: none;
  }

  .review-author {
    gap: 16px;
    padding-top: 22px;
  }

  .review-avatar {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }

  .review-person strong {
    font-size: clamp(11px, 3.05vw, 14px);
  }

  .review-person small {
    margin-top: 6px;
    font-size: clamp(10px, 2.75vw, 13px);
  }

  .reviews-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 9px 0 0;
    color: rgba(225, 190, 134, 0.7);
    font-size: clamp(8px, 2.2vw, 11px);
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .reviews-scroll-hint span {
    font-size: 1.5em;
  }

  .reviews-cta {
    width: min(calc(100% - 40px), 370px);
    min-height: 58px;
    margin-top: clamp(30px, 7vw, 44px);
    gap: clamp(20px, 7vw, 38px);
    font-size: clamp(9px, 2.65vw, 12px);
  }

  .instagram-section {
    padding: clamp(72px, 12vw, 108px) clamp(16px, 4.4vw, 32px) clamp(80px, 14vw, 118px);
    background:
      radial-gradient(circle at 12% 3%, rgba(177, 125, 66, 0.2), transparent 25%),
      linear-gradient(rgba(8, 7, 6, 0.91), rgba(12, 10, 8, 0.94)),
      url("../images/payment-options/backgrounds/background-mobile-clean.png") center / cover no-repeat;
  }

  .instagram-section::before {
    top: -38vw;
    right: -44vw;
    width: 100vw;
  }

  .instagram-section::after {
    left: 25%;
    width: 50%;
  }

  .instagram-header {
    display: block;
    margin-bottom: clamp(38px, 8vw, 58px);
    text-align: center;
  }

  .instagram-eyebrow {
    justify-content: center;
    margin-bottom: 17px;
    font-size: clamp(8px, 2.3vw, 12px);
    letter-spacing: 0.26em;
  }

  .instagram-eyebrow::after {
    display: none;
  }

  .instagram-title {
    align-items: center;
    font-size: clamp(50px, 12.8vw, 88px);
    line-height: 0.87;
  }

  .instagram-title em {
    margin-left: 0;
  }

  .instagram-intro-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 0;
  }

  .instagram-intro {
    max-width: 560px;
    margin-top: 28px;
    font-size: clamp(11px, 2.8vw, 15px);
    line-height: 1.75;
  }

  .instagram-profile-link {
    min-width: min(100%, 310px);
    margin-top: 25px;
    padding: 16px 18px;
    font-size: clamp(8px, 2.2vw, 11px);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(7px, 2vw, 14px);
  }

  .instagram-post::before {
    inset: 5px;
  }

  .instagram-post::after {
    opacity: 0.56;
  }

  .instagram-post-overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
    opacity: 1;
    translate: 0 0;
  }

  .instagram-post-overlay span {
    display: none;
  }

  .instagram-post-overlay i {
    margin-left: auto;
    color: #f3e1c5;
    font-size: clamp(14px, 3.8vw, 20px);
  }

  .instagram-brand-card img {
    width: 46%;
  }

  .instagram-brand-card > span {
    font-size: clamp(14px, 3.9vw, 26px);
  }

  .instagram-brand-card small {
    font-size: clamp(5px, 1.55vw, 9px);
  }

  .site-footer {
    padding: clamp(68px, 14vw, 96px) clamp(22px, 5.8vw, 44px) 28px;
  }

  .site-footer::before {
    top: -42vw;
    right: -46vw;
    width: 105vw;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "nav connect"
      "visit visit";
    gap: 50px 34px;
  }

  .footer-brand {
    grid-area: brand;
    padding-right: 0;
  }

  .footer-nav {
    grid-area: nav;
  }

  .footer-visit {
    grid-area: visit;
  }

  .footer-connect {
    grid-area: connect;
  }

  .footer-home-link {
    display: block;
    width: min(64vw, 240px);
    margin-inline: auto;
  }

  .footer-brand p {
    max-width: 430px;
    margin-top: 22px;
    font-size: clamp(19px, 4.8vw, 24px);
  }

  .footer-column h2 {
    margin-bottom: 23px;
    font-size: clamp(9px, 2.5vw, 12px);
  }

  .footer-nav a,
  .footer-nav span {
    font-size: clamp(17px, 4.6vw, 21px);
  }

  .footer-visit address,
  .footer-connect p {
    font-size: clamp(12px, 3.15vw, 15px);
  }

  .footer-book-link {
    font-size: clamp(9px, 2.35vw, 11px);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 58px;
    padding-top: 21px;
  }

  .footer-bottom p {
    font-size: clamp(8px, 2.1vw, 10px);
  }
}

@media (max-width: 1399px) {
  .site-header {
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 24px;
    padding-inline: 32px;
  }

  .brand {
    width: 150px;
  }

  .primary-nav {
    gap: 18px;
  }

  .social-links {
    display: none;
  }

  .hero-content {
    width: min(42vw, 600px);
  }

  .hero h1 {
    font-size: clamp(74px, 6.2vw, 90px);
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-button {
    min-height: 62px;
    padding-inline: 24px;
  }
}

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

  .primary-nav,
  .login-link {
    display: none;
  }

  .social-links,
  .menu-toggle {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 25;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(430px, 88vw);
    height: 100svh;
    padding: 118px 38px 36px;
    border-left: 1px solid rgba(201, 164, 111, 0.2);
    background: rgba(7, 6, 5, 0.96);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.46);
    -webkit-backdrop-filter: blur(26px) saturate(1.16);
    backdrop-filter: blur(26px) saturate(1.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    transition: opacity 230ms ease, transform 230ms ease;
  }

  body.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 164, 111, 0.14);
    color: var(--ivory);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
    line-height: 1;
    cursor: default;
    user-select: none;
    opacity: 0;
    translate: 26px 0;
    transition: opacity 430ms ease, translate 560ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--menu-order, 0) * 45ms);
  }


  a.mobile-nav-item {
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-nav-group {
    width: 100%;
  }

  .mobile-treatment-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
  }

  .mobile-treatment-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--champagne);
    transition: transform 200ms ease;
  }

  body.treatment-menu-open .mobile-treatment-toggle svg {
    transform: rotate(180deg);
  }

  .mobile-subnav {
    max-height: 0;
    padding-left: 20px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
  }

  body.treatment-menu-open .mobile-subnav {
    max-height: 70px;
    padding-top: 12px;
    padding-bottom: 6px;
    opacity: 1;
  }

  .mobile-subnav a {
    color: var(--champagne-light);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  body.nav-open .mobile-nav-item {
    opacity: 1;
    translate: 0 0;
  }

  .mobile-nav-item.is-active {
    color: var(--champagne-light);
  }

  .mobile-socials {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
  }

  .mobile-socials a {
    opacity: 0;
    scale: 0.72;
    transition:
      color 180ms ease,
      transform 180ms ease,
      opacity 360ms ease,
      scale 480ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--menu-order, 8) * 40ms);
  }

  body.nav-open .mobile-socials a {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 899px) {
  :root {
    --header-height: 104px;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding: 16px 5.8vw;
  }

  .site-header.is-scrolled {
    background: rgba(8, 7, 6, 0.78);
  }

  .brand {
    width: clamp(132px, 34vw, 154px);
  }

  .social-links {
    display: none;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
    padding-right: 0;
  }

  .menu-toggle span {
    width: 37px;
  }

  .hero {
    min-height: max(920px, 100svh);
    background-image: url("../images/hero/background-mobile-clean.png");
    background-position: center top;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(8, 7, 6, 0.1) 0%, transparent 65%);
  }

  .hero-content {
    width: 58%;
    margin-left: 5.8vw;
    padding-top: max(330px, 35.5svh);
    padding-bottom: 46px;
  }

  .hero-eyebrow {
    display: block;
    margin-bottom: 28px;
    font-size: clamp(8px, 2.25vw, 11px);
    letter-spacing: 0.23em;
  }

  .hero-eyebrow::before {
    display: block;
    width: 54px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(58px, 16.4vw, 112px);
    line-height: 0.84;
  }

  .hero h1 em {
    margin-top: 12px;
  }

  .hero-divider {
    width: 84%;
    margin: clamp(28px, 4.2svh, 44px) 0 25px;
  }

  .hero-description {
    width: 82%;
    font-size: clamp(12px, 3.25vw, 17px);
    line-height: 1.68;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: clamp(28px, 4.8svh, 48px);
  }

  .hero-button {
    width: 100%;
    min-height: clamp(60px, 7.2svh, 92px);
    padding-inline: 18px;
    font-size: clamp(9px, 2.7vw, 14px);
  }

  .hero-features,
  .personalized-badge {
    display: none;
  }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 122%;
    margin: clamp(58px, 7svh, 84px) 0 0 33%;
    color: var(--champagne);
  }

  .trust-monogram {
    display: block;
    box-sizing: content-box;
    width: clamp(46px, 7vw, 62px);
    height: auto;
    padding-right: 22px;
    border-right: 1px solid rgba(201, 164, 111, 0.62);
    flex: 0 0 auto;
    object-fit: contain;
  }

  .trust-copy {
    font-size: clamp(8px, 2.3vw, 12px);
    font-weight: 500;
    letter-spacing: 0.26em;
    line-height: 2.05;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .about-section {
    aspect-ratio: 863 / 2321;
    background-image: url("../images/about/background-mobile-clean.png");
  }

  .about-portrait {
    top: 5.6%;
    left: 4.403%;
    width: 90.962%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 2.1vw;
    object-position: center;
  }

  .about-pill {
    position: absolute;
    z-index: 3;
    top: 1.552%;
    left: 4.403%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20.162%;
    height: 2.626%;
    border: 1px solid #c89a5c;
    border-radius: 999px;
    color: #e9e2d9;
    background: rgba(10, 10, 9, 0.44);
    font-size: 3vw;
    line-height: 1;
  }

  .about-wall-brand {
    display: none;
  }

  .about-wall-brand img {
    width: 33.2%;
    height: auto;
  }

  .about-wall-brand span {
    margin-top: 8.5%;
    font-size: 3.7vw;
    letter-spacing: 0.025em;
    white-space: nowrap;
  }

  .about-wall-brand small {
    margin-top: 6%;
    font-size: 2.7vw;
    font-weight: 400;
    letter-spacing: 0.22em;
  }

  .about-copy {
    top: 51.31%;
    left: 4.519%;
    width: 90.962%;
  }

  .about-copy::before {
    position: absolute;
    top: 0;
    right: 2.2%;
    width: 3.708vw;
    aspect-ratio: 1;
    background: url("../images/about/sparkle.svg") center / contain no-repeat;
    content: "";
  }

  .about-eyebrow {
    gap: 2.9vw;
    font-size: 3.05vw;
    letter-spacing: 0.26em;
    line-height: 1.45;
  }

  .about-eyebrow::before {
    display: none;
  }

  .about-eyebrow::after {
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, #c89a5c, rgba(200, 154, 92, 0.25));
    content: "";
    flex: 1;
  }

  .about-copy h2 {
    margin-top: 3.75vw;
    font-size: 9.2vw;
    letter-spacing: -0.025em;
    line-height: 1.03;
  }

  .about-copy h2 span:last-child {
    color: #e9e2d9;
    white-space: nowrap;
  }

  .about-copy h2 em {
    color: #c89a5c;
    font-style: italic;
  }

  .about-divider {
    display: none;
  }

  .about-description {
    width: 95.54%;
    margin-top: 5vw;
    font-size: max(11px, 3.4vw);
    line-height: 1.82;
  }

  .about-location {
    top: 84.5%;
    left: 4.403%;
    width: 90.962%;
    height: 6.98%;
    border-color: rgba(200, 154, 92, 0.72);
    border-radius: 1.65vw;
  }

  .about-location-icon {
    width: 13.5%;
    margin-left: 6.37%;
  }

  .about-location-icon img {
    width: 44%;
    height: 44%;
  }

  .about-location-divider {
    height: 57%;
    margin-right: 4.8%;
    margin-left: 4%;
  }

  .about-location address {
    font-size: 3.22vw;
    line-height: 1.72;
  }

  .about-location address span:first-child {
    color: #e9e2d9;
  }

  .about-location address span:last-child {
    color: #c89a5c;
  }

  .about-cta {
    top: 92.85%;
    left: 4.403%;
    width: 90.962%;
    height: 4.782%;
    padding: 0 9.6% 0 24.1%;
    border-radius: 1.45vw;
    font-size: max(8px, 2.55vw);
    letter-spacing: 0.28em;
  }

  .about-cta-sparkle {
    position: absolute;
    left: 16.3%;
    display: block;
    width: 4.58%;
    height: auto;
  }

  .about-cta svg {
    width: 7.9%;
  }

  .about-features {
    display: none;
  }

  .services-section {
    aspect-ratio: 875 / 1798;
  }

  .services-art-desktop {
    display: none;
  }

  .services-art-mobile {
    display: block;
  }

  .services-kicker {
    top: 6.007%;
    left: 39.429%;
    width: 21.143%;
    font-size: max(7px, 2.057vw);
    letter-spacing: 0.3em;
  }

  .services-title {
    top: 9.344%;
    left: 20.686%;
    width: 58.629%;
    font-size: 6.629vw;
    line-height: 1.2;
    text-align: center;
  }

  .services-intro {
    top: 21.079%;
    left: 25.6%;
    width: 48.8%;
    font-size: max(10px, 2.857vw);
    line-height: 1.36;
    text-align: center;
  }

  .services-card-title {
    font-size: 4.114vw;
    line-height: 1.22;
  }

  .services-card-copy {
    font-size: max(9.5px, 2.514vw);
    line-height: 1.41;
  }

  .services-card-eyebrows .services-card-copy {
    font-size: max(8.5px, 2.3vw);
    line-height: 1.42;
  }

  .services-card-cta {
    border-radius: 1.35vw;
    font-size: max(7.5px, 1.943vw);
    letter-spacing: 0.25em;
  }

  .services-card-cta span {
    width: 84%;
  }

  .services-card-laser .services-card-title {
    top: 29.255%;
    left: 47.314%;
    width: 35.429%;
  }

  .services-card-laser .services-card-copy {
    top: 34.427%;
    left: 47.314%;
    width: 34.857%;
  }

  .services-card-laser .services-card-cta {
    top: 42.436%;
    left: 47.314%;
    width: 27.429%;
    height: 3.059%;
  }

  .services-card-eyebrows .services-card-title {
    top: 51.057%;
    left: 47.314%;
    width: 27.657%;
  }

  .services-card-eyebrows .services-card-copy {
    top: 56.229%;
    left: 47.314%;
    width: 35.086%;
  }

  .services-card-eyebrows .services-card-cta {
    top: 64.46%;
    left: 47.314%;
    width: 27.429%;
    height: 3.059%;
  }

  .services-card-microneedling .services-card-title {
    top: 72.914%;
    left: 47.314%;
    width: 33.143%;
  }

  .services-card-microneedling .services-card-copy {
    top: 78.087%;
    left: 47.314%;
    width: 35.543%;
  }

  .services-card-microneedling .services-card-cta {
    top: 86.485%;
    left: 47.314%;
    width: 27.429%;
    height: 3.059%;
  }

  .payment-section {
    aspect-ratio: 864 / 1821;
  }

  .payment-art-desktop,
  .payment-desktop-plans {
    display: none;
  }

  .payment-art-mobile,
  .payment-mobile-plans {
    display: block;
  }

  .payment-mobile-frame {
    top: 1.428%;
    left: 2.778%;
    width: 94.444%;
  }

  .payment-mobile-eyebrow-pill {
    top: 8.512%;
    left: 25.926%;
    width: 48.148%;
  }

  .payment-mobile-sparkle {
    top: 9.39%;
    left: 29.167%;
    width: 3.472%;
  }

  .payment-headline-divider-mobile {
    top: 27.677%;
    left: 45.486%;
    width: 9.259%;
  }

  .payment-mobile-benefits-panel {
    top: 40.857%;
    left: 7.986%;
    width: 83.796%;
  }

  .payment-mobile-benefit-separator {
    top: 43.383%;
    width: 0.231%;
  }

  .payment-mobile-benefit-separator-one {
    left: 35.995%;
  }

  .payment-mobile-benefit-separator-two {
    left: 63.542%;
  }

  .payment-mobile-lightning {
    top: 43.163%;
    left: 20.37%;
    width: 5.324%;
  }

  .payment-mobile-shield {
    top: 43.163%;
    left: 46.528%;
    width: 6.25%;
  }

  .payment-mobile-percent {
    top: 43.328%;
    left: 73.611%;
    width: 6.481%;
  }

  .payment-mobile-card {
    top: 57.661%;
  }

  .payment-mobile-card-one {
    left: 7.176%;
    width: 27.315%;
  }

  .payment-mobile-card-two {
    left: 36.574%;
    width: 26.852%;
  }

  .payment-mobile-card-three {
    left: 65.394%;
    width: 26.852%;
  }

  .payment-mobile-ribbon {
    top: 57.88%;
    left: 10.069%;
    width: 16.088%;
  }

  .payment-mobile-price-divider {
    top: 72.378%;
    width: 9.259%;
  }

  .payment-mobile-price-divider-one {
    left: 15.972%;
  }

  .payment-mobile-price-divider-two {
    left: 45.37%;
  }

  .payment-mobile-price-divider-three {
    left: 74.19%;
  }

  .payment-cta-button-mobile {
    top: 79.077%;
    left: 12.5%;
    width: 74.884%;
  }

  .payment-mobile-cta-circle {
    top: 80.121%;
    left: 75.579%;
    width: 9.259%;
  }

  .payment-cta-arrow-mobile {
    top: 81.329%;
    left: 78.125%;
    width: 4.167%;
  }

  .payment-eyebrow {
    top: 9.5%;
    left: 34.028%;
    width: 37.037%;
    font-size: 1.968vw;
    letter-spacing: 0.18em;
    text-align: left;
  }

  .payment-title {
    top: 14.278%;
    left: 0;
    gap: 4.05vw;
    width: 100%;
    font-size: 8.333vw;
    letter-spacing: -0.015em;
    text-align: center;
  }

  .payment-description {
    top: 30.313%;
    left: 0;
    width: 100%;
    font-size: 3.241vw;
    line-height: 1.75;
    text-align: center;
  }

  .payment-benefit {
    top: 48.27%;
    font-size: 2.778vw;
    line-height: 1.2;
    text-align: center;
  }

  .payment-benefit-one {
    left: 15.972%;
    width: 13.657%;
  }

  .payment-benefit-two {
    left: 41.667%;
    width: 16.204%;
  }

  .payment-benefit-three {
    left: 66.551%;
    width: 18.519%;
  }

  .payment-benefit-desktop-copy {
    display: none;
  }

  .payment-benefit-mobile-copy {
    display: inline;
  }

  .payment-popular {
    top: 58.374%;
    left: 11.458%;
    width: 13.31%;
    color: #0a0a09;
    font-size: 1.62vw;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .payment-mobile-plan {
    top: 60.626%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 19.444%;
    color: #eee6db;
    text-align: center;
  }

  .payment-mobile-plan-one {
    left: 10.995%;
  }

  .payment-mobile-plan-two {
    left: 39.931%;
  }

  .payment-mobile-plan-three {
    left: 68.981%;
  }

  .payment-mobile-plan .payment-plan-months {
    font-size: 2.315vw;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .payment-mobile-plan .payment-plan-price {
    margin-top: 2.1vw;
    color: #e7bd77;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 7.87vw;
    font-weight: 400;
    line-height: 0.95;
  }

  .payment-mobile-plan .payment-plan-period {
    margin-top: 1.65vw;
    font-size: 2.778vw;
    line-height: 1.2;
    white-space: nowrap;
  }

  .payment-cta {
    top: 81.274%;
    left: 29.167%;
    width: 38.773%;
    height: 2.856%;
    color: #090909;
    font-size: 2.894vw;
    letter-spacing: 0.12em;
  }

  .payment-fineprint {
    top: 88.413%;
    left: 21.412%;
    width: 56.713%;
    font-size: 2.546vw;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 88px;
    padding-block: 10px;
  }

  .brand {
    width: 126px;
  }

  .mobile-nav {
    padding: 100px 30px 30px;
  }

  .mobile-nav-item {
    padding: 12px 0;
    font-size: 23px;
  }

  .mobile-nav-close {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: max(860px, 100svh);
  }

  .hero-content {
    width: 61%;
    padding-top: max(300px, 35svh);
  }

  .hero-eyebrow {
    font-size: 7.5px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-description {
    font-size: clamp(11px, 3.15vw, 14px);
  }

  .hero-button {
    min-height: 58px;
    font-size: 9px;
  }

  .hero-trust {
    gap: 15px;
    margin-left: 24%;
  }

  .trust-monogram {
    padding-right: 15px;
  }

  .trust-copy {
    font-size: 7px;
  }
}

/* Home layout refinement: simpler spacing and resilient responsive flow. */
.about-section {
  display: grid;
  grid-template-areas:
    "copy portrait"
    "location portrait"
    "cta features";
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 28px clamp(54px, 7vw, 112px);
  aspect-ratio: auto;
  min-height: 720px;
  padding: clamp(82px, 7vw, 112px) clamp(48px, 7.8vw, 124px) clamp(72px, 6vw, 96px);
  background:
    radial-gradient(circle at 13% 13%, rgba(169, 123, 70, 0.18), transparent 30%),
    linear-gradient(90deg, #12100d 0%, #090907 48%, #080806 100%);
}

.about-section::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 6, 0.16) 0%, rgba(8, 8, 6, 0.94) 48%, rgba(8, 8, 6, 0.06) 72%);
  content: "";
  pointer-events: none;
}

.about-portrait,
.about-copy,
.about-location,
.about-cta,
.about-features {
  position: relative;
  top: auto;
  left: auto;
}

.about-portrait-media {
  display: contents;
}

.about-portrait {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: auto;
  width: 53%;
  height: 100%;
  min-height: 0;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  object-position: right top;
}

.about-copy {
  z-index: 2;
  grid-area: copy;
  align-self: end;
  width: min(100%, 600px);
}

.about-copy h2 {
  margin-top: clamp(28px, 2.6vw, 42px);
  font-size: clamp(48px, 4.4vw, 68px);
}

.about-divider {
  margin-top: clamp(28px, 2.5vw, 40px);
}

.about-description {
  width: min(100%, 560px);
  margin-top: clamp(22px, 2vw, 32px);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.72;
}

.about-location {
  z-index: 2;
  grid-area: location;
  width: min(100%, 520px);
  height: 92px;
}

.about-cta {
  z-index: 2;
  grid-area: cta;
  width: min(100%, 360px);
  height: 58px;
  padding: 0 28px;
}

.about-features {
  z-index: 2;
  grid-area: features;
  align-self: center;
  width: 100%;
  height: 72px;
}

.about-feature {
  gap: 10px;
}

.about-feature img {
  width: 34px;
  height: 34px;
}

.about-feature span {
  max-width: 100%;
  font-size: clamp(7px, 0.62vw, 9px);
  letter-spacing: 0.05em;
  white-space: normal;
}

.services-section {
  aspect-ratio: auto;
  padding: clamp(76px, 6.5vw, 104px) clamp(32px, 6vw, 96px) clamp(82px, 7vw, 112px);
  background:
    linear-gradient(135deg, rgba(8, 8, 7, 0.9), rgba(16, 14, 11, 0.94)),
    url("../images/services/backgrounds/background-desktop-clean.png") center / cover no-repeat;
}

.services-background,
.services-art {
  display: none !important;
}

.services-kicker,
.services-title,
.services-intro,
.services-card-title,
.services-card-copy,
.services-card-cta {
  position: relative;
  top: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
}

.services-kicker {
  width: fit-content !important;
  margin: 0 auto;
  color: #d7aa68;
  font-size: 11px;
  letter-spacing: 0.28em;
}

.services-kicker::before,
.services-kicker::after {
  color: rgba(215, 170, 104, 0.72);
  content: "✦";
}

.services-kicker::before {
  margin-right: 14px;
}

.services-kicker::after {
  margin-left: 11px;
}

.services-title {
  width: min(100%, 720px) !important;
  margin: 22px auto 0;
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: 0.96;
  text-align: center;
}

.services-title span {
  white-space: normal;
}

.services-title span + span {
  margin-top: 8px;
}

.services-title em {
  font-style: italic;
}

.services-intro {
  width: min(100%, 520px) !important;
  margin: 24px auto 0;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.65;
  text-align: center;
}

.services-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: min(100%, 1240px);
  margin: clamp(42px, 4vw, 62px) auto 0;
}

.services-card {
  position: relative;
  display: flex;
  min-height: 288px;
  flex-direction: column;
  padding: clamp(28px, 2.4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(205, 159, 93, 0.38);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 0%, rgba(205, 159, 93, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(28, 24, 19, 0.92), rgba(10, 9, 8, 0.96));
}

.services-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border: 1px solid rgba(218, 175, 108, 0.5);
  border-radius: 50%;
  background: rgba(201, 164, 111, 0.06);
  place-items: center;
}

.services-card-icon img {
  width: 25px;
  height: 25px;
}

.services-card-title,
.services-card-eyebrows .services-card-title,
.services-card-microneedling .services-card-title {
  color: #eee5da;
  font-size: clamp(29px, 2.2vw, 36px);
  white-space: normal;
}

.services-card-copy,
.services-card-eyebrows .services-card-copy {
  margin-top: 15px;
  color: rgba(218, 211, 202, 0.7);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.65;
}

.services-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  gap: 20px;
  min-height: 42px;
  margin-top: auto;
  padding: 0 15px;
  border: 1px solid rgba(218, 175, 108, 0.58);
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.services-card-cta span {
  width: auto;
}

.services-card-cta svg {
  width: 15px;
  height: 15px;
}

.reviews-section {
  padding: clamp(72px, 6vw, 96px) clamp(28px, 6vw, 96px) clamp(68px, 5.5vw, 88px);
}

.reviews-sparkle {
  margin-bottom: 18px;
}

.reviews-eyebrow {
  margin-bottom: 19px;
}

.reviews-title {
  font-size: clamp(52px, 4.7vw, 76px);
  line-height: 0.95;
}

.reviews-intro {
  margin-top: 22px;
  font-size: clamp(13px, 1vw, 16px);
}

.reviews-track {
  margin-top: clamp(34px, 3vw, 48px);
}

.review-card {
  min-height: 268px;
  padding: clamp(26px, 2.2vw, 34px);
}

.reviews-cta {
  min-height: 54px;
  margin-top: 36px;
}

.instagram-section {
  padding: clamp(74px, 6vw, 96px) clamp(28px, 6vw, 96px) clamp(78px, 6.5vw, 104px);
}

.instagram-header {
  margin-bottom: clamp(38px, 4vw, 58px);
}

.instagram-title {
  font-size: clamp(56px, 5.4vw, 88px);
}

@media (max-width: 899px) {
  .hero {
    min-height: max(760px, 92svh);
  }

  .hero-content {
    width: 68%;
    padding-top: max(260px, 31svh);
    padding-bottom: 36px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
  }

  .hero-divider {
    margin: 25px 0 21px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-button-secondary,
  .hero-trust {
    display: none;
  }

  .about-section {
    display: grid;
    grid-template-areas:
      "portrait"
      "copy"
      "location"
      "cta";
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    min-height: 0;
    padding: 0 18px 54px;
    background:
      radial-gradient(circle at 15% 70%, rgba(173, 125, 72, 0.16), transparent 32%),
      linear-gradient(180deg, #0d0c0a, #090907);
  }

  .about-section::after {
    display: none;
  }

  .about-pill {
    top: 28px;
    left: 18px;
    width: auto;
    height: 34px;
    padding: 0 14px;
    font-size: 10px;
  }

  .about-portrait {
    position: relative;
    grid-area: portrait;
    top: auto;
    right: auto;
    width: calc(100% + 36px);
    height: min(122vw, 920px);
    max-width: none;
    min-height: 0;
    margin-left: -18px;
    aspect-ratio: auto;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
  }

  .about-copy {
    width: 100%;
    padding-top: 12px;
  }

  .about-copy::before {
    display: none;
  }

  .about-eyebrow {
    font-size: 10px;
  }

  .about-copy h2 {
    margin-top: 18px;
    font-size: clamp(39px, 11vw, 58px);
    line-height: 0.98;
  }

  .about-copy h2 span:last-child {
    white-space: normal;
  }

  .about-description {
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.7;
  }

  .about-location {
    width: 100%;
    height: 70px;
    border-radius: 8px;
  }

  .about-location address {
    font-size: clamp(10px, 3vw, 13px);
  }

  .about-location address span {
    white-space: normal;
  }

  .about-cta {
    width: 100%;
    height: 54px;
    padding: 0 24px;
    border-radius: 7px;
    font-size: 9px;
  }

  .about-cta-sparkle {
    position: static;
    width: 16px;
  }

  .services-section {
    padding: 52px 18px 68px;
    background:
      linear-gradient(150deg, rgba(8, 8, 7, 0.9), rgba(15, 13, 10, 0.96)),
      url("../images/services/backgrounds/background-mobile-clean.png") center / cover no-repeat;
  }

  .services-kicker {
    font-size: 9px;
  }

  .services-title {
    width: min(100%, 420px) !important;
    margin-top: 18px;
    font-size: clamp(42px, 12vw, 62px);
    line-height: 0.94;
  }

  .services-intro {
    width: min(100%, 360px) !important;
    margin-top: 19px;
    font-size: 12px;
    line-height: 1.55;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 32px;
  }

  .services-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title cta"
      "icon copy copy";
    min-height: 0;
    padding: 20px;
    border-radius: 12px;
  }

  .services-card-icon {
    grid-area: icon;
    align-self: start;
    margin: 0 16px 0 0;
  }

  .services-card-title,
  .services-card-eyebrows .services-card-title,
  .services-card-microneedling .services-card-title {
    grid-area: title;
    align-self: center;
    font-size: clamp(24px, 7vw, 31px);
  }

  .services-card-copy,
  .services-card-eyebrows .services-card-copy {
    grid-area: copy;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.55;
  }

  .services-card-cta {
    grid-area: cta;
    align-self: center;
    min-height: 38px;
    margin: 0 0 0 12px;
    padding: 0 12px;
  }

  .services-card-cta svg {
    display: none;
  }

  .reviews-section {
    padding: 58px 0 60px;
  }

  .reviews-sparkle {
    margin-bottom: 14px;
  }

  .reviews-eyebrow {
    margin-bottom: 17px;
  }

  .reviews-title {
    font-size: clamp(39px, 10.7vw, 54px);
    line-height: 0.96;
  }

  .reviews-intro {
    margin-top: 19px;
    font-size: 11px;
    line-height: 1.65;
  }

  .reviews-track {
    margin-top: 30px;
    padding-bottom: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-height: 286px;
  }

  .reviews-scroll-hint {
    margin-top: 14px;
  }

  .reviews-cta {
    min-height: 52px;
    margin-top: 27px;
  }

  .instagram-section {
    padding: 60px 14px 70px;
  }

  .instagram-header {
    margin-bottom: 32px;
  }

  .instagram-title {
    font-size: clamp(45px, 11.8vw, 66px);
  }

  .instagram-intro-wrap {
    margin-top: 22px;
  }

  .instagram-profile-link {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: max(720px, 88svh);
  }

  .hero-content {
    width: 72%;
    padding-top: max(245px, 29svh);
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero-button {
    min-height: 54px;
  }

  .services-card {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "copy copy"
      "cta cta";
  }

  .services-card-icon {
    width: 42px;
    height: 42px;
  }

  .services-card-cta {
    justify-self: start;
    margin: 16px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item,
  .mobile-nav-item,
  .mobile-socials a {
    opacity: 1 !important;
    filter: none !important;
    scale: 1 !important;
    translate: 0 0 !important;
  }
}
