﻿@font-face {
  font-family: 'Gloock';
  src: url('/fonts/Gloock/Gloock-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e5c8a9;
  --gold-dark: #998064;
  --gold-deep: #60523e;
  --dark: #262320;
  --mid: #6b6258;
  --light-bg: #f5f3f0;
  --white: #fbf9f6;
  --cream: #f0ebe3;
  --divider: #e8e2da;
  --wine: #4a1c1c;
  --serif: 'Gloock', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;
}

::selection {
  background: var(--gold-dark);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* NAV */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

header.site-header.compact {
  background: var(--white);
  box-shadow: 0 1px 0 var(--divider);
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 0 40px;
  min-width: 0;
}

.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  flex: 1;
  min-width: 0;
}

.nav-list.left {
  justify-content: space-evenly;
}

.nav-list.right {
  justify-content: space-evenly;
}

.nav-list a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.nav-list a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

header.site-header.compact .nav-list a {
  color: var(--dark);
}

header.site-header.compact .nav-list a:hover {
  color: var(--gold-dark);
}

/* MOBILE TOGGLE */
.mob-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  z-index: 10001;
}

.mob-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.mob-toggle span:nth-child(1) {
  width: 22px;
}

.mob-toggle span:nth-child(2) {
  width: 14px;
}

.mob-toggle span:nth-child(3) {
  width: 22px;
}

.mob-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 22px;
}

.mob-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(6px);
}

.mob-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 22px;
}

header.site-header.compact .mob-toggle span {
  background: var(--dark);
}

/* MOBILE NAV OVERLAY */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  overflow: hidden;
}

.mob-nav.open {
  transform: translateX(0);
  pointer-events: all;
}

.mob-nav-inner {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 148px 36px 56px;
  position: relative;
  overflow-y: auto;
  transition: padding-top 0.5s ease;
}

header.site-header.compact~.mob-nav .mob-nav-inner {
  padding-top: 90px;
}

.mob-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(229, 200, 169, 0.14);
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 9vw, 46px);
  font-weight: 400;
  color: rgba(245, 242, 236, 0.9);
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.5px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(229, 200, 169, 0.14);
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.5s ease calc(var(--i) * 0.07s + 0.12s),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 0.07s + 0.12s),
    color 0.25s;
}

.mob-nav.open .mob-link {
  opacity: 1;
  transform: translateX(0);
}

.mob-link::before {
  display: none;
}

.mob-link::after {
  content: '→';
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  animation: arrowPing 2s ease-in-out infinite;
}

.mob-link:hover,
.mob-link:active {
  color: var(--gold);
}

.mob-nav-footer {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.56s, transform 0.5s ease 0.56s;
  text-align: center;
}

.mob-nav.open .mob-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.mob-book {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 50px;
  text-decoration: none;
  padding: 14px 36px;
  transition: background 0.3s, color 0.3s;
}

.mob-book:hover,
.mob-book:active {
  background: var(--gold);
  color: var(--dark);
}

.mob-nav-stamp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(50%);
  opacity: 0.06;
  pointer-events: none;
}

.mob-nav-tagline {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--light-bg);
  text-transform: uppercase;
}

.mob-nav-social {
  display: flex;
  gap: 10px;
}

.mob-nav-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.mob-nav-social a:hover,
.mob-nav-social a:active {
  border-color: var(--gold);
  color: var(--gold);
}

