/* ============================================================
   EPIORA — style.css
   1. Reset
   2. Variables
   3. Base typography
   4. Layout utilities
   5. Preloader
   6. Navigation
   7. Fullscreen menu
   8. Hero
   9. Intro
   10. Work
   11. Featured
   12. Marquee
   13. Services
   14. Statement
   15. About preview / about page
   16. Contact CTA / contact page
   17. Project page
   18. Work page / filters
   19. Footer
   ============================================================ */

/* ============ 1. RESET ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

/* ============ 2. VARIABLES ============ */
:root {
  /* Palette */
  --bg: #F3F1E8;
  --bg-soft: #EDEAE0;
  --text: #111111;
  --text-secondary: #6F6F68;
  --border: #D8D5CA;
  --dark: #111111;
  --dark-bg: #161616;
  --dark-text: #F3F1E8;

  /* Gold accents */
  --gold: #dab46f;
  --gold-mid: #c89a45;
  --gold-deep: #5E2E0E;
  --gold-light: #e6c27d;

  /* Type */
  --font-display: "Bespoke Stencil", Arial, Helvetica, sans-serif;
  --font-sans: Arial, Helvetica, sans-serif;

  /* Layout */
  --container-max: 1600px;
  --gutter: clamp(20px, 4vw, 72px);
  --gap: clamp(24px, 4vw, 64px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.9s;

  /* Header */
  --header-h: 100px;
}

/* ============ 3. BASE TYPOGRAPHY ============ */
html {
  font-size: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection {
  background: var(--text);
  color: var(--bg);
}

h1,
h2,
h3 {
  font-weight: 500;
}

.font-stencil {
  font-family: var(--font-display);
  font-weight: 500;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: clamp(28px, 4vw, 64px);
}

/* ============ EDITORIAL DISPLAY WORDS ============ */
/* Giant outlined words used behind / emerging from imagery. */
.outline-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px var(--border);
  color: transparent;
  pointer-events: none;
  user-select: none;
}

@supports not (-webkit-text-stroke: 1px var(--border)) {
  .outline-word {
    color: var(--border);
  }
}

.outline-word--light {
  -webkit-text-stroke-color: rgba(243, 241, 232, 0.3);
}

/* Hero */
.hero__title,
.hero__meta,
.hero__scroll,
.hero__sub,
.hero__stats,
.hero__media-wrap {
  position: relative;
  z-index: 1;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: clamp(20px, 3vh, 40px);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(28px, 4vh, 56px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--border);
  max-width: min(56vw, 760px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-stat__num {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--gold-deep);
}

.hero-before-after {
  width: min(420px, 100%);
  margin-top: clamp(16px, 2vh, 24px);
}

.hero-before-after__label {
  margin-bottom: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 249, 235, 0.86);
}

.hero-before-after__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-before-after figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 235, 175, 0.35);
  border-radius: 14px;
  background: rgba(255, 249, 235, 0.14);
}

.hero-before-after span {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.52);
  color: #fff9ed;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-before-after img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

/* Intro */
.intro {
  position: relative;
}

.intro__giant {
  position: absolute;
  top: 0;
  left: -0.05em;
  z-index: 0;
  color: rgba(94, 46, 14, 0.28);
}

.intro__grid,
.intro .section-label {
  position: relative;
  z-index: 1;
}

/* Projects */
.project {
  position: relative;
}

.project__giant {
  position: absolute;
  top: -0.2em;
  left: -0.05em;
  z-index: 0;
}

.project__media {
  position: relative;
  z-index: 1;
}

.project__blurb {
  grid-column: 2 / -1;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 46ch;
}

/* Featured */
.featured__giant {
  position: absolute;
  bottom: -0.28em;
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  z-index: 1;
  font-size: clamp(3rem, 10vw, 10rem);
  white-space: nowrap;
}

.featured__overlay > * {
  position: relative;
  z-index: 2;
}

.featured__blurb {
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.85);
  max-width: 44ch;
}

/* Statement foot */
.statement__foot {
  margin-top: clamp(28px, 4vh, 48px);
  font-size: 0.71875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.55);
}

/* Contact CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
}

.contact-cta__giant {
  position: absolute;
  top: -0.16em;
  right: -0.05em;
  z-index: 0;
}

.contact-cta .container {
  position: relative;
  z-index: 1;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
}

.page-hero__giant {
  position: absolute;
  top: -0.16em;
  right: -0.05em;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* Project page imagery */
.project-hero {
  position: relative;
}

.project-hero .container {
  position: relative;
  z-index: 1;
}

.project-hero__media {
  position: relative;
  z-index: 1;
}

.project-image__giant {
  margin-bottom: -0.42em;
  position: relative;
  z-index: 0;
}

.project-image {
  position: relative;
  z-index: 1;
}

.project-image__caption {
  margin-top: 14px;
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero__title em,
.statement__big em {
  font-style: normal;
}

/* ============ 4. LAYOUT UTILITIES ============ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5em;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.link-arrow span {
  transition: transform 0.45s var(--ease-out);
}

.link-arrow:hover {
  color: var(--text-secondary);
}

.link-arrow:hover span {
  transform: translate(4px, -4px);
}

@media (hover: none) {
  .link-arrow:hover {
    color: var(--text);
  }
}

/* ============ 5. PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
}

.preloader__counter {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.preloader__line {
  width: min(280px, 50vw);
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.preloader__line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ---------- Image placeholder frame ---------- */
.img-frame {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(243, 241, 232, 0.035) 0 10px,
    rgba(243, 241, 232, 0) 10px 20px
  );
  border: 1px dashed rgba(243, 241, 232, 0.3);
  color: rgba(243, 241, 232, 0.4);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============ 6. NAVIGATION ============ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--gutter);
  background: #000000;
  backdrop-filter: blur(8px);
  color: var(--dark-text);
  transition: height 0.45s var(--ease-out), background-color 0.45s ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: #000000;
  backdrop-filter: blur(6px);
}

.brand {
  font-size: 0.9375rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.brand__logo {
  height: 132px;
  width: auto;
  display: block;
  background: transparent;
  opacity: 0.95;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transform: translateY(11px);
}

.brand__reg {
  font-size: 0.5625rem;
  vertical-align: super;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
  justify-self: center;
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 30px rgba(0, 0, 0, 0.12);
}

.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0;
  transition: color 0.3s ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--gold-light);
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ---------- Treatments dropdown ---------- */
.nav-item {
  position: relative;
}

.nav-item__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-item__btn::after {
  display: none;
}

.nav-item:hover .nav-item__btn,
.nav-item.is-open .nav-item__btn,
.nav-item.is-current .nav-item__btn {
  color: var(--gold-light);
}

.nav-item:hover .nav-item__btn::after,
.nav-item.is-open .nav-item__btn::after,
.nav-item.is-current .nav-item__btn::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-item__chev {
  display: inline-flex;
  color: var(--gold);
  transition: transform 0.35s ease;
}

.nav-item__chev svg {
  width: 11px;
  height: 11px;
  display: block;
}

.nav-item.is-open .nav-item__chev {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(760px, calc(100vw - 32px));
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(0, 0, 0, 0.96));
  border: 1px solid rgba(243, 241, 232, 0.16);
  border-top: 2px solid var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.4s var(--ease-out), visibility 0.35s;
}

.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown__inner {
  padding: 30px 30px 24px;
}

.dropdown__label {
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.dropdown__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(243, 241, 232, 0.15);
}

.dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.dropdown__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 12px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.92);
  border: 1px solid rgba(243, 241, 232, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.dropdown__list a::after {
  content: "↗";
  font-size: 0.8125rem;
  color: var(--gold);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown__list a:hover {
  color: #fff;
  background: rgba(218, 180, 111, 0.12);
  border-color: rgba(218, 180, 111, 0.35);
  transform: translateY(-1px);
}

.dropdown__list a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.dropdown__foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 241, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dropdown__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.dropdown__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.dropdown__tag {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.45);
}

/* ============ 8. HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + clamp(16px, 3vh, 32px)) var(--gutter) clamp(20px, 3.5vh, 40px);
}

.hero__media-wrap {
  position: absolute;
  top: calc(var(--header-h) + clamp(16px, 3vh, 32px));
  right: var(--gutter);
  width: min(36vw, 560px);
  overflow: hidden;
}

.hero__media {
  aspect-ratio: 4 / 5;
  will-change: transform;
}

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

.hero__meta {
  position: absolute;
  top: calc(var(--header-h) + clamp(16px, 3vh, 32px));
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: auto;
  max-width: 14ch;
}

.hero__title .reveal-line:nth-child(2) {
  margin-left: 10%;
}

.hero__title .reveal-line:nth-child(3) {
  margin-left: 22%;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: clamp(28px, 5vh, 64px);
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.hero__scroll span {
  display: inline-block;
  animation: scroll-bob 1.8s var(--ease-out) infinite;
}

.hero__scroll:hover {
  color: var(--text);
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Clinic hero ---------- */
.hero--clinic {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  min-height: calc(100svh - (clamp(12px, 1.5vw, 24px) * 2));
  height: calc(100svh - (clamp(12px, 1.5vw, 24px) * 2));
  padding: calc(var(--header-h) + clamp(18px, 3vh, 36px)) var(--gutter) clamp(24px, 4vh, 48px);
  margin: clamp(12px, 1.5vw, 24px);
  background: #ffffff;
  border-radius: clamp(16px, 1.8vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.58);
  box-shadow:
    0 28px 80px rgba(64, 32, 6, 0.18),
    0 0 0 1px rgba(255, 244, 211, 0.26),
    inset 0 0 0 1px rgba(255, 248, 232, 0.2),
    inset 0 -120px 160px rgba(83, 46, 8, 0.14);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg video,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  display: block;
  transform: none;
}

.hero__bg video {
  pointer-events: none;
  filter: brightness(0.72) contrast(0.92) saturate(0.9) blur(1.2px);
  transform: scale(1.05);
}

.hero--clinic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.10) 45%, rgba(255, 255, 255, 0.16)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(255, 250, 238, 0.26), transparent 30%);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  pointer-events: none;
}

