@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/fonts-cormorant-garamond-600-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts-manrope-400-latin.woff2") format("woff2");
}

:root {
  --bg: #fcf7f2;
  --bg-soft: #f5ede5;
  --paper: rgba(255, 251, 247, 0.82);
  --paper-strong: rgba(255, 253, 250, 0.94);
  --line: rgba(118, 91, 77, 0.12);
  --text: #342824;
  --muted: #776560;
  --accent: #c9959c;
  --accent-strong: #ad7981;
  --shadow: 0 24px 60px rgba(112, 81, 68, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --logo-filter: sepia(0.34) saturate(0.58) hue-rotate(-14deg) brightness(1.01) contrast(0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 213, 216, 0.55), transparent 22%),
    radial-gradient(circle at 86% 0%, rgba(241, 225, 210, 0.86), transparent 18%),
    linear-gradient(180deg, #fffcf9 0%, var(--bg) 48%, #fffaf6 100%);
  background-size: 126% 126%, 124% 124%, 100% 100%;
  background-position: 0% 0%, 100% 0%, 50% 50%;
  animation: backgroundDrift 26s ease-in-out infinite alternate;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: visible;
  padding: 0 1.4rem 2.8rem;
}

.ambient {
  position: fixed;
  inset: auto auto 0 0;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.6;
  animation: ambientFloat 18s ease-in-out infinite;
}

.ambient-one {
  top: 8rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(240, 201, 205, 0.42);
}

.ambient-two {
  top: 28rem;
  right: -6rem;
  left: auto;
  width: 20rem;
  height: 20rem;
  background: rgba(240, 228, 212, 0.7);
  animation-duration: 24s;
  animation-direction: reverse;
}

.site-header,
.site-main,
.site-footer {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 250, 246, 0.8);
  border-bottom: 1px solid rgba(118, 91, 77, 0.08);
  border-radius: 0 0 28px 28px;
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
  filter: var(--logo-filter);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.brand-home-return {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.8rem, 0) scale(0.88);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease,
    visibility 0s linear 0.45s;
}

.site-header-home.is-home-scrolled .brand-home-return {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s, 0s, 0s, 0s;
}

.brand-variant-return {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.8rem, 0) scale(0.92);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.35s;
}

.site-header-variant.is-variant-scrolled .brand-variant-return {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s, 0s, 0s;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  min-width: 0;
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 0;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(173, 121, 129, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 241, 0.9);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.1rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    width 0.24s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(2) {
  width: 0.9rem;
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.55);
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-phone,
.button,
.google-chip {
  border-radius: 999px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding: 0.95rem 1.2rem;
  background: rgba(255, 247, 241, 0.86);
  border: 1px solid rgba(173, 121, 129, 0.2);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--accent-strong);
}

.header-phone-icon svg {
  width: 100%;
  height: 100%;
}

.site-main {
  padding-top: 1.25rem;
}

body[data-page="homeVariant"] .site-shell {
  padding-top: 0;
}

body[data-page="homeVariant"] .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 246, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body[data-page="homeVariant"] .site-main {
  width: 100%;
  padding-top: 0;
}

body[data-page="homeVariant"] .site-header.site-header-variant.is-variant-scrolled {
  background: rgba(255, 250, 246, 0.82);
  border-bottom-color: rgba(118, 91, 77, 0.08);
  box-shadow: 0 18px 40px rgba(72, 52, 44, 0.1);
}

.hero-brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  margin-top: 0.4rem;
  margin-bottom: -1.25rem;
  padding: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transform-origin: center center;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.is-ready .hero-brand-strip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-brand-strip.is-returning {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--return-x, 0), var(--return-y, -84px), 0) scale(var(--return-scale, 0.62));
}

.hero-brand-strip img {
  width: min(100%, 28rem);
  filter: var(--logo-filter);
  transform-origin: center center;
  animation: logoFloat 7.5s ease-in-out infinite;
  will-change: transform, filter;
}

.page-hero,
.metrics,
.split-section,
.recognition-section,
.services-preview,
.gallery-section,
.reviews-section,
.consult-cta,
.content-grid,
.treatment-section,
.consult-layout,
.policy-layout,
.site-footer {
  margin-top: 2.1rem;
}

.page-hero {
  display: grid;
  align-items: center;
  gap: 2.4rem;
  min-height: calc(100vh - 120px);
}

.site-header-home {
  grid-template-columns: auto minmax(0, 1fr);
}

.site-header-home .header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header-home .site-nav {
  justify-content: flex-start;
}

.site-header-home.is-home-scrolled {
  box-shadow: 0 18px 44px rgba(112, 81, 68, 0.14);
}

.home-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: auto;
  align-items: start;
}

.hero-brand-strip + .page-hero {
  margin-top: 0.35rem;
}

.inner-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  min-height: auto;
  padding-top: 2rem;
}

.hero-variant {
  display: block;
  min-height: auto;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: 0 0 0.75rem;
}

.hero-variant-media {
  position: relative;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #d9ccc4;
  box-shadow: none;
}