.logo-wrap {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  height: 130px;
  transition: height 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.site-header.compact .logo-wrap {
  height: 72px;
  overflow: hidden;
}

.logo-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  height: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-default {
  height: 108px;
  transform: translate(-50%, calc(-50% + 7px));
  opacity: 1;
  object-fit: contain;
}

.logo-compact {
  height: 108px;
  width: auto;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  object-fit: contain;
}

header.site-header.compact .logo-default {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

header.site-header.compact .logo-compact {
  opacity: 1;
  transform: translate(-50%, -58%) scale(1);
}

/* SOCIAL SIDEBAR */
.social-sidebar {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.social-sidebar a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(38, 35, 32, .22);
  animation: socialGlow 2s ease-in-out infinite;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.social-sidebar a svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.social-sidebar a:hover {
  background: var(--dark);
  color: var(--gold);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 22px rgba(38, 35, 32, .28);
  animation: none;
}

/* BOOK SIDEBAR */
.book-sidebar {
  position: fixed;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  z-index: 200;
  transition: opacity 0.3s ease;
}

.book-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s;
}

.book-sidebar a span {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  background: var(--gold);
  border-radius: 20px;
  padding: 8px 20px;
  box-shadow: 0 0 12px rgba(38, 35, 32, .20);
  animation: bookGlow 2s ease-in-out infinite;
  transition: background 0.3s, color 0.3s, box-shadow 0.2s;
}

.book-sidebar a:hover {
  transform: translateY(-2px) scale(1.06);
}

.book-sidebar a:hover span {
  background: var(--dark);
  color: var(--gold);
  box-shadow: 0 8px 22px rgba(38, 35, 32, .28);
  animation: none;
}

.book-stamp {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(0.88)
  }
}

@keyframes arrowPing {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6
  }

  50% {
    transform: translateX(12px);
    opacity: 1
  }
}

@keyframes playRipple {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 200, 169, 0.85)
  }

  65% {
    box-shadow: 0 0 0 18px rgba(229, 200, 169, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(229, 200, 169, 0)
  }
}

@keyframes socialGlow {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(38, 35, 32, .22)
  }

  50% {
    box-shadow: 0 0 24px rgba(229, 200, 169, 0.75), 0 0 8px rgba(229, 200, 169, 0.35)
  }
}

@keyframes bookGlow {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(38, 35, 32, .20)
  }

  50% {
    box-shadow: 0 0 28px rgba(229, 200, 169, 0.65)
  }
}

/* Hide sidebars only when hovering leftmost / rightmost procedure card */
body:has(.proc-card:nth-child(1):hover) .social-sidebar,
body:has(.proc-card:nth-child(1).proc-open) .social-sidebar {
  opacity: 0;
  pointer-events: none;
}

body:has(.proc-card:nth-child(6):hover) .book-sidebar,
body:has(.proc-card:nth-child(6).proc-open) .book-sidebar {
  opacity: 0;
  pointer-events: none;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: max(140px, calc(100px + env(safe-area-inset-bottom)));
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #383434 0%, #282828 60%, #1e1e1e 100%);
  overflow: hidden;
}

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 14, 12, 0.80) 0%, transparent 28%), linear-gradient(to top, rgba(40, 40, 40, 0.88) 0%, rgba(40, 40, 40, 0.35) 50%, rgba(40, 40, 40, 0.12) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 40px;
}

.hero-h1 {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  font-family: var(--serif);
}

.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

.hero-sub {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 38px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.accred-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.accred-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: accredScroll 36s linear infinite;
}

.accred-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.accred-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  pointer-events: none;
}

.accred-fallback {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  white-space: nowrap;
}

@keyframes accredScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* SHARED */
.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-family: var(--serif);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.section-title i {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}

.section-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 12px;
}

.gold-rule {
  width: 38px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
}