.hero--clinic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.10) 35%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.hero--clinic > *:not(.hero__bg) {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.hero__brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(218, 180, 111, 0.3);
  letter-spacing: 0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ============ HERO NEW CONTENT ============ */
.hero__content--new {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: clamp(24px, 5vw, 80px);
  padding-left: clamp(40px, 8vw, 140px);
  padding-bottom: clamp(40px, 6vh, 80px);
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.hero__text-wrap {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: auto;
  transform: translateY(clamp(36px, 7vh, 96px));
}

.hero__eyebrow {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: clamp(6px, 1vh, 10px);
}

.hero__title-new {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2.5vh, 28px);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.hero__title-new span {
  color: var(--gold-light);
}

.hero__lede-new {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-bottom: clamp(24px, 3.5vh, 44px);
}

.hero__stats-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: clamp(24px, 3vh, 40px);
  margin-bottom: clamp(28px, 4vh, 48px);
  padding: clamp(14px, 2vh, 20px) clamp(20px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

.hero__stat-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: clamp(6px, 1vw, 12px) 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  min-width: 0;
}

.hero__stat-new:last-child {
  border-right: none;
}

.hero__stat-icon {
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero__stat-label {
  font-size: clamp(0.5625rem, 0.75vw, 0.625rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  white-space: normal;
}

.hero__actions-new {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: center;
}

.hero__actions-new .cta-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 1.4vw, 18px) clamp(24px, 2.5vw, 40px);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  background: linear-gradient(115deg, #e9c98a 0%, #d4a95e 55%, #e9c98a 100%);
  border: 1px solid var(--gold);
  color: var(--dark);
}

.hero__actions-new .cta-big:hover {
  background: transparent;
  color: var(--gold-light);
}

.hero__actions-new .cta-big--outline {
  background: transparent;
  border: 1px solid rgba(218, 180, 111, 0.6);
  color: var(--gold-light);
}

.hero__actions-new .cta-big--outline:hover {
  background: rgba(218, 180, 111, 0.15);
  border-color: var(--gold);
}

/* ============ CLINIC BACKGROUND ============ */
body.home-clinic,
body.clinic-page {
  background: #f3f1e8 url('../assets/bg.png.png') center 15% / cover no-repeat fixed;
}

body.home-clinic::before,
body.clinic-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(218, 180, 111, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: gold-glow 6s ease-in-out infinite;
}

@keyframes gold-glow {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

body.home-clinic::after,
body.clinic-page::after {
  content: "";
  position: absolute;
  top: 100vh;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) {
  position: relative;
  background: rgba(10, 10, 10, 0.66);
  color: var(--dark-text);
  border-top: 1px solid rgba(218, 180, 111, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .section-label,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-intro__label,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-block__label,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .contact-form-section__info .section-label,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .next-project__label {
  color: var(--gold-light);
}

body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .intro__statement,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .intro__body,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .about-studio__text,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .about-philosophy__text,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-intro__text,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-intro__note,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-block__text,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-quote cite,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .metric,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .contact-form-section__note,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .contact-form-section__status,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .next-project__link,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .about-stack__row,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .about-skill,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .editorial-row__text,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .treatment__desc,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .treatments__lede {
  color: rgba(243, 241, 232, 0.82);
}

body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .metric__num,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-hero__meta,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .project-image__caption,
body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .editorial-row__n {
  color: var(--gold-light);
}

body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .about-copy__focus {
  color: var(--gold-light);
}

body.clinic-page main > section:not(.hero):not(.page-hero):not(.project-hero) .about-copy__rest {
  color: rgba(243, 241, 232, 0.82);
}


body.clinic-page .project-hero__figure,
body.clinic-page .project-image,
body.clinic-page .about-studio__media,
body.clinic-page .treatment__media,
body.clinic-page .branch-card__media {
  border-radius: 18px;
  overflow: hidden;
}

body.clinic-page .about-stack__list,
body.clinic-page .editorial-rows,
body.clinic-page .project-metrics {
  border-top-color: rgba(243, 241, 232, 0.16);
}

body.clinic-page .about-stack__row,
body.clinic-page .editorial-row,
body.clinic-page .project-metrics {
  border-bottom-color: rgba(243, 241, 232, 0.16);
}

body.clinic-page .field__input {
  color: var(--dark-text);
  border-bottom-color: rgba(243, 241, 232, 0.28);
}

body.clinic-page .field__label {

  font-family: var(--font-display);
  font-weight: 500;  color: rgba(243, 241, 232, 0.7);
}

body.clinic-page .field__input::placeholder {
  color: rgba(243, 241, 232, 0.55);
}

body.clinic-page select.field__input {
  background-image: linear-gradient(45deg, transparent 50%, rgba(243, 241, 232, 0.7) 50%),
    linear-gradient(135deg, rgba(243, 241, 232, 0.7) 50%, transparent 50%);
}

body.clinic-page .contact-form-section__email a,
body.clinic-page .contact-cta__email {
  color: var(--dark-text);
  border-bottom-color: rgba(243, 241, 232, 0.32);
}

body.clinic-page .contact-form-section__email a:hover,
body.clinic-page .contact-cta__email:hover {
  border-bottom-color: var(--gold);
}

body.clinic-page .cta-big {
  border-color: var(--gold);
  background: linear-gradient(115deg, #e9c98a 0%, #d4a95e 55%, #e9c98a 100%);
  color: var(--dark);
}

body.clinic-page .cta-big:hover {
  background: transparent;
  color: var(--dark-text);
}

body.clinic-page .site-footer,
body.clinic-page .next-project {
  border-top-color: rgba(218, 180, 111, 0.2);
}

/* ============ CLINIC SECTION REDESIGN (dark blurred lower half) ============ */

/* Treatments — frosted glass cards */
.home-clinic .treatments__title {
  color: var(--dark-text);
}

.home-clinic .treatments__lede {
  color: rgba(243, 241, 232, 0.72);
}

.home-clinic .treatments__head .treatments__lede {
  color: #111111;
  font-weight: 700;
}

.home-clinic .treatment {
  position: relative;
  padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.4vw, 32px) clamp(28px, 3.4vw, 44px);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.38);
  border: 1px solid rgba(218, 180, 111, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.home-clinic .treatment:hover {
  transform: translateY(-6px);
  border-color: rgba(218, 180, 111, 0.6);
  box-shadow: none;
}

.home-clinic .treatment__media {
  border-radius: 16px;
}

.home-clinic .treatment__tag {
  margin-top: clamp(18px, 2.5vh, 26px);
  color: var(--gold-light);
}

.home-clinic .treatment__num {
  color: var(--gold);
  font-family: var(--font-display);
}

.home-clinic .treatment__title {
  margin-top: 14px;
  color: var(--dark-text);
}

.home-clinic .treatment__divider {
  width: 84px;
  background: linear-gradient(90deg, var(--gold), rgba(218, 180, 111, 0.25));
}

.home-clinic .treatment__desc {
  color: rgba(243, 241, 232, 0.68);
}

body.home-clinic .treatments__label {
  display: block;
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", var(--font-display), var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c89a45;
  -webkit-text-fill-color: #c89a45;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none;
  margin: 0;
  text-align: center;
  width: 100%;
}

body.home-clinic .treatments__amp {
  color: #111111;
  -webkit-text-fill-color: #111111;
}

/* About intro */
body.home-clinic .intro {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(218, 180, 111, 0.18), transparent 60%),
    linear-gradient(135deg, #2b1b08 0%, #5E2E0E 45%, #0e0c09 100%);
}

body.home-clinic .intro::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 1.5vw, 24px);
  border-radius: clamp(16px, 1.8vw, 24px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5) 100%),
    url("../assets/herobg.jpeg") center 52% / cover no-repeat;
  border: 1px solid rgba(218, 180, 111, 0.3);
  box-shadow: none;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  pointer-events: none;
}

body.home-clinic .intro .container {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-block: clamp(18px, 3vh, 32px);
}

body.home-clinic .intro__grid--home {
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
}

body.home-clinic .intro__grid--about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  height: 100%;
}

body.home-clinic .intro__video--about {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  border-radius: clamp(16px, 1.8vw, 24px) 0 0 clamp(16px, 1.8vw, 24px);
  border-right: 1px solid rgba(255, 235, 175, 0.22);
  box-shadow: none;
  overflow: hidden;
}

body.home-clinic .intro__video--about video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.home-clinic .intro:has(.intro__grid--about)::before {
  inset: clamp(12px, 1.5vw, 24px);
  border-radius: clamp(16px, 1.8vw, 24px);
  background:
    linear-gradient(90deg, rgba(255, 230, 160, 0.52), rgba(212, 169, 94, 0.72) 55%, rgba(94, 46, 14, 0.82) 100%),
    url("../assets/herobg.jpeg") center 52% / cover no-repeat;
  border: 1px solid rgba(218, 180, 111, 0.3);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

body.home-clinic .intro:has(.intro__grid--about)::after {
  content: "";
  position: absolute;
  top: clamp(12px, 1.5vw, 24px);
  right: clamp(12px, 1.5vw, 24px);
  bottom: clamp(12px, 1.5vw, 24px);
  width: calc(50% - clamp(12px, 1.5vw, 24px));
  z-index: 0;
  border-radius: 0 clamp(16px, 1.8vw, 24px) clamp(16px, 1.8vw, 24px) 0;
  background: rgba(218, 180, 111, 0.025);
  border-left: 1px solid rgba(255, 235, 175, 0.22);
  box-shadow: none;
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  pointer-events: none;
}

body.home-clinic .intro:has(.intro__grid--about) .about-tone--gold {
  color: var(--gold-light);
}

body.home-clinic .intro:has(.intro__grid--about) .about-tone--dark {
  color: #ffffff;
}

body.home-clinic .intro:has(.intro__grid--about) .container {
  height: 100%;
  width: 100%;
  max-width: none;
  padding-block: clamp(12px, 1.5vw, 24px);
  padding-inline: clamp(12px, 1.5vw, 24px);
}

body.home-clinic .intro__content--about {
  align-self: center;
  justify-self: center;
  width: min(460px, calc(100% - 32px));
  max-width: 460px;
  min-width: 0;
  height: auto;
  justify-content: center;
  align-content: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  margin-left: 0;
  transform: translateX(clamp(-120px, -8vw, -72px));
  padding: clamp(20px, 3vw, 44px) 0;
  box-sizing: border-box;
  overflow: visible;
}

body.home-clinic .intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

body.home-clinic .intro__statement--about {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  max-width: 100%;
  line-height: 1.05;
  margin-bottom: clamp(16px, 2.5vh, 28px);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  align-self: flex-start;
}

body.home-clinic .intro__statement--about .about-tone {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  overflow-wrap: normal;
}

body.home-clinic .intro__statement--about .about-tone--gold {
  color: #111111;
  -webkit-text-fill-color: #111111;
}

body.home-clinic .intro__statement--about .about-tone--dark {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

body.home-clinic .intro__statement--about .about-tone--dark:first-child {
  font-size: 1.18em;
}

body.home-clinic .intro__content--about .section-label {
  color: var(--gold-light);
}

body.home-clinic .intro__content--about .intro__lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  line-height: 1.5;
  width: 100%;
  max-width: none;
}

body.home-clinic .intro__lede-line {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  overflow-wrap: normal;
}

body.home-clinic .intro__content--about .about-stats {
  align-self: center;
  width: min(820px, 100%);
  max-width: 820px;
}

body.home-clinic .intro__body--about {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: none;
  align-items: flex-start;
}

body.home-clinic .intro__body--about p {
  margin: 0;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.82) !important;
  overflow-wrap: anywhere;
  width: 100%;
}

body.home-clinic .about-copy--lead {
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.58;
}

body.home-clinic .about-copy--feature {
  font-size: clamp(0.9rem, 0.98vw, 1rem);
  line-height: 1.62;
}

body.home-clinic .about-copy--compact {
  font-size: clamp(0.86rem, 0.92vw, 0.94rem);
  line-height: 1.56;
}

.about-tone--gold {
  color: var(--gold-deep);
}

.about-tone--mid {
  color: var(--gold-mid);
}

.about-tone--dark {
  color: #111111;
}

.about-tone--soft {
  color: rgba(17, 17, 17, 0.72);
}

.about-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
}

body.home-clinic .intro__body--about .about-copy__focus {
  display: block;
  margin-bottom: 3px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--gold-deep);
}

body.home-clinic .intro__body--about .about-copy__rest {
  display: block;
  font-size: clamp(0.86rem, 0.98vw, 0.98rem);
  line-height: 1.5;
}

body.home-clinic .intro__media {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  border: 1px solid rgba(218, 180, 111, 0.24);
  box-shadow: 0 24px 70px rgba(64, 32, 6, 0.16);
}

body.home-clinic .intro__content {
  align-self: center;
  justify-self: end;
  max-width: 58ch;
}

body.home-clinic .intro__statement {
  color: #111111 !important;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  max-width: 11ch;
  text-shadow: none;
  -webkit-text-fill-color: #111111;
}

body.home-clinic .intro__lede,
body.home-clinic .intro__content p {
  color: #111111 !important;
}

body.home-clinic .intro__content p {
  font-size: 0.98rem;
  line-height: 1.65;
}

body.home-clinic .intro__lede {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.65;
  color: #111111 !important;
  max-width: 50ch;
}

body.home-clinic .intro__badges span {
  color: #111111;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(94, 46, 14, 0.14);
}

body.home-clinic .intro__giant {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(230, 194, 125, 0.98);
  z-index: 5;
  pointer-events: none;
  text-shadow: none;
}

@supports not (-webkit-text-stroke: 1px var(--border)) {
  .home-clinic .intro__giant { color: rgba(230, 194, 125, 0.98); }
}

body.home-clinic .intro__badges span {
  box-shadow: 0 10px 24px rgba(64, 32, 6, 0.08);
}

.home-clinic .editorial-rows {
  border-top-color: rgba(243, 241, 232, 0.18);
}

.home-clinic .editorial-row {
  border-bottom-color: rgba(243, 241, 232, 0.18);
  transition: padding-left 0.4s var(--ease-out);
}

.home-clinic .editorial-row:hover {
  padding-left: clamp(12px, 2vw, 28px);
}

.home-clinic .editorial-row__n {
  color: var(--gold);
}

.home-clinic .editorial-row__text {
  color: var(--dark-text);
}

.home-clinic .editorial-row__text small {
  color: rgba(243, 241, 232, 0.55);
}

/* Testimonials — glass cards on the blur */
.home-clinic .testimonials {
  background: transparent;
}

body.home-clinic .testimonials {
  padding-block: clamp(24px, 4vh, 48px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

body.home-clinic .testimonials__head {
  margin-top: 0;
  margin-bottom: clamp(12px, 1.8vh, 20px);
  align-items: center;
}

body.home-clinic .testimonials__eyebrow {
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

body.home-clinic .testimonials__title {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  max-width: 10ch;
}

body.home-clinic .testimonials__lede {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
  max-width: 30ch;
}

body.home-clinic .celeb-gallery--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(10px, 1.6vh, 16px);
}

body.home-clinic .celeb-card {
  padding: clamp(10px, 1.2vw, 14px);
  border-radius: 18px;
}

body.home-clinic .celeb-card--featured {
  grid-row: auto;
}

body.home-clinic .celeb-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

body.home-clinic .celeb-card__caption {
  margin-top: 10px;
}

body.home-clinic .celeb-card__caption span {
  font-size: 0.95rem;
}

body.home-clinic .celeb-card__caption small {
  margin-top: 4px;
}

.home-clinic .testimonial {
  background: rgba(17, 17, 17, 0.38);
  border: 1px solid rgba(218, 180, 111, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-clinic .testimonial:hover {
  border-color: rgba(218, 180, 111, 0.6);
  box-shadow: none;
}

.home-clinic .testimonial__meta {
  border-top-color: rgba(218, 180, 111, 0.22);
}

.home-clinic .testimonial__role {
  color: var(--gold-light);
}

/* Contact CTA — gold foil */
.home-clinic .contact-cta {
  border-top-color: rgba(218, 180, 111, 0.25);
}

.home-clinic .contact-cta__giant {
  -webkit-text-stroke-color: rgba(218, 180, 111, 0.28);
}

@supports not (-webkit-text-stroke: 1px var(--border)) {
  .home-clinic .contact-cta__giant { color: rgba(218, 180, 111, 0.28); }
}

.home-clinic .contact-cta__label {

  font-family: var(--font-display);
  font-weight: 500;  color: var(--gold-light);
}

.home-clinic .contact-cta__title {
  color: transparent;
  background: linear-gradient(115deg, #c89a45 0%, #5E2E0E 50%, #c89a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.45;
}

body.clinic-page .contact-cta__title,
body.clinic-page .book-cta__title {
  color: transparent;
  background: linear-gradient(115deg, #c89a45 0%, #5E2E0E 50%, #c89a45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.45;
}

.home-clinic .cta-big {
  border-color: var(--gold);
  background: linear-gradient(115deg, #e9c98a 0%, #d4a95e 55%, #e9c98a 100%);
  color: var(--dark);
}

.home-clinic .cta-big:hover {
  background: transparent;
  color: var(--dark-text);
  border-color: var(--dark-text);
}

@media (hover: none) {
  .home-clinic .cta-big {
    background: linear-gradient(115deg, #e9c98a 0%, #d4a95e 55%, #e9c98a 100%);
    color: var(--dark);
  }
}

.home-clinic .contact-cta__email {
  color: var(--dark-text);
  border-bottom-color: rgba(243, 241, 232, 0.3);
}

.home-clinic .contact-cta__email:hover {
  border-bottom-color: var(--gold);
}

/* Footer */
.home-clinic .site-footer {
  border-top: 1px solid rgba(218, 180, 111, 0.25);
}

.home-clinic .site-footer__inner,
.home-clinic .site-footer a {
  color: rgba(243, 241, 232, 0.72);
}

.home-clinic .site-footer a:hover {
  color: var(--gold-light);
}

.home-clinic .site-footer__top span {
  color: var(--gold);
}

.home-clinic .link-arrow {
  color: var(--dark-text);
}

.home-clinic .link-arrow:hover {
  color: var(--gold-light);
}

.hero__aside {
  position: absolute;
  top: 20%;
  left: var(--gutter);
  transform: translateY(-50%);
  z-index: 1;
  width: min(560px, calc(100vw - 40px));
}

.hero__aside-desc {
  margin-top: clamp(16px, 2.5vh, 28px);
  font-size: clamp(1.0625rem, 1.4vw, 1.375rem);
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.78);
  max-width: 46ch;
}

body.home-clinic .hero__aside-desc {
  margin-left: -36px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px) saturate(145%);
  -webkit-backdrop-filter: blur(10px) saturate(145%);
}

.hero__aside-desc em {
  font-style: normal;
  font-weight: 700;
}

.hero--clinic .hero__title {
  position: relative;
  z-index: 1;
  margin-top: clamp(20px, 3.5vh, 40px);
  max-width: none;
}

.hero--clinic .hero__title .reveal-line:nth-child(2),
.hero--clinic .hero__title .reveal-line:nth-child(3) {
  margin-left: 0;
}

body.home-clinic .hero__title .reveal-line:nth-child(2),
body.home-clinic .hero__title .reveal-line:nth-child(3) {
  margin-left: 0;
}

.hero--clinic .hero__lede {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: clamp(20px, 3vh, 36px) 0 0;
  color: var(--text-secondary);
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}

.hero--clinic .hero__stats {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  width: min(64vw, 820px);
  max-width: none;
  margin: clamp(32px, 5vh, 56px) 0 0;
  padding-top: clamp(24px, 3vh, 36px);
}

.hero--clinic .hero-stat {
  align-items: flex-start;
  flex: 1 1 150px;
  min-width: 140px;
}

.hero--clinic .hero-stat__icon {
  font-size: 1.05rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hero--clinic .hero-stat__num {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.hero--clinic .hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(32px, 5vh, 56px);
}

.hero__panel {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 3vh, 36px);
  width: 100%;
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 20px;
  background: rgba(243, 241, 232, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(218, 180, 111, 0.55);
  box-shadow: 0 30px 80px rgba(94, 46, 14, 0.15);
}

.hero__aside .hero__title {
  margin-top: clamp(24px, 3vh, 36px);
  max-width: none;
  font-size: clamp(2.25rem, 3.4vw, 4rem);
}

.hero__panel .hero__stats {
  width: 100%;
  max-width: none;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.8vw, 28px);
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.hero__panel .hero-stat {
  flex: 1 1 0;
  min-width: 0;
  gap: 6px;
}

.hero__panel .hero-stat__num {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}

.hero__aside .hero__actions {
  margin-top: clamp(12px, 2vh, 20px);
  flex-wrap: nowrap;
}

.hero--clinic .hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  min-width: 240px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.hero--clinic .hero__btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(218, 180, 111, 0.35);
}

.hero--clinic .hero__btn span {
  transition: transform 0.4s var(--ease-out);
}

.hero--clinic .hero__btn:hover span {
  transform: translate(4px, -4px);
}

.hero--clinic .hero__explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  min-width: 240px;
  border-radius: 999px;
  border: 0;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.hero--clinic .hero__explore:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(218, 180, 111, 0.35);
}

.hero--clinic .hero__explore span {
  transition: transform 0.4s var(--ease-out);
}

.hero--clinic .hero__explore:hover span {
  transform: translate(4px, -4px);
}

.hero--clinic .hero__scroll {
  position: relative;
  z-index: 1;
  margin-left: 0;
}

/* ============ TREATMENTS / SERVICES ============ */
.treatments {
  padding-block: clamp(80px, 12vh, 160px) clamp(96px, 14vh, 180px);
}

body.home-clinic .treatments {
  min-height: 100svh;
  padding-block: clamp(24px, 4vh, 44px);
  display: flex;
  align-items: center;
}

.treatments__head-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(32px, 6vw, 120px);
  align-items: end;
  margin-top: clamp(28px, 4vh, 48px);
}

.treatments__title {
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.treatments__lede {
  color: var(--text-secondary);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
}

.treatments__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(48px, 7vh, 88px);
}

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

body.home-clinic .treatments__head-grid {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.95fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: 0;
}

body.home-clinic .treatments__title {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 10ch;
}

body.home-clinic .treatments__lede {
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  line-height: 1.55;
}

body.home-clinic .treatments__list--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  margin-top: clamp(18px, 3vh, 28px);
}

.treatment {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.treatment__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  color: inherit;
}

.treatments__list--catalog .treatment__link {
  gap: 0;
}

.treatments__list--catalog .treatment__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.home-clinic .treatment {
  padding: clamp(12px, 1.2vw, 18px) clamp(12px, 1.2vw, 18px) clamp(14px, 1.4vw, 20px);
  border-radius: 18px;
}

body.home-clinic .treatment__link {
  gap: 0;
}

body.home-clinic .treatment__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.home-clinic .treatment__tag {
  margin-top: 0;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  gap: 8px;
}

body.home-clinic .treatment__title {
  margin-top: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.12;
}

body.home-clinic .treatment__desc {
  display: none;
}

body.home-clinic .treatments__more {
  display: none;
}

.treatments__list--catalog .treatment__tag {
  margin-top: 0;
}

.treatments__list--catalog .treatment__title {
  margin-top: 0;
}

.treatments__list--catalog .treatment__desc {
  margin-top: 0;
  max-width: none;
}

.treatment__link:hover .treatment__title {
  color: var(--gold-light);
}

.treatment__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.treatment__tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.treatment__num {
  color: var(--text-secondary);
}

.treatment__title {
  margin-top: 16px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
  text-transform: uppercase;
}

.treatment__divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin-top: 20px;
}

.treatment__desc {
  margin-top: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 52ch;
}

.treatments__more {
  margin-top: clamp(40px, 6vh, 72px);
  display: flex;
  justify-content: center;
}

/* ============ 9. INTRO ============ */
.intro {
  padding-block: clamp(120px, 20vh, 260px) clamp(80px, 14vh, 180px);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: clamp(32px, 6vw, 120px);
  align-items: end;
}

.intro__statement {
  font-size: clamp(2.4rem, 5.4vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.intro__body {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 40ch;
}

.intro__body p {
  margin: 0;
}

.intro__body p + p {
  margin-top: 16px;
}

.intro__media {
  overflow: hidden;
  border-radius: 24px;
}

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

.intro__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__lede {
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.7;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(18px, 2.4vh, 30px);
  padding: clamp(12px, 1.8vh, 18px) clamp(10px, 1.4vw, 18px);
  background: rgba(218, 180, 111, 0.16);
  border: 1px solid rgba(255, 235, 175, 0.34);
  border-radius: 16px;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 28px rgba(94, 46, 14, 0.14);
  max-width: 100%;
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 235, 175, 0.24);
  border-bottom: 0;
  box-sizing: border-box;
  min-width: 0;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #111111;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.about-stat__plus {
  font-size: 0.6em;
  color: var(--gold-deep);
}

.about-stat__label {
  font-size: clamp(0.52rem, 0.68vw, 0.68rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
  white-space: nowrap;
}

.intro__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.intro__badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(218, 180, 111, 0.32);
  background: rgba(255, 247, 224, 0.1);
  color: var(--gold-light);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============ 10. WORK ============ */
.work {
  padding-block: clamp(64px, 10vh, 140px);
}

.work__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.work__head .section-label {
  margin-bottom: 0;
}

.work__years {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.work__list {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 10vh, 140px);
  margin-top: clamp(48px, 7vh, 88px);
}

.project {
  width: 100%;
}

.project__link {
  display: block;
}

.project__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}

.project--portrait-right .project__media,
.project--portrait-left .project__media {
  aspect-ratio: 3 / 4;
}

.project__figure {
  height: 100%;
  will-change: transform;
}

.project__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.project__link:hover .project__figure img {
  transform: scale(1.04);
}

.project--wide {
  display: grid;
  grid-template-columns: 1fr;
}

.project--portrait-right {
  width: 58%;
  margin-left: auto;
}

.project--portrait-left {
  width: 58%;
}

.project__info {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: clamp(12px, 2vw, 32px);
  padding-top: 18px;
}

.project__num {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.project__title {
  font-size: clamp(1.6rem, 3.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  transform: translateX(0);
  transition: transform 0.6s var(--ease-out);
}

.project__link:hover .project__title {
  transform: translateX(12px);
}

.project__meta {
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: right;
}

.work__more {
  margin-top: clamp(56px, 8vh, 96px);
  display: flex;
  justify-content: center;
}

/* ============ 11. FEATURED ============ */
.featured {
  padding-block: clamp(56px, 8vh, 120px);
}

.featured__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  will-change: transform;
}

.featured__media {
  aspect-ratio: 16 / 9;
  max-height: 92vh;
}

.featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.94);
  will-change: transform;
}

.featured__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vh, 24px);
  text-align: center;
  color: var(--dark-text);
  background: rgba(17, 17, 17, 0.35);
}

.featured__label {
  font-size: 0.71875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
}

.featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.featured__cta {
  color: var(--dark-text);
  border-bottom-color: rgba(243, 241, 232, 0.4);
}

.featured__cta:hover {
  color: var(--dark-text);
  border-bottom-color: var(--dark-text);
}

/* ============ 12. MARQUEE ============ */
.marquee {
  overflow: hidden;
  padding-block: clamp(32px, 5vh, 64px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: grab;
}

.marquee.is-dragging {
  cursor: grabbing;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__track span {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding-right: 0.45em;
  user-select: none;
}

.marquee__track i {
  font-style: normal;
  color: var(--text-secondary);
  padding-inline: 0.35em;
}

/* ============ 13. SERVICES ============ */
.services {
  padding-block: clamp(80px, 14vh, 200px);
}

.services__title {
  margin-top: clamp(20px, 3vh, 40px);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 18ch;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(40px, 6vh, 80px);
}

.service-card {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: clamp(14px, 1.6vw, 24px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
}

.service-card__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__body {
  padding: clamp(16px, 2vw, 28px) clamp(4px, 1vw, 12px) clamp(8px, 1vw, 16px);
}

.service-card__tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.service-card__num {
  color: var(--gold-deep);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.service-card__title {
  font-size: clamp(1.25rem, 1.8vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 14px;
}

.service-card__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-block: 16px 14px;
}

.service-card__desc {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  max-width: 40ch;
}

.service-card--cta {
  background: var(--dark);
}

.service-card--cta .service-card__num,
.service-card--cta .service-card__title {
  color: var(--gold-light);
}

.service-card--cta .service-card__desc {
  color: rgba(243, 241, 232, 0.7);
}

.service-card--cta .service-card__divider {
  background: rgba(243, 241, 232, 0.18);
}

.service-card__cta {
  padding: clamp(16px, 2vw, 28px) clamp(4px, 1vw, 12px) clamp(8px, 1vw, 16px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
}

.service-card__go {
  margin-top: auto;
  padding-top: 28px;
  color: var(--gold-light);
}

/* ============ 14. STATEMENT ============ */
.statement {
  background: var(--dark);
  color: var(--dark-text);
  padding-block: clamp(96px, 16vh, 240px);
}

.statement__big {
  font-size: clamp(2.6rem, 7vw, 7.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.statement__big + .statement__big {
  margin-top: clamp(8px, 2vh, 24px);
}

.statement__big .font-stencil {
  color: var(--dark-text);
}

/* ============ 15. ABOUT PREVIEW / ABOUT PAGE ============ */
.about-preview {
  padding-block: clamp(96px, 16vh, 240px);
}

.about-preview__grid--home,
.vision__grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(40px, 6vw, 140px);
}

.about-preview__media,
.owner-card__media {
  overflow: hidden;
  border-radius: 22px;
}

.about-preview__media img,
.owner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__media {
  aspect-ratio: 16 / 10;
}

.about-preview__body,
.vision__body {
  color: rgba(243, 241, 232, 0.8);
  max-width: 42ch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vision {
  padding-block: clamp(96px, 14vh, 220px);
}

.vision__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: start;
}

.vision__title {
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.vision__mission {
  color: rgba(17, 17, 17, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.vision__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.vision__points span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(94, 46, 14, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--gold-deep);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.owner-grid {
  margin-top: clamp(36px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.owner-card {
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.38);
  border: 1px solid rgba(218, 180, 111, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.owner-card__media {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.owner-card__label,
.celeb-card__caption small {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.owner-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-top: 12px;
}

.owner-card__subtitle {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.7);
}

.owner-card__text {
  color: rgba(243, 241, 232, 0.8);
  margin-top: 14px;
}

body.home-clinic .vision__grid {
  grid-template-columns: 1fr;
  align-items: start;
}

body.home-clinic .vision__layout {
  align-items: stretch;
}

body.home-clinic .vision__body {
  color: rgba(17, 17, 17, 0.82);
  max-width: 56ch;
  margin-inline: auto;
  text-align: center;
  align-self: center;
}

body.home-clinic .vision__title {
  color: #111111;
  max-width: none;
}

body.home-clinic .vision .section-label {
  color: var(--gold-deep);
}

body.home-clinic .owner-card__subtitle,
body.home-clinic .owner-card__text {
  color: rgba(243, 241, 232, 0.78);
}

body.home-clinic .owner-card__label {
  color: var(--gold-light);
}

body.home-clinic .owner-card--left {
  align-self: start;
}

body.home-clinic .owner-card--right {
  align-self: end;
}

.celeb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.celeb-gallery--mixed {
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
}

.celeb-card--featured {
  grid-row: span 2;
}

.celeb-card {
  margin: 0;
  padding: clamp(16px, 2vw, 20px);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.38);
  border: 1px solid rgba(218, 180, 111, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.celeb-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
}

.celeb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celeb-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.celeb-card--video .celeb-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.35));
}

.celeb-card__play {
  position: absolute;
  inset: auto auto 18px 18px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(243, 241, 232, 0.92);
  color: var(--dark);
  font-size: 0.9rem;
}

.celeb-card--video .celeb-card__play {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.celeb-card__caption {
  margin-top: 16px;
}

.celeb-card__caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.celeb-card__caption small {
  margin-top: 8px;
}

body.home-clinic .celeb-gallery--mixed,
body.home-clinic .celeb-gallery--compact {
  grid-auto-rows: minmax(0, auto);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(40px, 6vw, 140px);
}

.about-preview__title {
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.about-preview__side {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vh, 64px);
}

.about-preview__body {
  color: var(--text-secondary);
  max-width: 42ch;
}

.about-preview__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text);
  letter-spacing: -0.01em;
  min-width: 4.5ch;
}

/* About page */
.page-hero {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + clamp(32px, 6vh, 64px)) 0 clamp(40px, 6vh, 72px);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 10.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.page-hero__title .reveal-line:nth-child(2) {
  margin-left: 8%;
}

.page-hero__meta {
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: clamp(24px, 4vh, 48px);
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.about-studio,
.about-philosophy {
  padding-block: clamp(80px, 12vh, 160px);
}

.about-studio {
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.about-studio .section-label {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.about-philosophy__grid {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: clamp(24px, 4vw, 96px);
}

.about-philosophy__grid .section-label {
  margin-bottom: 0;
}

.about-studio__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  width: min(78%, 980px);
  margin-bottom: clamp(28px, 5vw, 64px);
}

.about-studio__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-studio__text,
.about-philosophy__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 84ch;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.5vw, 1.375rem);
  line-height: 1.6;
}

.about-copy__focus {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--gold-deep);
}

.about-copy__rest {
  display: block;
  font-size: clamp(0.98rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  max-width: 58ch;
}


.about-skills,
.about-stack {
  padding-block: clamp(64px, 10vh, 140px);
}

.about-skills {
  background: var(--dark);
  color: var(--dark-text);
}

.about-skills .section-label {
  color: rgba(243, 241, 232, 0.55);
}

.about-skills__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(243, 241, 232, 0.25);
}

.about-skill {
  border-bottom: 1px solid rgba(243, 241, 232, 0.25);
  padding-block: clamp(20px, 3vh, 36px);
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-skill:nth-child(odd) {
  padding-right: 24px;
}

.about-skill:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(243, 241, 232, 0.25);
}

.about-stack__list {
  border-top: 1px solid var(--border);
}

.about-stack__row {
  border-bottom: 1px solid var(--border);
  padding-block: clamp(18px, 2.6vh, 30px);
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 500;
  transition: padding-left 0.5s var(--ease-out), color 0.3s ease;
}

.about-stack__row:hover {
  padding-left: 16px;
  color: var(--text-secondary);
}

/* ============ 16. TESTIMONIALS ============ */
.testimonials {
  background: var(--dark);
  color: var(--dark-text);
  padding-block: clamp(96px, 16vh, 220px);
}

.testimonials .section-label {
  color: var(--gold-light);
}

.testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(20px, 3vh, 40px);
  margin-bottom: clamp(40px, 6vh, 72px);
}

.testimonials__title {
  font-size: clamp(2.4rem, 5.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
}

.testimonials__lede {
  max-width: 34ch;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.6);
}

.testimonials__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.testimonials__more {
  font-size: 0.8125rem;
  white-space: nowrap;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 28px);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 2.4vw, 34px);
  border-radius: 20px;
  background: rgba(243, 241, 232, 0.04);
  border: 1px solid rgba(243, 241, 232, 0.1);
  margin: 0;
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(218, 180, 111, 0.45);
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.9375rem;
}

.testimonial__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(243, 241, 232, 0.85);
  flex: 1;
}

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 241, 232, 0.12);
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.testimonial__role {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: rgba(243, 241, 232, 0.55);
  margin-top: 4px;
}

/* ============ 17. CONTACT CTA / CONTACT PAGE ============ */
.contact-cta {
  padding-block: clamp(96px, 16vh, 240px) clamp(64px, 10vh, 140px);
  border-top: 1px solid var(--border);
}

.contact-cta__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: clamp(28px, 4vw, 56px);
}

.contact-cta__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.contact-cta__title .reveal-line:nth-child(2) {
  margin-left: 12%;
}

.contact-cta__title .reveal-line:nth-child(3) {
  margin-left: 26%;
}

.contact-branches__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 28px 0 34px;
}

.contact-branch-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(218, 180, 111, 0.2);
  background: rgba(17, 17, 17, 0.34);
  color: var(--text);
  font-size: 0.78125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.contact-branch-link span {
  color: var(--gold-mid);
  transition: transform 0.35s var(--ease-out);
}

.contact-branch-link:hover {
  transform: translateY(-2px);
  border-color: rgba(218, 180, 111, 0.45);
  color: var(--gold-deep);
  background: rgba(28, 22, 10, 0.46);
}

.contact-branch-link:hover span {
  transform: translate(4px, -4px);
}

.contact-cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 5vw, 96px);
  margin-top: clamp(48px, 8vh, 104px);
}