.hero-variant-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 17, 15, 0.42) 0%, rgba(24, 17, 15, 0.18) 24%, rgba(24, 17, 15, 0.24) 70%, rgba(24, 17, 15, 0.5) 100%),
    radial-gradient(circle at 50% 46%, rgba(24, 17, 15, 0.1), rgba(24, 17, 15, 0.44) 72%);
  pointer-events: none;
  z-index: 1;
}

.hero-variant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.92) contrast(1.02);
}

.hero-variant-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 1rem;
  width: min(1260px, calc(100% - 2.8rem));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 7.1rem) 0 clamp(1.8rem, 4vw, 2.6rem);
}

.hero-variant-brand {
  display: none;
}

.hero-variant-brand img {
  width: clamp(12rem, 16vw, 15rem);
  filter: brightness(1.05) saturate(0.9);
  opacity: 0.92;
}

.hero-variant-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  max-width: 46rem;
  color: #fffaf7;
  padding: 0;
  text-align: center;
  transform: translateY(-4svh);
}

.hero-variant-copy .eyebrow,
.hero-variant-copy .lead {
  color: rgba(255, 248, 243, 0.92);
}

.hero-variant-copy h1 {
  max-width: 11.5ch;
  margin-inline: auto;
  font-size: clamp(2.7rem, 4.7vw, 4.5rem);
  line-height: 0.92;
  color: #fffaf7;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(24, 17, 15, 0.2);
}

.hero-variant-copy .lead {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.68;
  text-shadow: 0 10px 20px rgba(24, 17, 15, 0.18);
}

.hero-variant .button-secondary {
  background: rgba(255, 250, 246, 0.14);
  border-color: rgba(255, 248, 243, 0.28);
  color: #fffaf7;
}

.hero-variant .hero-actions {
  margin-top: 1.2rem;
  justify-content: center;
}

.hero-variant-footer {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.hero-variant-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 30rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-variant-meta li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 248, 243, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.12);
  color: rgba(255, 248, 243, 0.94);
  font-size: 0.88rem;
  line-height: 1.2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-variant-location {
  margin: 0;
  color: rgba(255, 248, 243, 0.86);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-variant-location .location-link {
  color: inherit;
  text-decoration-color: rgba(255, 248, 243, 0.35);
}

.hero-copy,
.copy-card,
.form-card,
.service-card,
.review-card,
.badge-card,
.consult-cta,
.metrics article,
.price-list,
.site-footer {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
}

.home-hero .hero-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 247, 241, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 28px 70px rgba(112, 81, 68, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px) saturate(132%);
  -webkit-backdrop-filter: blur(24px) saturate(132%);
}

.home-hero .hero-copy::before,
.home-hero .hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-hero .hero-copy::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.1) 38%, transparent 68%);
}

.home-hero .hero-copy::after {
  inset: auto -10% -26% 46%;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(236, 193, 198, 0.18), rgba(236, 193, 198, 0));
  filter: blur(8px);
}

.home-hero .hero-copy > * {
  position: relative;
  z-index: 1;
}