.btn-outline {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 34px;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-outline-dark {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* PROCEDURES */
.procedures-section {
  padding: 90px 0 0;
  background: var(--white);
}

.procedures-header {
  padding: 0 60px;
  margin-bottom: 48px;
  text-align: center;
}

.procedures-header .gold-rule {
  margin: 18px auto;
}

.procedures-header .btn-outline-dark {
  color: var(--dark);
  border-color: var(--dark);
}

.procedures-header .btn-outline-dark:hover {
  border-color: transparent;
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.procedures-footer {
  text-align: center;
  padding: 52px 60px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.proc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/5;
}

.proc-card:nth-child(1) .proc-bg {
  background: url('../img/procedures/body.webp') center / cover no-repeat, radial-gradient(ellipse at center, #c4c1bb 0%, #999999 100%);
}

.proc-card:nth-child(2) .proc-bg {
  background: url('../img/procedures/face.webp') center / cover no-repeat, radial-gradient(ellipse at center, #c4c1bb 0%, #999999 100%);
}

.proc-card:nth-child(3) .proc-bg {
  background: url('../img/procedures/breasts.webp') center / cover no-repeat, radial-gradient(ellipse at center, #c4c1bb 0%, #999999 100%);
}

.proc-card:nth-child(4) .proc-bg {
  background: url('../img/procedures/skin.webp') center / cover no-repeat, radial-gradient(ellipse at center, #c4c1bb 0%, #999999 100%);
}

.proc-card:nth-child(5) .proc-bg {
  background: url('../img/procedures/men.webp') center / cover no-repeat, radial-gradient(ellipse at center, #c4c1bb 0%, #999999 100%);
}

.proc-card:nth-child(6) .proc-bg {
  background: url('../img/procedures/children.webp') center / cover no-repeat, radial-gradient(ellipse at center, #c4c1bb 0%, #999999 100%);
}

.proc-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.22, 0.11, 0.15, 1);
}

.proc-card:hover .proc-bg {
  transform: scale(1.06);
}

.proc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40, 40, 40, 0.9) 0%, rgba(40, 40, 40, 0.15) 55%, transparent 100%);
  transition: background 0.4s;
}

.proc-card:hover .proc-overlay {
  background: linear-gradient(to top, rgba(40, 40, 40, 0.96) 0%, rgba(40, 40, 40, 0.35) 60%, rgba(40, 40, 40, 0.08) 100%);
}

.proc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  z-index: 3;
  transition: height 0.45s cubic-bezier(0.22, 0.11, 0.15, 1);
}

.proc-card:hover::before {
  height: 100%;
}

.proc-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 16px;
  z-index: 2;
}

.proc-name {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  font-family: var(--serif);
  transition: opacity 0.3s;
}

.proc-card:hover .proc-name {
  opacity: 0;
}

/* Procedure hover dropdown */
.proc-list {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, 0.93);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 4;
  overflow-x: hidden;
  overflow-y: auto;
}

.proc-list::-webkit-scrollbar {
  width: 2px;
}

.proc-list::-webkit-scrollbar-track {
  background: transparent;
}

.proc-list::-webkit-scrollbar-thumb {
  background: rgba(229, 200, 169, 0.3);
  border-radius: 2px;
}

.proc-card:hover .proc-list {
  opacity: 1;
  transform: translateY(0);
}

.proc-list-title {
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(229, 200, 169, 0.2);
  flex-shrink: 0;
  width: 100%;
  font-family: var(--serif);
}

.proc-list ul {
  list-style: none;
  width: 100%;
}

.proc-list ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proc-list ul li:last-child {
  border-bottom: none;
}

.proc-list ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  letter-spacing: 0.3px;
  line-height: 1.4;
  transition: color 0.25s, transform 0.25s, text-shadow 0.25s;
}

.proc-list ul li a:hover {
  color: var(--gold);
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(229, 200, 169, 0.5);
}

/* Proc arrow hint */
@keyframes procArrow {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.25
  }

  50% {
    transform: translateY(-12px);
    opacity: 1
  }
}

.proc-content::before {
  content: '↑';
  flex-shrink: 0;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 24px;
  opacity: 0.25;
  animation: procArrow 2s ease-in-out infinite;
  pointer-events: none;
  font-weight: 300;
  line-height: 1;
}

.proc-card:hover .proc-content::before,
.proc-card.proc-open .proc-content::before {
  opacity: 0;
  animation: none;
}

/* Click-to-open (mobile) */
.proc-card.proc-open .proc-list {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .procedures-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proc-card {
    aspect-ratio: unset;
    min-height: 420px;
  }
}

/* BEFORE & AFTER */
.gallery-section {
  padding: 60px 80px;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.gallery-header .gold-rule {
  margin: 18px auto;
}

.gallery-note {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 12px;
}

/* B&A static grid */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3/2;
}