.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 20px 36px;
  background: var(--text);
  color: var(--bg);
  transition: color 0.35s ease, background-color 0.35s ease;
  will-change: transform;
}

.cta-big span {
  transition: transform 0.4s var(--ease-out);
}

.cta-big:hover {
  background: transparent;
  color: var(--text);
}

.cta-big:hover span {
  transform: translate(4px, -4px);
}

@media (hover: none) {
  .cta-big { background: var(--text); color: var(--bg); }
}

.contact-cta__email {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.contact-cta__email:hover {
  border-bottom-color: var(--text);
}

/* Contact page */
.contact-form-section {
  padding-block: clamp(56px, 8vh, 96px) clamp(96px, 14vh, 200px);
  border-top: 1px solid var(--border);
}

.contact-form-section__grid {
  display: grid;
  grid-template-columns: minmax(200px, 380px) 1fr;
  gap: clamp(40px, 7vw, 160px);
}

.contact-form-section__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.contact-form-section__info .section-label {
  margin-bottom: 0;
}

.contact-form-section__email a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.contact-form-section__email a:hover {
  border-bottom-color: var(--text);
}

.contact-form-section__note {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 34ch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 48px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.field__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.field__input:focus {
  outline: none;
  border-bottom-color: var(--text);
}

.field__input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.field__input--area {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

select.field__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-secondary) 50%),
    linear-gradient(135deg, var(--text-secondary) 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-form-section__submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.contact-form-section__status {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  min-height: 1.4em;
}

/* ============ 17. PROJECT PAGE ============ */
.project-hero {
  padding: calc(var(--header-h) + clamp(48px, 8vh, 96px)) 0 0;
}

.project-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.project-hero__meta {
  font-family: var(--font-display);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  margin-top: clamp(24px, 4vh, 48px);
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-hero__media {
  margin-top: clamp(40px, 6vh, 80px);
  overflow: hidden;
}

.project-hero__figure {
  aspect-ratio: 21 / 10;
}

.project-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-intro {
  padding-block: clamp(72px, 12vh, 160px);
}

.project-intro__grid {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: clamp(24px, 4vw, 96px);
}

.project-intro__label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-intro__text {
  font-size: clamp(1.4rem, 2.6vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 30ch;
  font-weight: 500;
}

.project-intro__note {
  grid-column: 2;
  margin-top: 24px;
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 2;
  max-width: 52ch;
}

.project-body {
  border-top: 1px solid var(--border);
  padding-block: clamp(64px, 10vh, 140px);
}

.project-block {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: clamp(24px, 4vw, 96px);
  max-width: 1100px;
  padding-block: clamp(32px, 5vh, 64px);
}

.project-block__label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-block__text {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: var(--text);
  max-width: 56ch;
}

.project-image {
  margin-block: clamp(32px, 5vh, 64px);
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.8vw, 28px);
}

.branch-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.38);
  border: 1px solid rgba(218, 180, 111, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.branch-card__media {
  aspect-ratio: 4 / 3;
}

.branch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-card__label {
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.branch-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.05;
}

.branch-card__text {
  color: rgba(243, 241, 232, 0.78);
}

.branch-card__list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.76);
}

.project-images--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.project-images--two .project-image {
  margin-block: 0;
}

.project-images--two .project-image img {
  aspect-ratio: 3 / 4;
}

.project-quote {
  padding-block: clamp(48px, 8vh, 96px);
  max-width: 26ch;
}

.project-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.project-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 6vw, 96px);
  padding-block: clamp(40px, 6vh, 80px);
  border-top: 1px solid var(--border);
  margin-top: clamp(24px, 4vh, 48px);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.metric__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--text);
  letter-spacing: -0.01em;
}