.inner-hero .hero-copy {
  border: 0;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.95rem, 2.8vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.lead,
.section-header p,
.prose-stack p,
.service-card p,
.copy-card p,
.review-card p,
.consult-cta p,
.treatment-copy p,
.badge-card span,
.site-footer p,
.price-list span,
.check-list li,
.hero-panel li {
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  max-width: 58ch;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.hero-actions,
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-actions {
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.hero-panel li {
  min-height: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(118, 91, 77, 0.08);
  font-size: 0.92rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.button-primary {
  background: linear-gradient(135deg, #cb979d, #b98289);
  color: #fff;
  box-shadow: 0 18px 38px rgba(173, 121, 129, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(118, 91, 77, 0.14);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.media-card,
.hero-side-image {
  overflow: hidden;
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-xl);
  background: #f5ece3;
  box-shadow: 0 18px 42px rgba(103, 76, 65, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.media-card {
  position: absolute;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin: 0;
  background: #f5ece3;
  border: 1px solid rgba(118, 91, 77, 0.08);
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: 50% 1.1rem;
  box-shadow: 0 12px 24px rgba(103, 76, 65, 0.08);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
  z-index: var(--gallery-layer, 1);
  will-change: transform;
}

.media-card::after,
.hero-side-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(118, 91, 77, 0.05));
  pointer-events: none;
}

.media-card img,
.hero-side-image img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 180ms ease-out;
}

.media-card-large {
  inset: 0 11% 9% 0;
}

.media-card-small {
  right: 0;
  bottom: 2.5%;
  width: 40%;
  height: 42%;
  border: 10px solid rgba(255, 249, 244, 0.9);
  box-shadow: 0 14px 32px rgba(103, 76, 65, 0.1);
  transform: translateY(0.7rem) rotate(6deg);
  transform-origin: center center;
  z-index: 2;
}

.hero-side-image {
  min-height: 560px;
  height: clamp(28rem, 43vw, 40rem);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metrics article {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.metrics strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.split-section,
.content-grid,
.consult-layout {
  display: grid;
  gap: 1.2rem;
}

.split-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.prose-stack {
  display: grid;
  gap: 1rem;
}

.services-preview .section-header,
.gallery-section .section-header,
.reviews-section .section-header {
  margin-bottom: 1.2rem;
}

.section-header {
  align-items: end;
}

.section-header > div,
.section-intro {
  max-width: 42rem;
}

.service-grid,
.review-grid,
.badge-stack,
.badge-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.review-card,
.copy-card,
.badge-card,
.price-list,
.form-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.service-card ul,
.check-list,
.price-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-card li,
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(118, 91, 77, 0.1);
}

.service-card li:last-child,
.price-list li:last-child {
  border-bottom: 0;
}

.service-card span,
.price-list strong {
  white-space: nowrap;
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 3.35rem;
  gap: 1.25rem;
}

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

.gallery-section.is-visible .gallery-card {
  transform: translate3d(var(--gallery-shift-x, 0), var(--gallery-shift-y, 0), 0) rotate(var(--gallery-tilt, 0deg));
  box-shadow: 0 18px 36px rgba(103, 76, 65, 0.12);
  transition-delay: var(--gallery-delay, 0ms);
}

.gallery-section.is-visible .gallery-card:hover {
  transform: translate3d(0, -0.38rem, 0) rotate(0deg) scale(1.012);
  box-shadow: 0 24px 44px rgba(103, 76, 65, 0.16);
  transition-delay: 0ms;
}

.gallery-card-feature {
  grid-column: 1 / span 5;
  grid-row: 1 / span 6;
  --gallery-tilt: -2.2deg;
  --gallery-shift-x: -0.18rem;
  --gallery-shift-y: 0.12rem;
  --gallery-layer: 2;
  --gallery-delay: 40ms;
}

.gallery-card-portrait {
  grid-column: 6 / span 3;
  grid-row: 1 / span 4;
  --gallery-tilt: 2.8deg;
  --gallery-shift-x: 0.1rem;
  --gallery-shift-y: -0.04rem;
  --gallery-layer: 4;
  --gallery-delay: 110ms;
}

.gallery-card-lips {
  grid-column: 9 / span 4;
  grid-row: 1 / span 5;
  --gallery-tilt: -1.9deg;
  --gallery-shift-x: 0.08rem;
  --gallery-shift-y: 0.14rem;
  --gallery-layer: 3;
  --gallery-delay: 160ms;
}

.gallery-card-face {
  grid-column: 1 / span 5;
  grid-row: 7 / span 5;
  --gallery-tilt: 1.9deg;
  --gallery-shift-x: -0.08rem;
  --gallery-shift-y: -0.12rem;
  --gallery-layer: 5;
  --gallery-delay: 90ms;
}

.gallery-card-detail {
  grid-column: 6 / span 3;
  grid-row: 5 / span 7;
  --gallery-tilt: -2.7deg;
  --gallery-shift-x: 0.14rem;
  --gallery-shift-y: 0.16rem;
  --gallery-layer: 6;
  --gallery-delay: 210ms;
}

.gallery-card-soft {
  grid-column: 9 / span 4;
  grid-row: 6 / span 6;
  --gallery-tilt: 2.35deg;
  --gallery-shift-x: -0.04rem;
  --gallery-shift-y: -0.08rem;
  --gallery-layer: 4;
  --gallery-delay: 260ms;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.google-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(118, 91, 77, 0.12);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stars {
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  font-size: 0.84rem;
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.location-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
  text-decoration-color: rgba(173, 121, 129, 0.45);
}

.location-link:hover {
  text-decoration-color: rgba(173, 121, 129, 0.85);
}

.button:hover,
.header-phone:hover,
.service-card:hover,
.review-card:hover,
.copy-card:hover,
.badge-card:hover,
.price-list:hover,
.form-card:hover,
.metrics article:hover {
  transform: translateY(-4px);
}

.button:hover,
.header-phone:hover,
.service-card:hover,
.review-card:hover,
.copy-card:hover,
.badge-card:hover,
.price-list:hover,
.form-card:hover,
.metrics article:hover {
  box-shadow: 0 28px 64px rgba(112, 81, 68, 0.14);
}

.consult-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-xl);
}

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

.badge-stack {
  grid-template-columns: 1fr;
}

.badge-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.badge-card img {
  width: 130px;
  object-fit: contain;
}

.badge-card span {
  max-width: 150px;
  text-align: right;
}

.recognition-section .section-header {
  margin-bottom: 1.2rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.recognition-feature {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 1.4rem;
}

.recognition-award {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.recognition-award img {
  width: min(100%, 180px);
  height: auto;
  object-fit: contain;
}

.recognition-copy {
  display: grid;
  gap: 0.9rem;
}

.recognition-copy p:last-child {
  margin: 0;
}

.recognition-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.recognition-logo-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.9rem;
}

.recognition-logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.recognition-logo-card span {
  max-width: none;
  text-align: left;
}

blockquote {
  margin-top: 1.6rem;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(185, 130, 137, 0.3);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.24;
}

.treatment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.02fr);
  gap: 0.6rem;
  align-items: center;
}

.treatment-copy {
  align-self: center;
  padding: 0.5rem 0;
  min-width: 0;
}

.treatment-section + .treatment-section {
  position: relative;
  margin-top: 1.6rem;
  padding-top: 2.2rem;
}

.treatment-section + .treatment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(118, 91, 77, 0.12);
}

.form-card {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row:has(textarea),
.form-row:has(select) {
  grid-template-columns: 1fr;
}

.form-card label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(118, 91, 77, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.form-card input:disabled,
.form-card select:disabled,
.form-card textarea:disabled,
.form-card button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-card select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M2 2.25L7 7.25L12 2.25' stroke='%23776560' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.9rem 0.6rem;
}

.form-card select::-ms-expand {
  display: none;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #9a3d32;
}

.form-status.is-success {
  color: #2e6b46;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.check-list {
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

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

.policy-layout {
  display: block;
}

.policy-card {
  max-width: 940px;
}

.policy-card > *:first-child {
  margin-top: 0;
}

.policy-card > * + * {
  margin-top: 1rem;
}

.policy-card h2 {
  margin-top: 0;
}

.policy-card h3 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.policy-card p,
.policy-card li,
.policy-card span {
  color: var(--muted);
  line-height: 1.78;
}

.policy-card strong {
  color: var(--text);
}

.policy-updated {
  margin: 0;
  color: var(--accent-strong) !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-list {
  padding-left: 1.2rem;
  margin: 0;
}

.policy-list li + li {
  margin-top: 0.6rem;
}

.policy-note {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(118, 91, 77, 0.1);
  background: rgba(255, 255, 255, 0.56);
}

.policy-note > *:first-child {
  margin-top: 0;
}

.policy-note > * + * {
  margin-top: 0.7rem;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.policy-stat {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(118, 91, 77, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.policy-stat strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-xl);
}

.footer-brand {
  display: grid;
  gap: 0.55rem;
}

.footer-brand img {
  width: 152px;
  filter: var(--logo-filter);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, auto));
  gap: 1rem 2rem;
  color: var(--muted);
}

.footer-links-group {
  display: grid;
  gap: 0.55rem;
}

.footer-links-title {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links-group a {
  line-height: 1.6;
}

.footer-phone {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1), transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.page-hero .hero-copy,
.page-hero .hero-media,
.page-hero .hero-side-image {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero.is-visible .hero-copy,
.page-hero.is-visible .hero-media,
.page-hero.is-visible .hero-side-image {
  opacity: 1;
  transform: translateY(0);
}

.page-hero.is-visible .hero-media,
.page-hero.is-visible .hero-side-image {
  transition-delay: 120ms;
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -16px, 0) scale(1.04);
  }
}

@keyframes backgroundDrift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }

  50% {
    background-position: 2.5% 1.8%, 98% 2.2%, 50% 50%;
  }

  100% {
    background-position: 4% 3.5%, 96.5% 4%, 50% 50%;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -5px, 0) scale(1.015);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-parallax] {
    transform: none !important;
  }

  .ambient,
  .site-header,
  .hero-brand-strip,
  body,
  .page-hero .hero-copy,
  .page-hero .hero-media,
  .page-hero .hero-side-image {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .page-hero,
  .metrics,
  .split-section,
  .recognition-grid,
  .recognition-logo-grid,
  .content-grid,
  .treatment-section,
  .consult-layout,
  .policy-meta,
  .service-grid,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-header,
  .consult-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

  .treatment-section + .treatment-section {
    margin-top: 1.2rem;
    padding-top: 1.5rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-variant {
    min-height: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 0;
  }

  .hero-variant-media {
    min-height: 88svh;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-variant-overlay {
    width: min(100%, calc(100% - 2.4rem));
    padding: 6rem 0 1.8rem;
  }

  .hero-variant-copy {
    transform: translateY(-2.5svh);
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-side-image {
    min-height: 420px;
    height: clamp(24rem, 74vw, 34rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 13rem;
  }

  .gallery-card-feature,
  .gallery-card-portrait,
  .gallery-card-lips,
  .gallery-card-face,
  .gallery-card-detail,
  .gallery-card-soft {
    grid-column: span 1;
    grid-row: auto;
    --gallery-shift-x: 0;
    --gallery-shift-y: 0;
    --gallery-delay: 0ms;
  }

  .badge-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body[data-page="homeVariant"] .site-header {
    position: fixed;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .site-header-home {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-home-return {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s, 0s, 0s, 0s;
  }

  .brand img {
    width: 156px;
  }

  .brand-variant-return {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s, 0s, 0s;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header .header-panel,
  .site-header-home .header-panel,
  .site-header-variant .header-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(118, 91, 77, 0.08);
    background: rgba(255, 251, 247, 0.96);
    box-shadow: 0 22px 48px rgba(112, 81, 68, 0.14);
    backdrop-filter: blur(18px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -0.45rem, 0) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 0.26s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.26s;
  }

  .site-header.is-menu-open .header-panel,
  .site-header-home.is-menu-open .header-panel,
  .site-header-variant.is-menu-open .header-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s, 0s, 0s;
  }

  .hero-brand-strip {
    display: none;
  }

  .site-header-home .menu-toggle {
    justify-self: end;
  }

  .hero-variant-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    width: min(100%, calc(100% - 2.2rem));
    padding: 6rem 0 1.4rem;
  }

  .hero-variant-brand {
    display: none;
  }

  .hero-variant-copy {
    max-width: 32rem;
    transform: none;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-panel .site-nav a,
  .header-panel .header-phone {
    opacity: 0;
    transform: translate3d(0, 0.7rem, 0);
    transition:
      opacity 0.28s ease,
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-menu-open .header-panel .site-nav a,
  .site-header-home.is-menu-open .header-panel .site-nav a,
  .site-header-variant.is-menu-open .header-panel .site-nav a,
  .site-header.is-menu-open .header-panel .header-phone,
  .site-header-home.is-menu-open .header-panel .header-phone,
  .site-header-variant.is-menu-open .header-panel .header-phone {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .header-panel .site-nav a:nth-child(1) { transition-delay: 0ms; }
  .header-panel .site-nav a:nth-child(2) { transition-delay: 34ms; }
  .header-panel .site-nav a:nth-child(3) { transition-delay: 68ms; }
  .header-panel .site-nav a:nth-child(4) { transition-delay: 102ms; }
  .header-panel .site-nav a:nth-child(5) { transition-delay: 136ms; }
  .header-panel .header-phone { transition-delay: 170ms; }

  .header-phone {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    padding: 0.9rem 1rem;
  }

  .hero-brand-strip {
    min-height: 1.75rem;
    margin-top: 0.35rem;
    margin-bottom: -0.6rem;
    padding: 0;
  }

  .hero-brand-strip img {
    width: min(100%, 16.5rem);
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-variant-copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.1rem);
    max-width: 10.8ch;
  }

  .hero-variant-overlay {
    width: min(100%, calc(100% - 2rem));
    padding: 5.8rem 0 1rem;
    gap: 0.85rem;
  }

  .hero-variant-meta {
    max-width: none;
  }

  .hero-variant-media {
    min-height: 84svh;
    border-radius: 0;
  }

  .hero-variant-copy .lead {
    max-width: 30ch;
    font-size: 0.92rem;
  }


  .hero-copy {
    padding: 1.6rem;
  }

  body[data-page="treatments"] .inner-hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  body[data-page="treatments"] .inner-hero .lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    width: 100%;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-side-image {
    height: clamp(22rem, 92vw, 32rem);
  }

  .recognition-feature {
    grid-template-columns: 1fr;
  }

  .recognition-award {
    justify-content: flex-start;
  }

  .media-card-large {
    inset: 0 0 24% 0;
  }

  .media-card-small {
    width: 58%;
    height: 34%;
    transform: translateY(0.4rem) rotate(4deg);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card-feature,
  .gallery-card-portrait,
  .gallery-card-lips,
  .gallery-card-face,
  .gallery-card-detail,
  .gallery-card-soft {
    min-height: 18rem;
  }

  .gallery-card {
    --gallery-tilt: 0deg;
    box-shadow: 0 14px 28px rgba(103, 76, 65, 0.1);
  }

  .gallery-section.is-visible .gallery-card:hover {
    transform: translate3d(0, -0.2rem, 0) rotate(0deg) scale(1.006);
  }
}

/* Homepage redesign */
:root {
  --bg: #fffdfa;
  --bg-soft: #f4ece4;
  --paper: #fffdfa;
  --paper-strong: #fffdfa;
  --line: rgba(142, 117, 111, 0.14);
  --text: #3b3130;
  --muted: #6f6461;
  --accent: #c9a7ab;
  --accent-strong: #7b626c;
  --shadow: 0 22px 60px rgba(96, 72, 68, 0.08);
  --logo-filter: sepia(0.24) saturate(0.54) hue-rotate(-20deg) brightness(1.08) contrast(0.92);
}

body {
  background: #fffdfa;
  animation: none;
}

.ambient {
  display: none;
}

.site-shell {
  padding: 0 1.5rem 0;
}

.site-header {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 250, 246, 0.8);
  border: 0;
  border-bottom: 1px solid rgba(118, 91, 77, 0.08);
  border-radius: 0 0 28px 28px;
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-main {
  width: min(1180px, 100%);
}

.site-header-home.is-home-scrolled {
  box-shadow: 0 10px 30px rgba(84, 62, 58, 0.08);
}

.brand img {
  width: 188px;
}

.header-panel {
  gap: 1.5rem;
}

.site-nav {
  width: auto;
  justify-content: flex-start;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a::after {
  bottom: -0.2rem;
  height: 1px;
  background: var(--accent-strong);
}

.header-phone {
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(173, 121, 129, 0.2);
  background: rgba(255, 247, 241, 0.86);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.header-phone-icon {
  display: inline-flex;
}

.site-main {
  padding-top: 0.1rem;
}

.site-main > .page-hero:first-child {
  margin-top: 0;
}

.page-hero,
.metrics,
.split-section,
.recognition-section,
.services-preview,
.gallery-section,
.reviews-section,
.consult-cta,
.content-grid,
.treatment-section,
.consult-layout,
.policy-layout,
.site-footer {
  margin-top: 3.4rem;
}

.hero-copy,
.copy-card,
.form-card,
.service-card,
.review-card,
.badge-card,
.consult-cta,
.metrics article,
.price-list,
.site-footer {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: none;
}

h1,
h2,
h3,
blockquote {
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.5rem, 5.9vw, 5.9rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.4rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

body[data-page="consultations"] .inner-hero h1 {
  font-size: clamp(2.4rem, 4.15vw, 4rem);
  line-height: 0.98;
}

body[data-page="contact"] .inner-hero h1 {
  max-width: 8.3ch;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  line-height: 0.96;
}

body[data-page="consultations"] .inner-hero {
  align-items: start;
}

body[data-page="consultations"] .hero-side-image {
  align-self: start;
  min-height: auto;
  height: clamp(28rem, 40vw, 31rem);
}

body[data-page="consultations"] .hero-side-image img {
  object-position: center 58%;
}

.eyebrow {
  font-size: 0.74rem;
  color: var(--accent-strong);
}

.button {
  padding: 1rem 1.55rem;
  font-size: 0.92rem;
}

.button-primary {
  background: #7b626c;
  box-shadow: none;
}

.button-secondary {
  background: transparent;
  border-color: rgba(123, 98, 108, 0.2);
  color: var(--accent-strong);
}

.section-header-centered {
  justify-content: center;
  text-align: center;
}

.section-header-centered > div {
  max-width: 54rem;
}

.home-hero-v2 {
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  min-height: auto;
  align-items: center;
  gap: 2.6rem;
  padding: 1.5rem 0 1rem;
}

.home-hero-v2 .home-hero-copy {
  max-width: 39rem;
  padding-top: 0;
}

.home-hero-title {
  margin-bottom: 0;
}

.home-hero-title span {
  display: block;
}

.home-hero-v2 h1 {
  max-width: 14.2ch;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4vw, 3.95rem);
  line-height: 0.97;
}

.home-hero-v2 .lead {
  max-width: 44ch;
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.52;
}

.home-hero-v2 .hero-actions {
  margin-top: 1.15rem;
}

.home-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  padding: 0;
  margin: 1.45rem 0 0;
  list-style: none;
}

.home-hero-highlights li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 0;
  color: #5f5855;
  font-size: 0.94rem;
  line-height: 1.6;
}

.home-hero-highlights li::before {
  content: "";
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background-color: rgba(201, 167, 171, 0.18);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.92rem 0.92rem;
}

.hero-highlight-care::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b626c' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6.7-4.35-8.55-8.03C1.86 9.84 3.7 6 7.47 6c1.86 0 3.11.98 4.53 2.53C13.42 6.98 14.67 6 16.53 6c3.77 0 5.61 3.84 4.02 6.97C18.7 16.65 12 21 12 21Z'/%3E%3C/svg%3E");
}

.hero-highlight-products::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b626c' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7 9 18l-5-5'/%3E%3C/svg%3E");
}

.hero-highlight-results::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b626c' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v4'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M3 12h4'/%3E%3Cpath d='M17 12h4'/%3E%3Cpath d='m5.6 5.6 2.8 2.8'/%3E%3Cpath d='m15.6 15.6 2.8 2.8'/%3E%3Cpath d='m18.4 5.6-2.8 2.8'/%3E%3Cpath d='m8.4 15.6-2.8 2.8'/%3E%3Ccircle cx='12' cy='12' r='2.35'/%3E%3C/svg%3E");
}

.home-hero-image {
  margin: 0;
  aspect-ratio: 0.915;
  overflow: hidden;
  max-width: 25.8rem;
  justify-self: end;
  align-self: center;
  border-radius: 280px 280px 8px 8px;
  background: transparent;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

body[data-page="home"] .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.services-preview,
.recognition-section,
.gallery-section {
  padding-top: 0.2rem;
}

.services-preview .section-header,
.recognition-section .section-header,
.gallery-section .section-header {
  margin-bottom: 2.4rem;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.service-showcase-card {
  display: block;
  transition: transform 0.35s ease;
}

.service-showcase-card:hover {
  transform: translateY(-4px);
}

.service-showcase-image {
  position: relative;
  margin: 0;
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 220px 220px 8px 8px;
  background: #eadcd0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 21, 19, 0) 48%, rgba(29, 21, 19, 0.58) 100%);
}

.service-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.7s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-showcase-image img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.service-showcase-label {
  position: absolute;
  right: 1rem;
  bottom: 1.2rem;
  left: 1rem;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.section-action-centre {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
  margin-bottom: 1.8rem;
}

.about-home-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 4.2rem;
  align-items: center;
  margin-top: 2.4rem;
}

.about-home-media {
  margin: 0;
  min-height: 640px;
  overflow: hidden;
  background: #efe6de;
}

.about-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home-copy {
  max-width: 40rem;
}

.about-home-copy p + p {
  margin-top: 1.3rem;
}

.nurse-led-section {
  padding: 1.1rem 0 0.9rem;
}

.nurse-led-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.nurse-led-image {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 430px;
  background: #e8e3df;
}

.nurse-led-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nurse-led-copy {
  width: min(100%, 84rem);
  margin: 0 auto;
  padding: 1.7rem 0 0.9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.nurse-led-copy h2 {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.06;
}

.nurse-led-copy p {
  margin: 0;
  max-width: 82ch;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.58;
}

.nurse-led-copy p + p {
  margin-top: 1.35rem;
}

.product-logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.product-logo-card {
  display: grid;
  place-items: center;
  gap: 1.1rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.product-logo-image {
  display: block;
  width: min(100%, 30rem);
  max-height: 13rem;
  object-fit: contain;
  border-radius: 0.75rem;
  clip-path: inset(0 round 0.75rem);
}

.product-logo-card span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.recognition-section {
  text-align: center;
}

.recognition-section .lead {
  max-width: 60ch;
  margin: 1rem auto 0;
}

.recognition-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  background: #efe3d8;
  color: #d4c1b2;
  font-size: 2.6rem;
}

.recognition-emblem::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 34px;
  height: 28px;
  background: #efe3d8;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
  transform: translateX(-50%);
}

.recognition-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.recognition-logo-card {
  display: grid;
  grid-template-rows: 12rem auto;
  justify-items: center;
  gap: 1rem;
  align-items: start;
}

.recognition-logo-card img {
  width: min(100%, 14rem);
  height: 100%;
  max-height: 12rem;
  align-self: center;
  object-fit: contain;
  filter: none;
}

.recognition-logo-card span {
  max-width: 11rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.recognition-logo-card-award img {
  width: min(100%, 9.25rem);
}

.recognition-logo-card-nmc-registered img {
  width: min(100%, 15.25rem);
}

.recognition-logo-card-healthcare-improvement-scotland img {
  width: min(100%, 15.5rem);
}

.recognition-logo-card-hamilton-fraser-cosmetic-insurance img {
  width: min(100%, 9rem);
}

.recognition-logo-card-hamilton-fraser-cosmetic-insurance img {
  width: min(100%, 10rem);
  max-height: 10.5rem;
}

.reviews-section {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 5.5rem 1.5rem;
  background: #f5ede4;
  border-radius: 1rem;
}

.reviews-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.review-grid-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 2.4rem;
}

.review-quote {
  text-align: center;
}

.review-quote p {
  margin: 0;
  color: #706664;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.72;
}

.review-quote strong {
  display: block;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-stars {
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-size: 1.65rem;
  letter-spacing: 0.26rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.results-card {
  margin: 0;
  min-height: 18rem;
  overflow: hidden;
  background: #ece1d6;
}

.results-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-section {
  gap: 0.6rem;
}

.treatment-section .price-list {
  margin: 0;
  width: 100%;
  min-width: 0;
  padding: 0;
  border-radius: 1.15rem;
  border: 1px solid rgba(118, 91, 77, 0.2);
  background: #f8f5f2;
  overflow: hidden;
}

.treatment-section .price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) fit-content(10rem);
  align-items: center;
  gap: 1rem;
  padding: 0.68rem 1rem;
  border-bottom: 1px solid rgba(118, 91, 77, 0.14);
}

.treatment-section .price-list li:last-child {
  border-bottom: 0;
}

.treatment-section .price-list span {
  min-width: 0;
  color: #615956;
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.treatment-section .price-list strong {
  justify-self: end;
  max-width: 100%;
  color: #322a28;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: right;
  overflow-wrap: anywhere;
}

.site-footer {
  display: block;
  align-items: stretch;
  justify-content: initial;
  gap: 0;
  width: 100vw;
  margin-top: clamp(3.5rem, 5vw, 4.75rem);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0;
  border: 0;
  border-radius: 1rem 1rem 0 0;
  background: #a97e87;
  box-shadow: none;
}

.site-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
  display: grid;
  gap: 2.75rem;
}

.footer-brand-mark {
  display: flex;
  justify-content: center;
}

.footer-brand-mark img {
  width: min(100%, 15rem);
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.footer-column {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.footer-column h3 {
  color: #fff;
  font-size: 1.95rem;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.footer-location-link {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-decoration: none;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #fff;
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.footer-social svg {
  display: block;
  width: 1.95rem;
  height: 1.95rem;
}

.footer-social-instagram svg {
  width: 1.95rem;
  height: 1.95rem;
}

.footer-social-facebook svg {
  width: 2.2rem;
  height: 2.2rem;
}

.footer-social-x svg {
  width: 1.95rem;
  height: 1.95rem;
}

.footer-social.is-placeholder {
  opacity: 0.92;
}

.footer-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-subnav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-subnav a:hover {
  color: #fff;
}

.footer-credit {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-credit a:hover {
  color: #fff;
}

.site-footer .location-link,
.site-footer .location-link:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1100px) {
  .home-hero-v2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0.5rem 0 2.2rem;
    text-align: center;
  }

  .home-hero-v2 .home-hero-copy {
    margin: 0 auto;
  }

  .home-hero-v2 .hero-actions,
  .home-hero-highlights {
    justify-content: center;
  }

  .home-hero-image {
    max-width: 28rem;
    margin: 0 auto;
  }

  .about-home-section {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-top: 1.6rem;
  }

  .about-home-media {
    min-height: 520px;
  }

  .nurse-led-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .nurse-led-image {
    min-height: 360px;
  }

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

  .recognition-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
  }

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

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

@media (min-width: 901px) and (max-width: 1100px) {
  .home-hero-v2 {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 2.1rem;
    padding: 1.1rem 0 1.4rem;
    text-align: left;
  }

  .home-hero-v2 .home-hero-copy {
    max-width: 30rem;
    margin: 0;
  }

  .home-hero-v2 h1 {
    max-width: 8.6ch;
    font-size: clamp(2.9rem, 5.6vw, 3.7rem);
    line-height: 0.96;
  }

  .home-hero-v2 .lead {
    max-width: 26ch;
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .home-hero-v2 .hero-actions {
    justify-content: flex-start;
    margin-top: 1.2rem;
  }

  .home-hero-highlights {
    display: grid;
    justify-content: flex-start;
    justify-items: start;
    gap: 0.9rem;
    margin-top: 1.4rem;
  }

  .home-hero-highlights li {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .home-hero-image {
    max-width: 22.5rem;
    margin: 0;
    justify-self: end;
    align-self: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem clamp(0.9rem, 4vw, 1.35rem);
  }

  .brand img {
    width: 156px;
  }

  .site-header .header-panel {
    left: 1rem;
    right: 1rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.95rem;
  }

  .header-phone {
    width: 100%;
    justify-content: center;
  }

  .service-showcase-grid,
  .review-grid-editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .treatment-section {
    gap: 1.3rem;
  }

  .treatment-section .price-list {
    border-radius: 1.35rem;
  }

  .treatment-section .price-list li {
    gap: 0.9rem;
    padding: 0.95rem 1rem;
  }

  .treatment-section .price-list span {
    font-size: 0.98rem;
  }

  .treatment-section .price-list strong {
    font-size: 1.22rem;
  }

  .recognition-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .home-hero-v2 {
    grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.84fr);
    align-items: center;
    gap: 1.8rem;
    padding: 1rem 0 1.35rem;
    text-align: left;
  }

  .home-hero-v2 .home-hero-copy {
    max-width: 25rem;
    margin: 0;
  }

  .home-hero-v2 h1 {
    max-width: 8.2ch;
    margin: 0;
    font-size: clamp(2.55rem, 6vw, 3.35rem);
    line-height: 0.97;
  }

  .home-hero-v2 .lead {
    max-width: 24ch;
    margin-top: 0.95rem;
    margin-left: 0;
    margin-right: 0;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .home-hero-v2 .hero-actions {
    justify-content: flex-start;
    margin-top: 1.1rem;
  }

  .home-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: flex-start;
    justify-items: start;
    gap: 0.85rem 1.2rem;
    margin-top: 1.35rem;
  }

  .home-hero-highlights li {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .home-hero-image {
    max-width: 20.5rem;
    margin: 0;
    justify-self: end;
    align-self: center;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] {
    background-size: 100% 100%, 100% 100%, 100% 100%;
    animation: none;
  }

  body[data-page="home"] .ambient {
    display: none;
  }

  body[data-page="home"] .site-header {
    background: rgba(255, 250, 246, 0.94);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .home-hero .hero-copy {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 241, 0.72));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 20px 46px rgba(112, 81, 68, 0.1);
  }

  .site-shell {
    padding: 0 1rem 0;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .home-hero-v2 {
    padding: 0.75rem 0 2.2rem;
  }

  .home-hero-v2 .home-hero-copy {
    max-width: min(100%, 23rem);
    margin: 0 auto;
    text-align: center;
  }

  .home-hero-v2 h1 {
    max-width: 11.2ch;
    margin: 0 auto;
    font-size: clamp(2.25rem, 10.6vw, 2.75rem);
    line-height: 1.1;
    text-align: center;
  }

  .home-hero-v2 .lead {
    margin-top: 1.2rem;
    max-width: 32ch;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.62;
  }

  .home-hero-v2 .hero-actions {
    margin-top: 1.35rem;
    justify-content: center;
  }

  .home-hero-highlights {
    gap: 0.8rem 1.4rem;
    margin-top: 1.8rem;
  }

  .home-hero-highlights li {
    font-size: 0.94rem;
  }

  .service-showcase-grid,
  .results-grid,
  .recognition-logo-row,
  .product-logo-row {
    grid-template-columns: 1fr;
  }

  .service-showcase-image {
    max-width: 22rem;
    margin: 0 auto;
  }

  .about-home-media {
    min-height: 400px;
  }

  .nurse-led-copy {
    padding: 1.55rem 1.2rem 1.4rem;
  }

  .nurse-led-copy h2 {
    font-size: 2rem;
  }

  .reviews-section {
    padding: 4.2rem 1rem;
  }

  .review-quote p {
    font-size: 1rem;
  }

  .site-footer-inner {
    padding: 3.6rem 1rem 1.8rem;
  }

  .footer-column h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 560px) {
  .treatment-section .price-list li {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .treatment-section .price-list strong {
    justify-self: flex-start;
    text-align: left;
  }

  .treatment-section .price-list li.price-list-priority-value-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .treatment-section .price-list li.price-list-priority-value-mobile span {
    order: 2;
  }

  .treatment-section .price-list li.price-list-priority-value-mobile strong {
    order: 1;
  }
}