.ba-card-half {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: flex-end;
  padding: 0 0 10px 10px;
}

.ba-card-before {
  left: 0;
}

.ba-card-after {
  left: 50%;
}

.ba-card-1-before {
  background: linear-gradient(145deg, #7a6a60 0%, #4a3a30 100%);
}

.ba-card-1-after {
  background: linear-gradient(145deg, #c0b0a0 0%, #8a7060 100%);
}

.ba-card-2-before {
  background: linear-gradient(145deg, #786860 0%, #483830 100%);
}

.ba-card-2-after {
  background: linear-gradient(145deg, #b8a890 0%, #887060 100%);
}

.ba-card-3-before {
  background: linear-gradient(145deg, #687078 0%, #404850 100%);
}

.ba-card-3-after {
  background: linear-gradient(145deg, #a8b4bc 0%, #788490 100%);
}

.ba-card-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 2;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-card-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.42);
  padding: 3px 8px;
  backdrop-filter: blur(4px);
}

.ba-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 10px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 100%);
  text-align: center;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  z-index: 3;
}

/* B&A interactive sliders */
.ba-sliders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.ba-slider-item {
  display: flex;
  flex-direction: column;
}

.ba-slider-label {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(197, 184, 165, 0.3);
  text-align: center;
}

.ba-slider-wrap {
  position: relative;
  overflow: hidden;
  cursor: default;
  user-select: none;
  aspect-ratio: 7/8;
  background: #222;
  border-radius: 3px;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-before {
  background: #1c1c1c url('../img/before-after/before1.webp') center / cover no-repeat;
}

.ba-after {
  clip-path: inset(0 0 0 50%);
  background: #1c1c1c url('../img/before-after/after1.webp') center / cover no-repeat;
}

.ba-before-2 {
  background: #1c1c1c url('../img/before-after/before2.webp') center / cover no-repeat;
}

.ba-after-2 {
  background: #1c1c1c url('../img/before-after/after2.webp') center / cover no-repeat;
}

.ba-before-3 {
  background: #1c1c1c url('../img/before-after/before3.webp') center / cover no-repeat;
}

.ba-after-3 {
  background: #1c1c1c url('../img/before-after/after3.webp') center / cover no-repeat;
}

.ba-label {
  position: absolute;
  bottom: 14px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.40);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}

.ba-before .ba-label {
  left: 14px;
}

.ba-after .ba-label {
  right: 14px;
}

.ba-placeholder {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.8;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background: transparent;
  z-index: 10;
  cursor: ew-resize;
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: white;
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.ba-handle-btn span {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 700;
}

.ba-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 1px;
}

/* ===== BEFORE/AFTER PRIVACY VEIL ===== */
.ba-slider-wrap[data-covered] .ba-before,
.ba-slider-wrap[data-covered] .ba-after {
  filter: blur(22px) brightness(.82);
  transition: filter .55s ease;
}
.ba-slider-wrap .ba-before,
.ba-slider-wrap .ba-after {
  transition: filter .55s ease;
}
.ba-slider-wrap[data-covered] .ba-handle {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.ba-veil {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(38,35,32,.55), rgba(38,35,32,.68));
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 24px;
  opacity: 1;
  transition: opacity .5s ease, visibility .5s ease;
}
.ba-slider-wrap:not([data-covered]) .ba-veil {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ba-veil-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  max-width: 260px;
}
.ba-veil-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229,200,169,.5);
  color: var(--gold);
  margin-bottom: 4px;
}
.ba-veil-title {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}
.ba-veil-note {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,242,236,.7);
  font-weight: 500;
}
.ba-veil-btn {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  background: var(--gold);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background .3s, color .3s, transform .2s;
}
.ba-veil-btn:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.ba-hide {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 21;
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  background: rgba(38,35,32,.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background .3s, opacity .3s;
}
.ba-hide:hover {
  background: var(--dark);
}
.ba-slider-wrap:not([data-covered]) .ba-hide {
  display: inline-flex;
}

.gallery-footer {
  text-align: center;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 90px 80px;
  background: var(--light-bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}

.testimonials-header .gold-rule {
  margin: 18px auto;
}

.ratings-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: none;
  margin-bottom: 52px;
}

.rating-platform {
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--light-bg);
  padding: 24px 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.rating-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s ease;
}