.next-project {
  background: var(--dark);
  color: var(--dark-text);
  padding-block: clamp(80px, 12vh, 160px);
}

.next-project__label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 241, 232, 0.55);
  margin-bottom: clamp(24px, 4vh, 48px);
}

.next-project__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  font-size: clamp(2.4rem, 6.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.next-project__arrow {
  font-size: clamp(2rem, 5vw, 5rem);
  transition: transform 0.5s var(--ease-out);
}

.next-project__link:hover .next-project__arrow {
  transform: translateX(16px);
}

/* ============ 18. WORK PAGE / FILTERS ============ */
.filters {
  padding-block: 0 clamp(40px, 6vh, 72px);
}

.filters__bar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  border-top: 1px solid var(--border);
  padding-top: clamp(20px, 3vh, 32px);
}

.filter-btn {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.filter-btn:hover {
  color: var(--text);
}

.filter-btn.is-active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.work--page {
  padding-top: 0;
}

/* ============ FLOATING CONTACT ============ */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-cta__btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.float-cta__btn:hover {
  transform: translateY(-4px) scale(1.06);
}

.float-cta__btn svg {
  width: 26px;
  height: 26px;
}

.float-cta__btn--call {
  background: var(--gold);
}

.float-cta__btn--wa {
  background: #25D366;
}

.float-cta__btn--wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 767px) {
  .float-cta {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .float-cta__btn {
    width: 48px;
    height: 48px;
  }

  .float-cta__btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ============ 19. FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(28px, 4vh, 48px);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer a {
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__social svg {
  width: 16px;
  height: 16px;
}

/* ============ PRIVACY POLICY PAGE ============ */
.privacy-page {
  background: #f3f1e8;
  color: var(--text);
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 48px) var(--gutter);
}

.privacy-brand img {
  width: clamp(92px, 11vw, 150px);
  height: auto;
}

.privacy-home {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.privacy-home:hover {
  color: var(--text);
}

.privacy-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 8vw, 112px) 0 clamp(56px, 8vw, 120px);
}

.privacy-hero {
  padding-bottom: clamp(34px, 5vw, 68px);
  border-bottom: 1px solid var(--border);
}

.privacy-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--gold-deep);
}

.privacy-updated {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.privacy-intro {
  max-width: 760px;
  margin-top: clamp(24px, 4vw, 42px);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: #2b2b25;
}

.privacy-content {
  display: grid;
  gap: clamp(30px, 4vw, 54px);
  padding-top: clamp(36px, 5vw, 72px);
}

.privacy-content article {
  display: grid;
  gap: 12px;
}

.privacy-content h2 {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.1;
  color: var(--gold-deep);
}

.privacy-content p {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
  color: #3e3e37;
}

.privacy-content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.privacy-footer {
  background: #ebe6d8;
}

/* ============ SERVICES PAGE ============ */
.services-page {
  background:
    radial-gradient(ellipse at 14% 12%, rgba(255, 246, 214, 0.95) 0 10%, transparent 34%),
    radial-gradient(ellipse at 86% 18%, rgba(218, 180, 111, 0.34) 0 12%, transparent 36%),
    radial-gradient(ellipse at 24% 62%, rgba(200, 154, 69, 0.24) 0 10%, transparent 34%),
    radial-gradient(ellipse at 78% 76%, rgba(255, 235, 175, 0.48) 0 9%, transparent 34%),
    linear-gradient(180deg, #fff9ed 0%, #f6ecd8 45%, #efe1c9 100%);
  color: var(--text);
}

.services-page::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 35% 24%, rgba(255, 255, 255, 0.62) 0 8%, transparent 28%),
    radial-gradient(ellipse at 65% 42%, rgba(218, 180, 111, 0.32) 0 10%, transparent 34%),
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.24) 30%, transparent 52%);
  filter: blur(28px);
  opacity: 0.85;
}