.rating-platform:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(38, 35, 32, .10);
  border-color: var(--gold);
}

.rating-platform:hover::before {
  transform: scaleX(1);
}

.rating-logo-wrap {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-logo {
  display: block;
  width: auto;
  object-fit: contain;
  height: 32px;
}

.rating-platform:nth-child(1) .rating-logo {
  height: 46px;
}

.rating-platform:nth-child(3) .rating-logo {
  height: 44px;
}

.rating-platform:nth-child(4) .rating-logo {
  height: 24px;
}

.rating-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.rating-stars {
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
}

.rating-count {
  font-size: 13px;
  color: var(--mid);
  line-height: 1;
}

.rating-platform--google {
  cursor: pointer;
}

.rating-loc-hint,
.rating-visit-hint {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}

.rating-platform--google:hover .rating-loc-hint,
.rating-platform:hover .rating-visit-hint {
  opacity: 1;
  transform: translateY(0);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: rgb(245, 241, 233);
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s, transform .3s, box-shadow .3s;
}

.testi-card:hover {
  background: #eae2d4;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(38, 35, 32, .10);
}

.testi-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.testi-quote {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 18px;
  font-style: italic;
  font-family: var(--serif);
  max-width: 55%;
}

.testi-rule {
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.testi-meta {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 16px;
}

.testi-watch {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, background-size 0.35s ease;
  position: relative;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 38px bottom;
}

.testi-watch::before {
  content: '';
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 1L9 5L2 9Z' fill='%23e5c8a9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 7px 8px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  animation: playRipple 2s ease-out infinite;
}

.testi-watch::after {
  content: '→';
  display: inline-block;
  font-size: 1.5em;
  line-height: 1;
  margin-left: -6px;
  animation: arrowPing 2s ease-in-out infinite;
}

.testi-watch:hover {
  color: var(--gold-dark);
  background-size: calc(100% - 38px - 1.6em) 1px;
}

.testi-watch:hover::before {
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 1L9 5L2 9Z' fill='%23ffffff'/%3E%3C/svg%3E");
  animation-play-state: paused;
  box-shadow: none;
}

.testi-watch:hover::after {
  animation-play-state: paused;
}

.testi-card::after {
  content: '"';
  font-size: 160px;
  line-height: 1;
  font-style: italic;
  color: rgba(229, 200, 169, 0.18);
  position: absolute;
  top: -8px;
  right: 6px;
  pointer-events: none;
  font-weight: 700;
}

.testi-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 62%;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  display: block;
}

.testi-card:has(.testi-photo) {
  padding-right: 8%;
}

/* ABOUT */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.about-image {
  background: linear-gradient(135deg, #383434 0%, #282828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 18, 16, 0.38) 0%, rgba(38, 35, 32, 0.18) 60%, rgba(38, 35, 32, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.about-image-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.18);
}

.about-image-placeholder svg {
  width: 56px;
  height: 56px;
}

.about-image-placeholder p {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}

.about-content {
  padding: 68px 96px 68px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.about-content .btn-outline-dark {
  align-self: flex-start;
}

.about-section .section-title,
.about-section .section-body {
  color: var(--white);
}

.about-creds {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-cred-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: rgba(245, 242, 236, .75);
  font-weight: 400;
}

.about-cred-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* LOCATIONS */
.locations-section {
  padding: 90px 80px;
  background: var(--light-bg);
}

.locations-header {
  text-align: center;
  margin-bottom: 52px;
}

.locations-header .gold-rule {
  margin: 18px auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.loc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(197, 184, 165, .3)
}

.loc-card {
  display: flex;
  flex-direction: column
}

.loc-card {
  background: var(--white);
  overflow: hidden;
  transition: background .3s, transform .3s, box-shadow .3s
}

.loc-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(38, 35, 32, .10)
}

.loc-img {
  height: 220px;
  overflow: hidden;
  position: relative
}

.loc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 18, 16, 0.45) 0%, rgba(38, 35, 32, 0.28) 60%, rgba(38, 35, 32, 0.08) 100%);
  transition: opacity .5s ease;
  pointer-events: none
}

.loc-card:hover .loc-img::after {
  opacity: 0
}

.loc-img-bg {
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
  background-size: cover;
  background-position: center
}

.loc-card:hover .loc-img-bg {
  transform: scale(1.04)
}

.loc-img-1 {
  background-image: url('../img/clinics/Spire Leicester.webp')
}

.loc-img-2 {
  background-image: url('../img/clinics/Nuffield Leicester.webp')
}

.loc-img-3 {
  background-image: url('../img/clinics/Spire Nottingham.webp')
}

.loc-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25)
}

.loc-info {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.loc-num {
  font-size: 64px;
  color: var(--gold-dark);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-weight: 400
}

.loc-name-text {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
  font-family: var(--serif)
}

.loc-name-text i {
  font-style: italic;
  color: var(--gold-dark)
}

.loc-addr {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: auto;
  padding-bottom: 22px
}

.loc-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
  align-self: flex-start
}

.loc-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 1.6em;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.loc-link::after {
  content: '→';
  display: inline-block;
  animation: arrowPing 2s ease-in-out infinite;
  font-size: 1.5em;
  line-height: 1
}

.loc-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0
}

.loc-link:hover {
  color: var(--gold-deep)
}

.loc-link:hover::before {
  transform: scaleX(1)
}


/* MEDIA */
.media-section {
  background: var(--dark);
  padding: 100px 120px;
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.8fr;
  gap: 40px;
  align-items: center
}

.media-content {
  text-align: center;
}

.media-section .section-title,
.media-section .section-body {
  color: var(--white);
}

.media-content .gold-rule {
  margin: 18px auto;
}

.media-strip-left,
.media-strip-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.media-tile {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.media-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 18, 16, 0.62) 0%, rgba(38, 35, 32, 0.42) 60%, rgba(38, 35, 32, 0.18) 100%);
  transition: opacity .5s ease;
  pointer-events: none;
}

.media-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(28, 24, 21, .35);
}

.media-tile:hover::after {
  opacity: 0;
}

.media-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.media-tile:hover img {
  transform: scale(1.04);
}


/* CTA — centered editorial */
.cta-section {
  background: var(--light-bg);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden
}

/* huge background monogram */
.cta-bg-mono {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 90vw;
  opacity: .2;
  pointer-events: none;
  user-select: none
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto
}

.cta-inner .s-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600
}

.cta-inner .s-label::before,
.cta-inner .s-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold)
}

.cta-inner .s-title {
  font-size: clamp(30px, 4.5vw, 56px);
  margin-top: 22px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-weight: 400;
  font-family: var(--serif)
}

.cta-title-l2 {
  margin-top: 0;
  transition-delay: 0.32s
}

.cta-highlight {
  font-style: italic;
  color: #bea68c
}

.cta-dots {
  color: #bea68c;
  font-style: normal
}

.cta-inner .s-body {
  max-width: 400px;
  margin: 20px auto 0;
  font-size: 14px;
  line-height: 1.95;
  color: var(--mid);
  font-weight: 300;
  letter-spacing: 0.15px
}

.cta-inner .btn-outline {
  margin-top: 40px;
  font-size: 10px;
  padding: 16px 44px;
  letter-spacing: 3px
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 52px
}

.cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px
}

.cta-contact-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  display: block
}

.cta-contact-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color .3s
}

.cta-contact-val::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease
}

.cta-contact-val:hover {
  color: var(--gold-dark)
}

.cta-contact-val:hover::after {
  transform: scaleX(1)
}


/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  opacity: 0.85;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-procedures {
  display: none;
}