.services-page::after {
  display: none;
}

.services-header {
  border-bottom: 1px solid rgba(94, 46, 14, 0.1);
  background: rgba(255, 249, 237, 0.82);
}

body.services-page main > section,
body.services-page main > section:not(.hero):not(.page-hero):not(.project-hero) {
  background: transparent;
  color: var(--text);
  border-top: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.services-page main > section .section-label {
  color: var(--gold-mid);
}

.services-main {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 86px) 0 clamp(64px, 8vw, 124px);
}

.services-hero {
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: clamp(44px, 7vw, 88px);
  text-align: center;
}

.services-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--gold-deep);
}

.services-hero p:not(.section-label) {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.65;
  color: #3e3e37;
}

.services-list {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(22px, 3.5vw, 52px);
  align-items: stretch;
  min-height: clamp(430px, 46vw, 560px);
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(94, 46, 14, 0.12);
  border-radius: clamp(24px, 3vw, 36px);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: none;
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(420px, 1.08fr) minmax(340px, 0.92fr);
}

.service-detail:nth-child(even) .service-detail__media {
  order: 2;
}

.service-detail__media {
  min-height: 100%;
  border-radius: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  background: #eadfcb;
  box-shadow: none;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 56px) clamp(12px, 2.5vw, 38px);
}

.service-detail__num {
  margin-bottom: clamp(14px, 1.8vw, 24px);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.service-detail h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--gold-deep);
}

.service-detail h3 {
  max-width: 640px;
  margin-top: clamp(14px, 2vw, 24px);
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.35;
  color: #17130e;
}

.service-detail__copy > p:not(.service-detail__num) {
  max-width: 660px;
  margin-top: clamp(14px, 1.8vw, 22px);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.72;
  color: #4c4940;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 2.6vw, 34px);
}

.services-page .cta-big {
  border-color: var(--gold-mid);
  background: var(--gold-mid);
  color: #16120c;
}

.services-page .cta-big:hover {
  background: var(--gold-deep);
  color: #fff9ed;
}

.services-page .cta-big--outline {
  background: transparent;
  color: var(--gold-deep);
}

.services-page .cta-big--outline:hover {
  background: var(--gold-deep);
  color: #f3f1e8;
}

.services-footer {
  background: #ebe6d8;
}

/* ============ TREATMENT FEATURE SLIDER ============ */
.treatment-feature {
  position: relative;
  width: min(1120px, 100%);
  margin: clamp(26px, 4vw, 54px) auto 0;
  padding: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(94, 46, 14, 0.18);
  border-radius: clamp(24px, 3vw, 36px);
  background: rgba(255, 249, 235, 0.86);
  box-shadow: none;
}

.treatment-feature__viewport {
  position: relative;
  min-height: clamp(420px, 46vw, 560px);
  overflow: hidden;
  border-radius: clamp(18px, 2.4vw, 28px);
}

.treatment-feature__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.treatment-feature__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.treatment-feature__media {
  border-radius: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  background: #eadfcb;
}

.treatment-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 64px) clamp(18px, 3vw, 42px) clamp(54px, 5vw, 78px) 0;
}

.treatment-feature__copy p {
  margin-bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.treatment-feature__copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5.7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--gold-deep);
}

.treatment-feature__copy h4 {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.45;
  color: #2f2b23;
}

.treatment-feature__copy .link-arrow {
  margin-top: 30px;
  color: var(--gold-deep);
}

.treatment-feature__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(94, 46, 14, 0.22);
  border-radius: 999px;
  background: rgba(255, 249, 235, 0.92);
  color: var(--gold-deep);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.treatment-feature__nav--prev {
  left: -23px;
}

.treatment-feature__nav--next {
  right: -23px;
}

.treatment-feature__dots {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 42px);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.treatment-feature__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(94, 46, 14, 0.24);
}

.treatment-feature__dots button.is-active {
  width: 24px;
  background: var(--gold-deep);
}

.treatment-feature--grid {
  width: min(1480px, 100%);
  padding: clamp(16px, 2vw, 28px);
}

.treatment-feature--grid .treatment-feature__viewport {
  min-height: clamp(520px, 45vw, 680px);
}

.treatment-feature--grid .treatment-feature__slide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  align-items: stretch;
  padding: 0;
}

.treatment-feature__card {
  height: 100%;
  border: 1px solid rgba(94, 46, 14, 0.14);
  border-radius: clamp(18px, 2vw, 26px);
  background: rgba(255, 252, 246, 0.92);
  overflow: hidden;
}

.treatment-feature__card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.treatment-feature__card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.treatment-feature__card span {
  margin: clamp(22px, 2.3vw, 32px) clamp(20px, 2.4vw, 34px) 0;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.treatment-feature__card h3 {
  margin: 12px clamp(20px, 2.4vw, 34px) 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--gold-deep);
}