.footer-proc-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-proc-title:hover {
  color: var(--gold);
}

@media (min-width: 1101px) {
  .footer-nav {
    display: none;
  }

  .footer-logo-img {
    height: 80px;
  }

  .footer-main {
    flex-direction: row;
    align-items: center;
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 56px;
  }

  .footer-procedures {
    display: flex;
    gap: 48px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }
}

.footer-bottom {
  padding: 14px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 300;
}

@media (max-width: 1300px) {
  .ba-sliders-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .ba-slider-item:nth-child(1) {
    grid-column: 1 / 3;
  }

  .ba-slider-item:nth-child(2) {
    grid-column: 3 / 5;
  }

  .ba-slider-item:nth-child(3) {
    grid-column: 2 / 4;
  }
}

@media (max-width: 1400px) {
  .header-inner {
    gap: 40px;
    padding: 0 28px;
  }

  .nav-list {
    gap: 16px;
  }

  .nav-list a {
    letter-spacing: 1.2px;
  }

  .logo-wrap {
    width: 180px;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
    padding: 0 16px;
    position: relative;
  }

  .nav-list,
  .social-sidebar,
  .book-sidebar {
    display: none;
  }

  .mob-toggle {
    display: flex;
  }

  .logo-wrap {
    width: 220px;
  }

  /* PROCEDURES — 3-column card grid on tablet */
  .procedures-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proc-card {
    aspect-ratio: unset;
    min-height: 400px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding: 0 20px;
  }

  .accred-strip {
    padding: 10px 0;
  }

  .procedures-header {
    padding: 0 20px;
  }

  .gallery-section,
  .testimonials-section,
  .locations-section,
  .media-section,
  .cta-section {
    padding: 60px 20px;
  }

  .gallery-header {
    padding: 0 4px;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testi-grid,
  .locations-grid,
  .loc-grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 16px;
  }

  .ratings-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 44px 20px;
  }

  .media-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-strip-left,
  .media-strip-right {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-content {
    order: -1;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    text-align: center;
    gap: 24px;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 16px 24px;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .footer-logo-img {
    height: 40px;
  }
}

@media (max-width: 600px) {

  /* RATINGS — 1 column */
  .ratings-row {
    grid-template-columns: 1fr;
  }

  /* OTHER */
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .ba-sliders-grid {
    grid-template-columns: 1fr;
  }

  .ba-slider-item:nth-child(1),
  .ba-slider-item:nth-child(2),
  .ba-slider-item:nth-child(3) {
    grid-column: auto;
  }

  .media-tile {
    aspect-ratio: 3/4;
  }

  /* HERO */
  .hero-cta {
    display: block;
    text-align: center;
  }

  /* PROCEDURES — 2-column card grid on phone */
  .procedures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .proc-card {
    aspect-ratio: unset;
    min-height: 440px;
  }

  .proc-name {
    font-size: 15px;
    letter-spacing: 2px;
  }
}

@media (max-width: 520px) {
  .cta-contacts {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .cta-inner .btn-outline {
    margin-top: 24px;
  }

  .cta-contacts {
    margin-top: 28px;
  }
}

/* ===== BOOKING MODAL ===== */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 24, 21, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.booking-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(28, 24, 21, .45);
  transform: translateY(16px) scale(.98);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
}

.booking-overlay.open .booking-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(245, 242, 236, .12);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .3s, color .3s, transform .3s;
}

.booking-close:hover {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

.booking-head {
  background: var(--dark);
  color: var(--white);
  padding: 34px 32px 28px;
  text-align: center;
  position: relative;
}

.booking-stamp {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: .9;
  margin-bottom: 12px;
}

.booking-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.booking-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 242, 236, .75);
  max-width: 300px;
  margin: 0 auto;
}

.booking-options {
  padding: 22px 22px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--divider);
  border-radius: 16px;
  text-decoration: none;
  background: var(--white);
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}

.booking-opt:hover {
  border-color: var(--gold);
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(38, 35, 32, .10);
}