.treatment-feature__card p {
  margin: 14px clamp(20px, 2.4vw, 34px) clamp(24px, 2.5vw, 34px);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.6;
  color: #4c4940;
}

.treatments__more--center {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 46px);
}

/* ============ BEFORE / AFTER RESULTS ============ */
body.home-clinic .before-after {
  min-height: 100svh;
  padding-block: clamp(20px, 3vh, 34px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fffaf0 0%, #f5e8c8 100%) !important;
  color: #111111 !important;
  border-top: 1px solid rgba(94, 46, 14, 0.12) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.before-after__head {
  display: grid;
  gap: 6px;
  max-width: 780px;
  margin: 0 auto clamp(14px, 2vh, 22px);
  text-align: center;
}

.before-after__head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: var(--gold-deep);
}

.before-after__head p:not(.section-label) {
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  line-height: 1.45;
  color: #4c4940;
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.before-after__card {
  padding: clamp(8px, 0.8vw, 10px);
  border: 1px solid rgba(94, 46, 14, 0.16);
  border-radius: clamp(20px, 2vw, 28px);
  background: rgba(255, 252, 246, 0.86);
}

.before-after__compare {
  --split: 50%;
  position: relative;
  overflow: hidden;
  border-radius: clamp(14px, 1.5vw, 20px);
  background: #e8dcc8;
  touch-action: pan-y;
}

.before-after__img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.before-after__before {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.before-after__before .before-after__img {
  width: 100%;
  height: 100%;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 2px;
  background: #fff9ed;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(94, 46, 14, 0.16);
  pointer-events: none;
}

.before-after__handle::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(94, 46, 14, 0.24);
  border-radius: 999px;
  background: #fff9ed;
  color: var(--gold-deep);
  font-size: 1rem;
  transform: translate(-50%, -50%);
}

.before-after__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.before-after__tag {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 249, 235, 0.9);
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after__tag--before {
  left: 10px;
}

.before-after__tag--after {
  right: 10px;
}

.before-after__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.before-after__pair figure {
  position: relative;
  overflow: hidden;
  border-radius: clamp(14px, 1.5vw, 20px);
  background: #e8dcc8;
}

.before-after__pair span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 249, 235, 0.9);
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after__pair img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  object-fit: cover;
}

.before-after__card h3 {
  margin: 10px 8px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 1.7vw, 1.85rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-deep);
}

.before-after__card p {
  margin: 6px 8px 2px;
  font-size: 0.88rem;
  color: #4c4940;
  line-height: 1.45;
}

.treatment-feature--static-grid {
  display: grid;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  margin-top: clamp(26px, 4vw, 54px);
  padding: 0;
  border: 0;
  background: transparent;
}

.treatment-feature--static-grid .treatment-feature__card {
  min-height: 100%;
}

.treatment-feature--static-grid .treatment-feature__card.is-hidden {
  display: none;
}

.treatment-feature--static-grid .treatment-feature__card img {
  aspect-ratio: 1.08 / 1;
}

body.home-clinic .treatments__more--center {
  display: flex !important;
  justify-content: center;
}

body.home-clinic .treatments__more--center .cta-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
}

/* ============ SINGLE TREATMENT PAGES ============ */
.service-single-main {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px) 0;
}

.service-single-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 14% 12%, rgba(255, 246, 214, 0.95) 0 10%, transparent 34%),
    radial-gradient(ellipse at 86% 18%, rgba(218, 180, 111, 0.34) 0 12%, transparent 36%),
    radial-gradient(ellipse at 24% 62%, rgba(200, 154, 69, 0.24) 0 10%, transparent 34%),
    radial-gradient(ellipse at 78% 76%, rgba(255, 235, 175, 0.48) 0 9%, transparent 34%),
    linear-gradient(180deg, #fff9ed 0%, #f6ecd8 45%, #efe1c9 100%);
}

.service-single-page::before,
.service-single-page::after {
  display: none;
}

.service-single-page .services-header {
  padding-block: clamp(12px, 2vw, 22px);
}

.service-single-page .privacy-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(94, 46, 14, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.72);
}

.service-single {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 150px);
  padding: clamp(14px, 1.8vw, 22px);
  border: 1px solid rgba(94, 46, 14, 0.12);
  border-radius: clamp(24px, 3vw, 36px);
  background: rgba(255, 252, 246, 0.9);
}

.service-single__media {
  min-height: min(62svh, 620px);
  border-radius: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
}

.service-single__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-single__copy {
  padding: clamp(24px, 4vw, 64px) clamp(8px, 2.6vw, 38px);
}

.service-single__copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--gold-deep);
}

.service-single__copy h2 {
  margin-top: 22px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.4;
  color: #2f2b23;
}

.service-single__copy p:not(.section-label) {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4c4940;
}

/* ============ FOCUS STATES / ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

/* ============ GRAPHIC & TEXT COMPONENTS ============ */
/* Subtle grain over everything (very low opacity, no blur) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* Rotating circular text stamp */
.stamp {
  width: clamp(96px, 8vw, 140px);
  height: auto;
  color: var(--gold-mid);
  animation: stamp-spin 22s linear infinite;
}

.stamp text {
  font-family: var(--font-sans);
  font-size: 9.2px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: currentColor;
}

.stamp__center {
  fill: none;
  stroke: currentColor;
}

@keyframes stamp-spin {
  to { transform: rotate(360deg); }
}

/* Asterisk / spark mark */
.spark {
  width: clamp(28px, 3vw, 44px);
  height: auto;
  color: var(--gold-mid);
}

/* Vertical rail text (hero) */
.hero__rail {
  position: absolute;
  left: 14px;
  top: 46vh;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.625rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Stamps in sections */
.hero__stamp {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(20px, 5vh, 56px);
  z-index: 2;
}

.about-preview {
  position: relative;
}

.about-preview__stamp {
  position: absolute;
  right: var(--gutter);
  top: clamp(24px, 5vh, 64px);
  z-index: 0;
}

.about-preview__grid {
  position: relative;
  z-index: 1;
}

.about-studio {
  position: relative;
}

.about-studio__stamp {
  position: absolute;
  right: var(--gutter);
  top: clamp(24px, 4vh, 56px);
  z-index: 0;
}

.about-studio__grid {
  position: relative;
  z-index: 1;
}

.project-hero__stamp {
  position: absolute;
  right: var(--gutter);
  top: 32vh;
  z-index: 1;
}

/* Sparks on dark + CTA */
.statement {
  position: relative;
}

.statement__spark {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(24px, 4vh, 48px);
  color: var(--gold-light);
}

.contact-cta__spark {
  position: absolute;
  right: var(--gutter);
  top: 34%;
}

/* Editorial numbered rows (manifesto, next steps, process) */
.editorial-rows {
  border-top: 1px solid var(--border);
  margin-top: clamp(40px, 6vh, 72px);
}

.editorial-row {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding-block: clamp(16px, 2.4vh, 26px);
}

.editorial-row__n {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--gold-mid);
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
}

.editorial-row__text {
  font-size: clamp(0.9rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.editorial-row__text small {
  display: block;
  margin-top: 4px;
  font-size: 0.71875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 400;
}

.editorial-rows--dark {
  border-top-color: rgba(243, 241, 232, 0.25);
}

.editorial-rows--dark .editorial-row {
  border-bottom-color: rgba(243, 241, 232, 0.25);
}

.editorial-rows--dark .editorial-row__text small {
  color: rgba(243, 241, 232, 0.55);
}

/* Work lede under section head */
.work__lede {
  max-width: 56ch;
  color: var(--text-secondary);
  margin-top: clamp(20px, 3vh, 32px);
}

/* Project spec + view link */
.project__spec {
  grid-column: 2 / -1;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 18px;
}

.project__view {
  grid-column: 2 / -1;
  width: fit-content;
  margin-top: 14px;
}

/* Services: name + description */
.service__main {
  display: block;
}

.service__desc {
  display: block;
  margin-top: 7px;
  font-size: 0.71875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.7;
}

/* Ingredient rows with 1px bars */
.ingredients {
  margin-top: clamp(36px, 6vh, 64px);
  border-top: 1px solid var(--border);
}

.ingredients__row {
  display: grid;
  grid-template-columns: 1fr minmax(110px, 220px) 52px;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
}

.ingredients__name {
  font-size: 0.78125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ingredients__bar {
  height: 1px;
  background: var(--border);
  position: relative;
}

.ingredients__bar i {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--gold-mid);
}

.ingredients__pct {
  font-size: 0.75rem;
  color: var(--gold-deep);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Process timeline (project page) */
.timeline {
  position: relative;
  margin-top: clamp(36px, 6vh, 64px);
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.timeline__step {
  position: relative;
  padding-bottom: clamp(26px, 4vh, 44px);
  max-width: 56ch;
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__step::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--gold-mid);
  background: var(--bg);
}

.timeline__n {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--gold-mid);
  font-variant-numeric: tabular-nums;
}

.timeline__step h4 {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 8px 0;
}

.timeline__step p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Contact CTA availability */
.contact-cta__avail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(24px, 4vh, 48px);
  font-size: 0.71875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-cta__avail i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: avail-pulse 2.4s ease-in-out infinite;
}

@keyframes avail-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* ============ GOLDEN THEME ACCENTS ============ */
/* Metallic gold display words (single tasteful gradient) */
.gold-text,
.gold-text--light {
  display: inline-block;
  font-style: normal;
}

.gold-text {
  background: linear-gradient(105deg, #8C6B1F 0%, #C6A445 45%, #E8CE82 60%, #9A7B24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #8C6B1F;
}

.gold-text--light {
  background: linear-gradient(105deg, #D9BC63 0%, #F0D78C 50%, #C6A445 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #D9BC63;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gold-text {
    color: #8C6B1F;
    background: none;
  }
  .gold-text--light {
    color: #D9BC63;
    background: none;
  }
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

/* Preloader */
.preloader__counter {
  color: var(--gold-deep);
}

.preloader__line span {
  background: var(--gold-mid);
}

/* Brand + navigation */
.brand__reg {
  color: var(--gold-mid);
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--gold-light);
}

.nav-item.is-current .nav-item__btn {
  color: var(--gold-light);
}

.site-nav a::after {
  background: var(--gold-mid);
}

/* Hero */
.hero__scroll:hover {
  color: var(--gold-deep);
}

.hero__scroll span {
  color: var(--gold-mid);
}

/* Links */
.link-arrow:hover {
  color: var(--gold-deep);
}

.link-arrow span {
  color: var(--gold-mid);
}

/* CTA button */
.cta-big {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: #1A1405;
}

.cta-big:hover {
  background: transparent;
  border-color: var(--gold-mid);
  color: var(--gold-deep);
}

@media (hover: none) {
  .cta-big {
    background: var(--gold-mid);
    color: #1A1405;
  }
}

/* Projects + services numbers */
.project__num,
.service__num {
  color: var(--gold-mid);
}

.service__arrow {
  color: var(--gold-mid);
}

.service__link:hover .service__num {
  color: var(--gold-deep);
}

/* Stats + metrics */
.stat__num,
.metric__num {
  color: var(--gold-deep);
}

/* Featured */
.featured__label {
  color: var(--gold-light);
}

.featured__cta {
  border-bottom-color: rgba(227, 197, 107, 0.45);
}

.featured__cta:hover {
  border-bottom-color: var(--gold-light);
}

/* Dark section skills + stack rows */
.about-skill:hover {
  color: var(--gold-light);
}

.about-stack__row:hover {
  color: var(--gold-deep);
}

/* Work filters */
.filter-btn.is-active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-mid);
}

.filter-btn:hover {
  color: var(--gold-deep);
}

/* Marquee separators */
.marquee__track i {
  color: var(--gold-mid);
}

/* Forms */
.field__input:focus {
  border-bottom-color: var(--gold-mid);
}

.contact-cta__email:hover,
.contact-form-section__email a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-mid);
}

/* Next project */
.next-project__arrow {
  color: var(--gold-light);
}

/* Footer */
.site-footer a:hover {
  color: var(--gold-deep);
}

.site-footer__top span {
  color: var(--gold-mid);
}

/* Giant outline words carry the gold stroke */
.outline-word {
  -webkit-text-stroke-color: var(--gold-mid);
}

.outline-word--light {
  -webkit-text-stroke-color: rgba(227, 197, 107, 0.45);
}

@supports not (-webkit-text-stroke: 1px var(--border)) {
  .outline-word {
    color: var(--gold-deep);
  }
}

/* ============ HOME LIGHT SHELL ============ */
body.home-clinic {
  background: radial-gradient(circle at top, #fffaf0 0%, #f8ebc8 36%, #f0d998 68%, #e4c36e 100%);
}

body.home-clinic::before,
body.home-clinic::after {
  display: none;
}

body.home-clinic .site-header {
  position: absolute;
  height: var(--header-h);
  padding-inline: var(--gutter);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: stretch;
  column-gap: clamp(18px, 2.5vw, 36px);
  z-index: 900;
}

body.home-clinic .site-header.is-scrolled {
  z-index: 900;
}

body.home-clinic .brand {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  transform: translate(2px, 6px);
}

body.home-clinic .brand__logo {
  height: 160px;
  transform: translateY(14px);
  opacity: 1;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.48));
  transition: height 0.4s var(--ease-out), transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}

body.home-clinic .site-header.is-scrolled .brand__logo {
  opacity: 1;
  height: 100px;
  transform: translateY(2px);
}

body.home-clinic .site-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  justify-self: end;
  margin-left: auto;
  margin-right: clamp(24px, 4vw, 56px);
  transform: translateY(6px);
}

body.home-clinic .hero__aside {
  top: calc(var(--header-h) + 18px);
  left: 0;
  transform: none;
  width: min(460px, calc(100vw - 24px));
}

body.home-clinic .site-nav > a,
body.home-clinic .site-nav > .nav-item > .nav-item__btn {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
}

body.home-clinic .site-nav a::after,
body.home-clinic .nav-item__btn::after {
  background: var(--gold-mid);
}

body.home-clinic main {
  margin: 0;
  padding-top: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

body.home-clinic main > section:not(.hero):not(.page-hero):not(.project-hero) {
  background: transparent;
  color: var(--text);
  border-top: 1px solid rgba(94, 46, 14, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-clinic .hero--clinic {
  margin: calc(1.5vh + 10px);
  height: calc(100svh - ((1.5vh + 10px) * 2));
  min-height: calc(100svh - ((1.5vh + 10px) * 2));
  padding: 0;
}

body.home-clinic .hero__aside-desc,
body.home-clinic .hero-stat,
body.home-clinic .section-label,
body.home-clinic .contact-cta__label,
body.home-clinic .work__years,
body.home-clinic .page-hero__meta,
body.home-clinic .project-hero__meta,
body.home-clinic .field__label {
  color: rgba(17, 17, 17, 0.65);
}

body.home-clinic .hero__panel {
  background: rgba(255, 247, 224, 0.82);
  border-color: rgba(218, 180, 111, 0.32);
  box-shadow: 0 18px 44px rgba(94, 46, 14, 0.1);
}

body.home-clinic .hero__panel .hero-stat,
body.home-clinic .hero__panel .hero__stats,
body.home-clinic .intro__body,
body.home-clinic .treatments__lede,
body.home-clinic .treatment__desc,
body.home-clinic .testimonial__quote,
body.home-clinic .testimonial__meta,
body.home-clinic .contact-form-section__note,
body.home-clinic .contact-form-section__status,
body.home-clinic .next-project__link,
body.home-clinic .about-stack__row,
body.home-clinic .about-skill,
body.home-clinic .editorial-row__text {
  color: rgba(17, 17, 17, 0.78);
}

body.home-clinic .treatments__title,
body.home-clinic .intro__statement,
body.home-clinic .page-hero__title,
body.home-clinic .project-hero__title,
body.home-clinic .contact-cta__title,
body.home-clinic .hero__title {
  color: var(--text);
}

body.home-clinic .treatment,
body.home-clinic .testimonial {
  background: rgba(255, 247, 224, 0.7);
  border-color: rgba(94, 46, 14, 0.14);
  box-shadow: 0 18px 50px rgba(64, 32, 6, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.home-clinic .treatment__title,
body.home-clinic .treatment__tag,
body.home-clinic .treatment__num,
body.home-clinic .editorial-row__n,
body.home-clinic .testimonial__role,
body.home-clinic .contact-cta__email,
body.home-clinic .site-footer,
body.home-clinic .site-footer a,
body.home-clinic .site-footer__top span {
  color: var(--gold-deep);
}

body.home-clinic .treatment__divider,
body.home-clinic .testimonial__meta,
body.home-clinic .project-metrics,
body.home-clinic .about-stack__list,
body.home-clinic .editorial-rows,
body.home-clinic .site-footer,
body.home-clinic .next-project {
  border-color: rgba(94, 46, 14, 0.12);
}

body.home-clinic .hero--clinic .hero__btn,
body.home-clinic .hero--clinic .hero__explore,
body.home-clinic .cta-big {
  background: linear-gradient(115deg, #e9c98a 0%, #d4a95e 55%, #e9c98a 100%);
  color: var(--dark);
}

body.home-clinic .hero--clinic .hero__btn:hover,
body.home-clinic .hero--clinic .hero__explore:hover,
body.home-clinic .cta-big:hover {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold-mid);
}

body.home-clinic .contact-cta__email,
body.home-clinic .contact-form-section__email a {
  border-bottom-color: rgba(94, 46, 14, 0.2);
}

body.home-clinic .section-label,
body.home-clinic .contact-cta__label,
body.home-clinic .field__label,
body.home-clinic .work__years,
body.home-clinic .page-hero__meta,
body.home-clinic .project-hero__meta {
  color: rgba(17, 17, 17, 0.56);
}

/* ============ SINGLE TREATMENT FINAL OVERRIDES ============ */
body.service-single-page {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 14% 12%, rgba(255, 246, 214, 0.95) 0 10%, transparent 34%),
    radial-gradient(ellipse at 86% 18%, rgba(218, 180, 111, 0.34) 0 12%, transparent 36%),
    radial-gradient(ellipse at 24% 62%, rgba(200, 154, 69, 0.24) 0 10%, transparent 34%),
    radial-gradient(ellipse at 78% 76%, rgba(255, 235, 175, 0.48) 0 9%, transparent 34%),
    linear-gradient(180deg, #fff9ed 0%, #f6ecd8 45%, #efe1c9 100%);
}

body.service-single-page::before,
body.service-single-page::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body.service-single-page .services-header {
  min-height: 74px;
  padding-block: 8px;
}

body.service-single-page .privacy-brand img {
  width: 86px;
}

body.service-single-page .service-single-main {
  height: calc(100svh - 74px);
  padding: 12px 0;
}

body.service-single-page .service-single {
  height: 100%;
  min-height: 0;
  gap: clamp(18px, 3vw, 42px);
  padding: 14px;
}

body.service-single-page .service-single__media {
  height: calc(100% - clamp(48px, 8vh, 92px));
  min-height: 0;
  align-self: center;
  margin-block: clamp(24px, 4vh, 46px);
}

body.service-single-page .service-single__copy {
  padding-block: 18px;
}

body.service-single-page .service-single__copy h1 {
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
}

body.service-single-page .service-single__copy h2 {
  margin-top: 14px;
  font-size: clamp(1.2rem, 1.85vw, 1.7rem);
}

body.service-single-page .service-single__copy p:not(.section-label) {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  line-height: 1.72;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .marquee__track,
  .marquee__track span,
  .marquee__track i {
    animation: none;
  }
}