.booking-opt-ic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold-deep);
  transition: background .3s, color .3s;
}

.booking-opt:hover .booking-opt-ic {
  background: var(--dark);
  color: var(--gold);
}

.booking-opt-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.booking-opt-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-opt-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-deep);
}

.booking-opt-arrow {
  color: var(--gold-dark);
  font-size: 16px;
  transition: transform .3s, color .3s;
}

.booking-opt:hover .booking-opt-arrow {
  transform: translateX(5px);
  color: var(--gold-deep);
}

.booking-opt-badge {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  background: var(--wine);
  border-radius: 20px;
  padding: 2px 8px;
}

.booking-opt--wa {
  border-color: var(--gold);
  background: var(--light-bg);
}

.booking-opt--wa .booking-opt-ic {
  background: var(--dark);
  color: var(--gold);
}

.booking-foot {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--dark);
  text-align: center;
  padding: 14px 24px 24px;
  font-weight: 500;
  border-top: 1px solid var(--divider);
  margin-top: 4px;
}


@media (max-width: 480px) {
  .booking-modal {
    max-width: none;
    border-radius: 18px;
  }

  .booking-head {
    padding: 30px 22px 24px;
  }

  .booking-opt-badge {
    font-size: 7px;
    letter-spacing: 0.5px;
    padding: 2px 5px;
  }

  .booking-title {
    font-size: 23px;
  }
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

/* ===== VIDEO MODAL ===== */
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 10200;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.video-overlay.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-wrap {
  position: relative;
  transform: scale(.94);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
}

.video-overlay.open .video-modal-wrap {
  transform: scale(1);
  opacity: 1;
}

.video-modal-wrap iframe {
  display: block;
  border: none;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
}

.video-modal-wrap.is-short iframe {
  width: min(360px, 82vw);
  height: calc(min(360px, 82vw) * 16 / 9);
  max-height: 88vh;
}

.video-modal-wrap.is-regular iframe {
  width: min(880px, 92vw);
  height: calc(min(880px, 92vw) * 9 / 16);
}

#modalImg {
  display: none;
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
}

.video-modal-wrap.is-image iframe {
  display: none;
}

.video-modal-wrap.is-image #modalImg {
  display: block;
}

.video-modal-wrap.is-map iframe {
  display: block;
  width: min(860px, 92vw);
  height: min(72vh, 560px);
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
}

#mapDirectLink {
  display: none;
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--sans);
  transition: color 0.3s;
}

#mapDirectLink:hover {
  color: var(--white);
}

.video-modal-wrap.is-map #mapDirectLink {
  display: block;
}

.video-modal-wrap.is-pdf iframe {
  display: block;
  width: min(820px, 92vw);
  height: min(88vh, 1080px);
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
}

.video-close-btn {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(22, 18, 14, .80);
  color: white;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: background .3s, color .3s, transform .3s;
}

.video-close-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
  border-color: var(--gold);
}

/* ── COMING SOON PAGES ── */
.cs-hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(229,200,169,.12);
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% 48%, rgba(229,200,169,.09) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(18,14,12,.75) 0%, transparent 32%);
  pointer-events: none;
}

.cs-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, 90vw);
  height: min(580px, 90vw);
  border-radius: 50%;
  border: 1px solid rgba(229,200,169,.1);
  pointer-events: none;
}

.cs-bg-mono {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 90vw;
  opacity: .055;
  pointer-events: none;
  user-select: none;
}

.cs-content {
  position: relative;
  z-index: 1;
  padding: 140px 40px 80px;
  max-width: 700px;
}

/* Lines flanking the label */
.cs-content .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
}

.cs-content .section-label::before,
.cs-content .section-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold);
  opacity: .65;
}

.cs-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 12px 0 0;
}

.cs-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.cs-body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--white);
  letter-spacing: 0.06em;
  margin: 22px auto 38px;
  max-width: 380px;
}

.cs-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  opacity: .55;
}

.cs-hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cs-hero .btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

