/* ==========================================================================
   LIKHA Aesthetic Clinic — Hero Section Design System
   Exact 1:1 Pixel-Perfect Recreation with Proportional Fluid Responsiveness
   ========================================================================== */

:root {
  /* Core Color Palette */
  --color-bg: #fbf2f0;
  --color-dark: #231f20;
  --color-salmon: #eaa099;
  --color-salmon-border: rgba(234, 160, 153, 0.75);
  --color-white: #ffffff;
  
  /* Typography Tokens */
  --font-serif: 'Prata', 'Didot', 'Bodoni Moda', 'Playfair Display', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Reference canvas aspect ratio: 1024 / 581 */
  --canvas-ratio: calc(1024 / 581);
}

/* Base Reset & Document Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  color: var(--color-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Screen Reader Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Hero Canvas & Container Structure
   Container Queries enable exact mathematical scaling matching 1024x581
   ========================================================================== */

.hero-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(650px, 60vw, 880px);
  background-color: var(--color-bg);
  z-index: 1;
  pointer-events: none;
}

.hero-canvas {
  container-type: inline-size;
  container-name: hero;
  position: relative;
  width: 100%;
  max-width: 1440px;
  aspect-ratio: 1024 / 581;
  background-color: var(--color-bg);
  overflow: visible;
  user-select: none;
  z-index: 10;
}

/* ==========================================================================
   Navigation Header Elements
   Precision 3-column Flex layout matching media_1788876923070.png
   All 3 items are locked to the exact horizontal center line (y=48px)
   ========================================================================== */

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
  z-index: 9999;
  padding: 0;
}

.hero-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
}

.header-left {
  position: fixed;
  left: clamp(24px, 4vw, 56px);
  top: clamp(58px, 4.5vw, 68px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: auto;
  z-index: 10000;
}

.header-center {
  position: absolute;
  left: 50%;
  top: clamp(58px, 4.5vw, 68px);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 50;
}

.header-right {
  position: fixed;
  right: clamp(24px, 4vw, 56px);
  top: clamp(58px, 4.5vw, 68px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: auto;
  z-index: 10000;
}

/* CTA: Book Appointment Button (Silky Luxury Morphing Animation) */
.btn-appointment {
  position: relative;
  width: 218px;
  height: 48px;
  background-color: var(--color-dark);
  color: #FDFBFC;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(35, 31, 32, 0.14), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  will-change: width, box-shadow, transform;
  /* Ultra-smooth, graceful 0.8s luxury easing */
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              background-color 0.4s ease,
              border-color 0.4s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-appointment:hover {
  background-color: #161415;
  box-shadow: 0 8px 28px rgba(35, 31, 32, 0.22);
  transform: translateY(-1px);
}

.btn-appointment:active {
  transform: scale(0.97);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-icon-svg {
  width: 22px;
  height: 20px;
  display: block;
}

.btn-icon-svg path {
  fill: #335393 !important;
}

.btn-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #FDFBFC;
  padding-right: 20px;
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  pointer-events: none;
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
              filter 0.5s ease 0.16s;
}

/* Collapsed Mini Circle (Smooth Graceful Contraction) */
.btn-appointment.mini {
  width: 48px;
  box-shadow: 0 4px 16px rgba(35, 31, 32, 0.16);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              background-color 0.4s ease;
}

.btn-appointment.mini .btn-icon {
  transform: scale(1);
}

.btn-appointment.mini .btn-text {
  opacity: 0;
  transform: translateX(-12px);
  filter: blur(4px);
  pointer-events: none;
  /* Faster, soft fade out when closing so text gently dissolves into the closing pill */
  transition: opacity 0.25s ease 0s,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0s,
              filter 0.25s ease 0s;
}

/* Hover on Mini State (Smooth Expands back into full pill) */
.btn-appointment.mini:hover {
  width: 218px;
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.24);
  background-color: #161415;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              background-color 0.4s ease;
}

.btn-appointment.mini:hover .btn-text {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
              filter 0.5s ease 0.16s;
}

/* Brand Logo Center */
.brand-logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
  white-space: nowrap;
}

.brand-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 8px rgba(51, 83, 147, 0.12));
}

.brand-logo-mark svg {
  display: block;
}

.logo-title {
  font-family: var(--font-sans);
  font-size: calc(22 / 1024 * 100cqw);
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--color-dark);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.28em; /* Offset for trailing letter-spacing to ensure absolute center */
  text-transform: uppercase;
}

.logo-lambda {
  display: inline-block;
  font-weight: 300;
  transform: translateY(-0.02em);
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: calc(6.2 / 1024 * 100cqw);
  font-weight: 400;
  letter-spacing: 0.32em;
  color: #4a4a4a;
  margin-top: calc(5 / 1024 * 100cqw);
  margin-left: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 / 1024 * 100cqw);
  font-family: var(--font-sans);
  font-size: calc(5.5 / 1024 * 100cqw);
  font-weight: 400;
  letter-spacing: 0.24em;
  color: #6a6a6a;
  margin-top: calc(3.5 / 1024 * 100cqw);
  margin-left: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.tagline-dash {
  display: inline-block;
  width: calc(10 / 1024 * 100cqw);
  height: 1px;
  background-color: #6a6a6a;
  opacity: 0.7;
}

/* Top Right Grid / Quincunx Menu Icon with High-DPI Vector Morph */
.btn-grid-menu {
  position: relative;
  width: clamp(34px, 3.2vw, 44px);
  height: clamp(34px, 3.2vw, 44px);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background-color 0.3s ease;
  z-index: 10002;
}

.btn-grid-menu:hover {
  transform: scale(1.1);
  border-color: rgba(234, 160, 152, 0.4);
  background-color: rgba(234, 160, 152, 0.08);
}

.btn-menu-box {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-menu-quincunx,
.icon-menu-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s ease;
}

.icon-menu-quincunx {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.icon-menu-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
  pointer-events: none;
}

/* Dots micro-animation on hover */
.q-dot {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s ease;
  transform-origin: center;
}

.btn-grid-menu:hover .q-dot-3 {
  fill: #eaa098;
  transform: scale(1.28);
}

.btn-grid-menu:hover .q-dot-1 {
  transform: translate(-1px, -1px);
}

.btn-grid-menu:hover .q-dot-2 {
  transform: translate(1px, -1px);
}

.btn-grid-menu:hover .q-dot-4 {
  transform: translate(-1px, 1px);
}

.btn-grid-menu:hover .q-dot-5 {
  transform: translate(1px, 1px);
}

/* Active / Open state morph */
.btn-grid-menu.is-open .icon-menu-quincunx {
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

.btn-grid-menu.is-open .icon-menu-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  pointer-events: auto;
}

.btn-grid-menu.is-open {
  border-color: rgba(64, 13, 28, 0.15);
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Center Composition (Thin Rose Circle & Portrait Asset)
   ========================================================================== */

.center-composition {
  position: absolute;
  left: calc(508 / 1024 * 100%); /* 508px cx */
  top: calc(331 / 581 * 100%);  /* 331px cy */
  transform: translate(-50%, -50%);
  width: calc(442 / 1024 * 100%); /* 442px diameter */
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 10;
}

/* Morphing Interactive Blob Canvas */
.blob-canvas {
  position: absolute;
  inset: -45%;
  width: 190%;
  height: 190%;
  pointer-events: none;
  z-index: 1;
}

/* Model Container & High-Resolution Image */
.model-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(407 / 442 * 100%); /* 407px to match 402px blob stroke */
  height: calc(407 / 442 * 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.model-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* ==========================================================================
   Editorial Serif Typography
   "Piękno jest wyborem" & "Nigdy przypadkiem"
   ========================================================================== */

.hero-headline {
  position: absolute;
  font-family: var(--font-serif);
  color: var(--color-salmon);
  font-size: calc(79.2 / 1024 * 100cqw);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.015em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 15;
}

.headline-word {
  display: block;
}

/* Left Column: "Piękno" & "to wybór," */
.headline-left {
  left: calc(45 / 1024 * 100%); /* 45px on 1024px */
  top: calc(150 / 581 * 100%);  /* 150px on 581px */
}

.word-beauty {
  margin-left: calc(110 / 1024 * 100cqw); /* x=155px */
  margin-bottom: calc(18 / 1024 * 100cqw); /* Exact gap to match y=240px */
  letter-spacing: -0.025em;
}

.word-right {
  margin-left: 0; /* x=45px */
  letter-spacing: -0.018em;
}

/* Right Column: "nie" & "przypadek" */
.headline-right {
  left: calc(540 / 1024 * 100%); /* 540px on 1024px */
  top: calc(332 / 581 * 100%);  /* 332px on 581px */
}

.word-not {
  margin-left: calc(28 / 1024 * 100cqw); /* x=568px */
  margin-bottom: calc(18 / 1024 * 100cqw); /* Exact gap to match y=420px */
  letter-spacing: 0.045em;
}

.word-privilege {
  margin-left: calc(30 / 1024 * 100cqw); /* x=570px - aligns flush with the cutout cove */
  letter-spacing: 0.015em;
  word-spacing: calc(4 / 1024 * 100cqw);
}

/* ==========================================================================
   Award Badges (Top Right & Bottom Left)
   ========================================================================== */

.award-badge {
  position: absolute;
  z-index: 25;
  pointer-events: auto;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.award-badge:hover {
  transform: translateY(-2px) scale(1.03);
}

.badge-image {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.badge-svg {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  overflow: visible;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

.badge-svg .badge-wreath {
  fill: #9EA3A8;
  opacity: 0.76;
}

.badge-svg .badge-hairline {
  stroke: #B4B9BE;
  stroke-width: 0.65;
  opacity: 0.65;
  stroke-linecap: round;
}

.badge-svg .badge-text-top {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 6.6px;
  font-weight: 400;
  fill: #72777D;
  letter-spacing: 0.04em;
  text-anchor: middle;
}

.badge-svg .badge-hero-num {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13.0px;
  font-weight: 600;
  fill: #484C52;
  letter-spacing: 0.14em;
  text-anchor: middle;
}

.badge-svg .badge-hero-label {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 6.6px;
  font-weight: 500;
  fill: #666B71;
  letter-spacing: 0.28em;
  text-anchor: middle;
}

.badge-svg .badge-text-bottom {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 6.0px;
  font-weight: 400;
  fill: #72777D;
  letter-spacing: 0.03em;
  text-anchor: middle;
}

/* Top Right Badge: Aesthetic Clinic of the Year 2025 Winner */
.badge-top-right {
  left: calc(786 / 1024 * 100%); /* 786px on 1024px */
  top: calc(128 / 581 * 100%);  /* 128px on 581px */
  width: calc(112 / 1024 * 100cqw);
}

/* Bottom Left Badge: Ponad 15 Certyfikatów Medycznych */
.badge-bottom-left {
  left: calc(118 / 1024 * 100%); /* 118px on 1024px */
  top: calc(430 / 581 * 100%);  /* 430px on 581px */
  width: calc(112 / 1024 * 100cqw);
}

/* ==========================================================================
   Bottom Downward Arrow Indicator (Haute-Luxe Floating Vector Indicator)
   ========================================================================== */

.bottom-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(476 / 581 * 100%);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #231F20;
  cursor: pointer;
  padding: 12px 16px;
  outline: none;
  border-radius: 9999px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.arrow-link:hover {
  color: #EA8F85;
  filter: drop-shadow(0 4px 14px rgba(234, 143, 133, 0.55));
}

.arrow-icon-svg {
  width: 15px;
  height: 30px;
  display: block;
  overflow: visible;
  animation: luxury-scroll-drift 3.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform, opacity;
}

.arrow-path-tip,
.arrow-path-stem {
  stroke-width: 1.6;
  stroke: currentColor;
  transition: stroke 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-link:hover .arrow-icon-svg {
  animation-play-state: paused;
  transform: translateY(6px) scale(1.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-link:hover .arrow-path-tip {
  transform: translateY(1.5px);
}

.arrow-link:active .arrow-icon-svg {
  transform: translateY(10px) scale(0.95);
  transition: transform 0.15s ease;
}

/* Haute-Luxe Silky Scroll Drift Animation */
@keyframes luxury-scroll-drift {
  0% {
    transform: translateY(0);
    opacity: 0.55;
  }
  40% {
    transform: translateY(10px);
    opacity: 1;
  }
  65% {
    transform: translateY(8px);
    opacity: 0.95;
  }
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
}

/* ==========================================================================
   Responsive Adaptations
   Mobile & Tablet graceful enhancements while keeping luxury editorial feel
   ========================================================================== */

@media (max-width: 640px) {
  .hero-canvas {
    aspect-ratio: auto;
    min-height: 100vh;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .hero-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    z-index: 9999;
    pointer-events: none;
  }
  
  .header-left {
    position: fixed;
    top: 18px;
    left: 16px;
    transform: none;
    z-index: 10000;
    pointer-events: auto;
  }

  .header-center {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    pointer-events: auto;
  }

  .header-right {
    position: fixed;
    top: 18px;
    right: 16px;
    transform: none;
    z-index: 10000;
    pointer-events: auto;
  }
  
  .btn-appointment {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(35, 31, 32, 0.16);
  }
  
  .btn-appointment .btn-text {
    display: none;
  }
  
  .btn-appointment .btn-icon {
    margin: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-appointment .btn-icon-svg {
    width: 18px;
    height: 18px;
  }

  .btn-appointment.mobile-floating {
    display: none !important;
  }
  
  .brand-logo {
    position: static;
    transform: none;
    width: auto;
    max-width: 130px;
  }
  
  .btn-grid-menu {
    position: static;
    transform: none;
    width: 24px;
    height: 24px;
  }
  
  .menu-icon-img {
    width: 14px;
    height: 14px;
  }
  
  .center-composition {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 76vw;
    max-width: 290px;
    margin: 56px auto 20px auto;
  }
  
  .hero-headline {
    position: static;
    font-size: clamp(34px, 10vw, 48px);
    text-align: center;
  }
  
  .headline-left, .headline-right {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto;
  }
  
  .word-beauty, .word-right, .word-not, .word-privilege,
  .word-left-1, .word-left-2, .word-right-1, .word-right-2 {
    margin-left: 0;
  }
  
  .award-badge {
    position: relative;
    left: auto;
    top: auto;
    width: clamp(120px, 34vw, 140px);
    margin: 14px auto;
  }
  
  .bottom-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    top: auto;
    margin: 0;
    width: 16px;
    height: 32px;
    z-index: 25;
  }
}

/* ==========================================================================
   Brand Philosophy Statement Section
   Exact 1:1 Recreation from media_1788885025179.png
   ========================================================================== */

/* ==========================================================================
   Brand Philosophy Statement Section
   Kinetic Word-by-Word Haute-Luxe Reveal Typography
   ========================================================================== */

.section-statement {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(110px, 13vw, 190px) 24px;
  user-select: none;
  position: relative;
  z-index: 5;
  overflow: hidden;
  will-change: background-color;
}

/* Atmospheric feathered transition zone at top boundary with Hero Section
   Eliminates any harsh seam and creates a soft, luxurious gradient diffusion */
.section-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(140px, 18vw, 260px);
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    rgba(251, 242, 240, 0.92) 20%,
    rgba(252, 246, 245, 0.65) 45%,
    rgba(254, 251, 250, 0.35) 70%,
    rgba(255, 255, 255, 0.1) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
  will-change: opacity;
}

.statement-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.statement-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  font-size: clamp(34px, 6.5vw, 92px);
  line-height: 1.14;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  -webkit-text-stroke: 2.8px var(--color-salmon);
  paint-order: stroke fill;
  margin: 0 auto;
  cursor: default;
  max-width: 1020px;
  width: 100%;
  position: relative;
}

.statement-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  position: relative;
  will-change: transform;
}

/* Optical Mask Container for Each Word */
.word-mask {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  vertical-align: top;
  padding: 0.18em 0.1em 0.28em;
  margin: -0.18em -0.05em -0.28em;
  position: relative;
}

/* Kinetic Word Element (Always 100% vector-sharp, no blur) */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(130%) rotate(4deg) skewY(3deg);
  letter-spacing: 0.12em;
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              letter-spacing 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, letter-spacing;
}

/* Filled Words (PIĘKNO, SZTUKĄ) — 100% crisp solid color */
.word-reveal.statement-fill {
  color: var(--color-salmon);
  -webkit-text-stroke: 0;
  paint-order: normal;
  filter: none !important;
}

/* Active State on In-View: Words Rise & Assemble Crisply */
.section-statement.is-in-view .word-reveal {
  opacity: 1;
  transform: translateY(0) rotate(0deg) skewY(0deg);
  filter: none !important;
  letter-spacing: 0.04em;
}

/* Sequential Stagger Timing per Word */
.statement-line:nth-child(1) .word-mask:nth-child(1) .word-reveal { transition-delay: 0.05s; }
.statement-line:nth-child(1) .word-mask:nth-child(2) .word-reveal { transition-delay: 0.28s; }

.statement-line:nth-child(2) .word-mask:nth-child(1) .word-reveal { transition-delay: 0.52s; }
.statement-line:nth-child(2) .word-mask:nth-child(2) .word-reveal { transition-delay: 0.72s; }

.statement-line:nth-child(3) .word-mask:nth-child(1) .word-reveal { transition-delay: 0.94s; }
.statement-line:nth-child(3) .word-mask:nth-child(2) .word-reveal { transition-delay: 1.12s; }

.statement-line:nth-child(4) .word-mask:nth-child(1) .word-reveal { transition-delay: 1.34s; }
.statement-line:nth-child(4) .word-mask:nth-child(2) .word-reveal { transition-delay: 1.52s; }

@media (max-width: 768px) {
  .section-statement {
    padding: 85px 16px 95px;
  }
  
  .statement-title {
    font-size: clamp(24px, 7vw, 42px);
    line-height: 1.2;
    letter-spacing: 0.03em;
    -webkit-text-stroke: 2.2px var(--color-salmon);
  }

  .statement-line {
    gap: 12px;
  }
}



/* ==========================================================================
   Doctor Profile Section ("Poznajmy się bliżej") — 1:1 Likha Reference Layout
   Pure White Background • High-Contrast Serif • Salmon/Coral Accents (#EA8F85)
   Delicate Organic Pebble Portrait with Fine Contour Ring
   ========================================================================== */

.section-doctor {
  width: 100% !important;
  background-color: #FAF8F5 !important;
  padding: clamp(80px, 8.5vw, 130px) 0 clamp(90px, 9.5vw, 140px) !important;
  position: relative !important;
  z-index: 9 !important;
  overflow: hidden !important;
  border-top-left-radius: clamp(38px, 4.5vw, 68px) !important;
  border-top-right-radius: clamp(38px, 4.5vw, 68px) !important;
  margin-top: clamp(-36px, -4vw, -56px) !important;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07), 0 -4px 12px rgba(0, 0, 0, 0.03) !important;
  border-top: none !important;
  border-bottom: none !important;
}

.doctor-likha-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

/* Left Column */
.doctor-likha-content {
  display: flex;
  flex-direction: column;
}

.doctor-likha-kicker {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EA8F85;
  margin-bottom: 22px;
}

.doctor-likha-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(38px, 3.8vw, 48px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.16;
  margin: 0 0 28px 0;
  letter-spacing: -0.015em;
}

.doctor-likha-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.doctor-likha-p {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 15px;
  line-height: 1.74;
  color: #4A4A4A;
  margin: 0;
}

.doc-coral-highlight {
  color: #EA8F85;
  font-weight: 700;
}

.doctor-likha-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(24px, 3vh, 36px);
}

.doctor-likha-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif !important;
  font-size: 14.5px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, color 0.25s ease;
  padding: 4px 0;
}

.doctor-likha-link .doc-coral-arrow {
  color: #EA8F85;
  font-size: 20px;
  font-weight: 300;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.doctor-likha-link:hover {
  color: #400D1C;
}

.doctor-likha-link:hover .doc-coral-arrow {
  transform: translateX(6px);
  color: #400D1C;
}

/* Right Column: Organic Pebble Portrait with Delicate Contour Ring */
.doctor-likha-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor-likha-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.doctor-likha-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -36px;
}

.doctor-likha-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.2px solid #F0AFA9;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.doctor-likha-visual-wrap:hover .doctor-likha-ring {
  transform: scale(1.02);
  border-color: #EA8F85;
}

.doctor-likha-photo-circle,
.doctor-likha-photo-pebble {
  width: 84%;
  height: 84%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}

.doctor-likha-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-likha-visual-wrap:hover .doctor-likha-img {
  transform: scale(1.04);
}

/* 3 Trust Pills */
.doctor-likha-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(38px, 4vw, 50px);
  max-width: 500px;
}

.doctor-likha-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(234, 143, 133, 0.45);
  border-radius: 9999px;
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 11.8px;
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(234, 143, 133, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.doctor-likha-pill:hover {
  transform: translateY(-2px);
  border-color: #EA8F85;
  box-shadow: 0 6px 20px rgba(234, 143, 133, 0.18);
}

.doctor-likha-pill strong {
  color: #EA8F85;
  font-weight: 700;
}

.doc-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #EA8F85;
  display: inline-block;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .doctor-likha-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .doctor-likha-actions {
    justify-content: center;
  }

  .doctor-likha-visual-col {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .doctor-likha-visual-wrap {
    max-width: 320px;
    margin-top: 0;
  }

  .doctor-likha-pills {
    margin-top: 28px;
  }

  .doctor-likha-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   Treatments Interactive Showcase Section
   Floating Organic Circles with Asynchronous Multi-Phase Wave Motion
   ========================================================================== */

.section-treatments {
  width: 100%;
  background-color: #ffffff;
  padding: clamp(70px, 7vw, 110px) 0 clamp(80px, 8vw, 120px);
  position: relative;
  z-index: 6;
  border-top: 1px solid rgba(64, 13, 28, 0.06);
}

/* Ambient Subtle Decorative Rings */
.treatments-ambient-ring {
  position: absolute;
  top: -80px;
  right: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(234, 160, 152, 0.4);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.treatments-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  position: relative;
  z-index: 2;
}

/* Section Header */
.treatments-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(32px, 3.8vw, 48px);
}

.treatments-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #400D1C;
  background: rgba(234, 160, 152, 0.16);
  border: 1px solid rgba(234, 160, 152, 0.4);
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.treatments-title {
  font-family: 'Prata', serif !important;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  color: #231f20;
  line-height: 1.16;
  margin: 0 0 14px 0;
  letter-spacing: -0.015em;
}

.treatments-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c7f7e;
  margin: 0;
}

/* ==========================================================================
   Smart Problem-to-Procedure Finder (Inteligentna Wyszukiwarka Zabiegów)
   ========================================================================== */
.services-search-container {
  max-width: 860px;
  margin: 0 auto clamp(26px, 3.2vw, 42px);
  position: relative;
  z-index: 25;
}

.services-search-bar {
  position: relative;
  width: 100%;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(64, 13, 28, 0.16);
  border-radius: 999px;
  padding: 6px 14px 6px 22px;
  box-shadow: 0 8px 30px rgba(64, 13, 28, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input-wrapper:focus-within,
.search-input-wrapper.is-focused {
  border-color: #400D1C;
  box-shadow: 0 14px 42px rgba(64, 13, 28, 0.12), 0 0 0 3.5px rgba(234, 160, 152, 0.28);
  transform: translateY(-1px);
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eaa098;
  margin-right: 14px;
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
  color: #400D1C;
  transform: scale(1.1);
}

.services-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(13.5px, 1.05vw, 15px);
  font-weight: 500;
  color: #231f20;
  padding: 10px 0;
  line-height: 1.4;
}

.services-search-input::placeholder {
  color: #9c8e8d;
  font-family: 'Jost', sans-serif !important;
  font-size: clamp(13px, 1vw, 14.5px);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 1;
}

.services-search-clear {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(64, 13, 28, 0.06);
  color: #6b5c5e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
  transition: all 0.22s ease;
  outline: none;
}

.services-search-clear:hover {
  background: #400D1C;
  color: #F7ECDD;
  transform: scale(1.08);
}

/* Quick Suggestion Tags */
.search-quick-tags {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 10px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.search-quick-tags::-webkit-scrollbar {
  display: none;
}

.quick-tags-label {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c7f7e;
  margin-right: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-tag-chip {
  background: rgba(251, 247, 244, 0.95);
  border: 1px solid rgba(64, 13, 28, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Jost', sans-serif !important;
  font-size: 12.5px;
  font-weight: 500;
  color: #5a4b4d;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-tag-chip:hover {
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(64, 13, 28, 0.2);
}

/* Floating Results Dropdown */
.services-search-results-box {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid rgba(64, 13, 28, 0.13);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(64, 13, 28, 0.14), 0 4px 16px rgba(0, 0, 0, 0.04);
  max-height: 490px;
  overflow-y: auto;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.99);
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(64, 13, 28, 0.2) transparent;
}

.services-search-results-box::-webkit-scrollbar {
  width: 6px;
}

.services-search-results-box::-webkit-scrollbar-thumb {
  background: rgba(64, 13, 28, 0.2);
  border-radius: 6px;
}

.services-search-results-box.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Results Header */
.search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #FCF8F5;
  border-bottom: 1px solid rgba(64, 13, 28, 0.08);
  border-radius: 20px 20px 0 0;
  position: sticky;
  top: 0;
  z-index: 2;
}

.search-results-count {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #400D1C;
}

.search-results-tip {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px;
  color: #8c7f7e;
}

/* Results List */
.search-results-list {
  padding: 10px 12px;
  list-style: none;
  margin: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 4px;
}

.search-result-item:last-child {
  margin-bottom: 0;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  background: #FAF4F0;
  border-color: rgba(64, 13, 28, 0.12);
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(64, 13, 28, 0.05);
  outline: none;
}

.result-item-left {
  flex: 1;
  min-width: 0;
}

.result-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10.5px;
  font-weight: 700;
  color: #8c7f7e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.breadcrumb-gender {
  color: #400D1C;
  font-weight: 800;
}

.breadcrumb-sep {
  opacity: 0.45;
  font-size: 10px;
}

.breadcrumb-cat {
  color: #eaa098;
}

.result-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #231f20;
  line-height: 1.35;
  margin: 0;
}

.search-highlight {
  background: rgba(234, 160, 152, 0.4);
  color: #400D1C;
  font-weight: 800;
  border-radius: 3px;
  padding: 0 3px;
}

.result-matched-synonym {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px;
  color: #8c7f7e;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.result-matched-synonym strong {
  color: #400D1C;
  font-weight: 700;
}

.result-item-right {
  flex-shrink: 0;
}

.result-action-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  color: #400D1C;
  background: rgba(64, 13, 28, 0.06);
  border: 1px solid rgba(64, 13, 28, 0.12);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.search-result-item:hover .result-action-arrow {
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
  transform: translateX(2px);
}

/* Empty Search State */
.search-empty-state {
  padding: 38px 24px 34px;
  text-align: center;
}

.empty-state-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(234, 160, 152, 0.2);
  color: #400D1C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.empty-state-title {
  font-family: 'Prata', serif !important;
  font-size: clamp(20px, 2vw, 24px);
  color: #231f20;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.empty-state-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 13.5px;
  line-height: 1.55;
  color: #6b5c5e;
  max-width: 540px;
  margin: 0 auto 20px;
}

.empty-state-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #400D1C;
  color: #F7ECDD;
  padding: 11px 26px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(64, 13, 28, 0.25);
}

.empty-state-cta:hover {
  background: #231f20;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Targeted Procedure Highlight Glow Animation */
@keyframes procHighlightGlow {
  0% {
    background-color: #ffffff;
    box-shadow: 0 0 0 0 rgba(64, 13, 28, 0);
  }
  20% {
    background-color: #FAF2EC;
    border-color: #400D1C;
    box-shadow: 0 0 0 4px rgba(234, 160, 152, 0.4), 0 10px 28px rgba(64, 13, 28, 0.15);
    transform: translateX(6px);
  }
  60% {
    background-color: #FAF2EC;
    border-color: #400D1C;
    box-shadow: 0 0 0 3px rgba(234, 160, 152, 0.3), 0 8px 22px rgba(64, 13, 28, 0.1);
  }
  100% {
    background-color: #ffffff;
    border-color: rgba(64, 13, 28, 0.08);
    box-shadow: none;
    transform: none;
  }
}

.procedure-item.is-target-highlight {
  animation: procHighlightGlow 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   Centered Pill Switcher (Dla Kobiet / Dla Mężczyzn)
   ========================================================================== */
.services-switcher-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.services-pill-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fbf7f4;
  border: 1.5px solid rgba(64, 13, 28, 0.12);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 8px 30px rgba(64, 13, 28, 0.05), inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pill-slider-thumb {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: #400D1C;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(64, 13, 28, 0.32);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.services-pill-switcher.men-active .pill-slider-thumb {
  transform: translateX(100%);
}

.pill-switch-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  color: #6b5c5e;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  outline: none;
  transition: color 0.35s ease;
  user-select: none;
}

.pill-switch-btn .pill-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pill-switch-btn .pill-count-chip {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(64, 13, 28, 0.07);
  color: #8c7f7e;
  transition: all 0.35s ease;
}

.pill-switch-btn:hover {
  color: #231f20;
}

.pill-switch-btn.is-active {
  color: #F7ECDD;
}

.pill-switch-btn.is-active .pill-btn-icon {
  opacity: 1;
  transform: scale(1.1);
}

.pill-switch-btn.is-active .pill-count-chip {
  background: rgba(247, 236, 221, 0.22);
  color: #F7ECDD;
}

/* ==========================================================================
   Treatments Interactive Showcase Section
   Floating Organic Circles with Asynchronous Multi-Phase Wave Motion
   ========================================================================== */

/* Full-Width Horizontal Edge-to-Edge Carousel Track */
.treatments-carousel-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 20px 0 40px;
  min-height: clamp(420px, 32vw, 500px);
}

.treatments-track {
  display: flex;
  gap: clamp(28px, 3.5vw, 50px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: clamp(24px, 6vw, 100px);
  padding-right: clamp(24px, 6vw, 100px);
  padding-top: 55px;
  padding-bottom: 55px;
  cursor: grab;
  user-select: none;
  position: relative;
}

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

.treatments-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* ==========================================================================
   Apple Premium Carousel Navigation & Dynamic Morphing Indicator
   Liquid Frosted Glass • 7 Spring Dots • Stepper Chevrons • Editorial Meta
   ========================================================================== */
.treatments-apple-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 15px auto 45px auto;
  position: relative;
  z-index: 10;
}

.treatments-apple-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Apple Discrete Liquid Glass Nav Chevrons (Prev / Next Circle Buttons) */
.apple-nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(238, 238, 241, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  color: #3C3C43;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
}

.apple-nav-arrow:hover:not(:disabled) {
  background: rgba(228, 228, 234, 0.98);
  transform: scale(1.06);
  color: #1C1C1E;
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 1);
}

.apple-nav-arrow:active:not(:disabled) {
  transform: scale(0.95);
  background: rgba(220, 220, 226, 0.95);
}

.apple-nav-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  color: #A1A1A6;
  background: rgba(238, 238, 241, 0.6);
  box-shadow: none;
}

/* Apple Discrete Liquid Glass Dots Track Capsule */
.apple-dots-track {
  height: 38px;
  padding: 0 16px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(238, 238, 241, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dot item button */
.apple-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-tap-highlight-color: transparent;
}

.apple-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
}

.apple-dot-inner {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: #8E8E93;
  opacity: 0.65;
  transition: 
    width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover on inactive dot */
.apple-dot:hover .apple-dot-inner {
  opacity: 0.95;
  transform: scale(1.2);
}

/* Active Morphing Pill — Signature Apple iOS/macOS Fluid Pill */
.apple-dot.is-active {
  width: 22px;
}

.apple-dot.is-active .apple-dot-inner {
  width: 20px;
  height: 7px;
  background: #1D1D1F;
  opacity: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: scale(1);
}

/* Apple Floating Editorial Meta Status */
.treatments-apple-indicator-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86868B;
  transition: opacity 0.25s ease;
  user-select: none;
}

.treatments-apple-indicator-meta .meta-current-num {
  font-weight: 700;
  color: #1D1D1F;
}

.treatments-apple-indicator-meta .meta-slash {
  opacity: 0.45;
}

.treatments-apple-indicator-meta .meta-total-num {
  opacity: 0.55;
}

.treatments-apple-indicator-meta .meta-dot-sep {
  opacity: 0.4;
  font-size: 8px;
}

.treatments-apple-indicator-meta .meta-category-name {
  font-weight: 600;
  color: #1D1D1F;
  letter-spacing: 0.1em;
}

/* Category Gender Switch Transitions (Wave Dissolve & Staggered Reveal) */
.treatments-track.is-exiting {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.treatments-track.is-entering {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

@keyframes circleFadeOutWave {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
    filter: blur(5px);
  }
}

.treatments-track.is-exiting .treatment-card {
  animation: circleFadeOutWave 0.26s cubic-bezier(0.4, 0, 1, 1) both;
}

.treatments-track.is-exiting .treatment-item-wrap:nth-child(1) .treatment-card { animation-delay: 0.00s; }
.treatments-track.is-exiting .treatment-item-wrap:nth-child(2) .treatment-card { animation-delay: 0.02s; }
.treatments-track.is-exiting .treatment-item-wrap:nth-child(3) .treatment-card { animation-delay: 0.04s; }
.treatments-track.is-exiting .treatment-item-wrap:nth-child(4) .treatment-card { animation-delay: 0.06s; }
.treatments-track.is-exiting .treatment-item-wrap:nth-child(5) .treatment-card { animation-delay: 0.08s; }
.treatments-track.is-exiting .treatment-item-wrap:nth-child(6) .treatment-card { animation-delay: 0.10s; }
.treatments-track.is-exiting .treatment-item-wrap:nth-child(7) .treatment-card { animation-delay: 0.12s; }

@keyframes circleFadeInWave {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.88);
    filter: blur(8px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.treatments-track.is-entering .treatment-card {
  animation: circleFadeInWave 0.46s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.treatments-track.is-entering .treatment-item-wrap:nth-child(1) .treatment-card { animation-delay: 0.02s; }
.treatments-track.is-entering .treatment-item-wrap:nth-child(2) .treatment-card { animation-delay: 0.06s; }
.treatments-track.is-entering .treatment-item-wrap:nth-child(3) .treatment-card { animation-delay: 0.10s; }
.treatments-track.is-entering .treatment-item-wrap:nth-child(4) .treatment-card { animation-delay: 0.14s; }
.treatments-track.is-entering .treatment-item-wrap:nth-child(5) .treatment-card { animation-delay: 0.18s; }
.treatments-track.is-entering .treatment-item-wrap:nth-child(6) .treatment-card { animation-delay: 0.22s; }
.treatments-track.is-entering .treatment-item-wrap:nth-child(7) .treatment-card { animation-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  .treatments-track.is-exiting .treatment-card,
  .treatments-track.is-entering .treatment-card {
    animation-duration: 0.15s !important;
    animation-delay: 0s !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Floating Vertical Wave Animation for Circles */
@keyframes floatcard {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -46px, 0);
  }
}

.treatment-item-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

/* Asynchronous Phase Offsets: one rises, one drops */
.treatment-item-wrap:nth-child(1) {
  animation: floatcard 5.4s ease-in-out infinite;
  animation-delay: 0s;
}

.treatment-item-wrap:nth-child(2) {
  animation: floatcard 7.0s ease-in-out infinite;
  animation-delay: -3.5s;
}

.treatment-item-wrap:nth-child(3) {
  animation: floatcard 8.2s ease-in-out infinite;
  animation-delay: -1.6s;
}

.treatment-item-wrap:nth-child(4) {
  animation: floatcard 6.0s ease-in-out infinite;
  animation-delay: -4.6s;
}

.treatment-item-wrap:nth-child(5) {
  animation: floatcard 7.6s ease-in-out infinite;
  animation-delay: -2.2s;
}

.treatment-item-wrap:nth-child(6) {
  animation: floatcard 6.5s ease-in-out infinite;
  animation-delay: -5.2s;
}

.treatment-item-wrap:nth-child(7) {
  animation: floatcard 7.2s ease-in-out infinite;
  animation-delay: -1.0s;
}

/* Treatment Circular Card */
.treatment-card {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  outline: none;
}

.treatment-circle {
  width: clamp(280px, 23vw, 340px);
  height: clamp(280px, 23vw, 340px);
  border-radius: 50%;
  border: 1.5px solid #8DD2CC;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 2vw, 28px);
  position: relative;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              background 0.35s ease,
              box-shadow 0.4s ease;
}

.circle-num-pill {
  position: absolute;
  top: clamp(14px, 1.8vw, 22px);
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px;
  font-weight: 800;
  color: #400D1C;
  background: rgba(64, 13, 28, 0.06);
  border: 1px solid rgba(64, 13, 28, 0.12);
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.treatment-icon-img {
  width: clamp(100px, 8.5vw, 130px);
  height: clamp(100px, 8.5vw, 130px);
  margin-bottom: 12px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-icon-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.treatment-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 700;
  color: #eaa098;
  line-height: 1.25;
  margin: 0 0 5px 0;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  max-width: 90%;
}

.treatment-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 12.5px;
  font-weight: 500;
  color: #8c7f7e;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  max-width: 85%;
}

.treatment-explore-badge {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #400D1C;
  background: rgba(234, 160, 152, 0.2);
  border: 1px solid rgba(234, 160, 152, 0.5);
  padding: 3px 12px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* Hover & Active / Selected States for Circular Cards */
.treatment-card:hover .treatment-circle,
.treatment-card.is-active .treatment-circle {
  transform: scale(1.04);
  border-color: #400D1C;
  background: radial-gradient(circle, #fdf8f5 0%, #ffffff 80%);
  box-shadow: 0 20px 48px rgba(64, 13, 28, 0.12);
}

.treatment-card:hover .treatment-icon-img,
.treatment-card.is-active .treatment-icon-img {
  transform: scale(1.08);
}

.treatment-card:hover .treatment-title,
.treatment-card.is-active .treatment-title {
  color: #400D1C;
}

.treatment-card:hover .treatment-desc,
.treatment-card.is-active .treatment-desc {
  color: #231f20;
}

.treatment-card:hover .treatment-explore-badge,
.treatment-card.is-active .treatment-explore-badge {
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
  transform: translateY(1px);
}

.treatment-card.is-active .circle-num-pill {
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
}

/* ==========================================================================
   Expandable Procedures Drawer (Panel pod kółkami)
   ========================================================================== */
.procedures-drawer-container {
  margin-top: clamp(40px, 4.5vw, 64px);
  position: relative;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.45s ease,
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(24px);
}

.procedures-drawer-container.is-open {
  max-height: 4000px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.procedures-drawer-container.is-transitioning-out {
  opacity: 0 !important;
  transform: translateY(-16px) scale(0.99) !important;
  filter: blur(2px) !important;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
}

.procedures-drawer-inner {
  background: #FCF8F5;
  border: 1.5px solid rgba(64, 13, 28, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 3.8vw, 48px);
  box-shadow: 0 24px 60px rgba(64, 13, 28, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
}

/* Decorative Top Edge Gradient */
.procedures-drawer-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #eaa098 25%, #400D1C 50%, #eaa098 75%, transparent 100%);
  opacity: 0.8;
}

/* ==========================================================================
   Drawer Header: Centered Luxury Editorial Layout
   ========================================================================== */
.drawer-header {
  position: relative;
  text-align: center;
  padding: 10px 0 24px 0;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(64, 13, 28, 0.08);
}

.drawer-actions-block {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.drawer-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid rgba(64, 13, 28, 0.14);
  border-radius: 9999px;
  padding: 8px 16px 8px 14px;
  color: #400D1C;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.drawer-close-btn:hover {
  background: #400D1C;
  color: #ffffff;
  border-color: #400D1C;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(64, 13, 28, 0.2);
}

.drawer-close-icon {
  font-size: 13px;
  line-height: 1;
}

.drawer-meta-block {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(64, 13, 28, 0.05);
  border: 1px solid rgba(64, 13, 28, 0.1);
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.drawer-gender-indicator {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #400D1C;
}

.drawer-sep {
  color: #EAA099;
  font-size: 10px;
}

.drawer-cat-num,
.drawer-total-count {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10.5px;
  font-weight: 600;
  color: #8C7B7E;
  letter-spacing: 0.04em;
}

.drawer-title {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: #231F20;
  line-height: 1.25;
  margin: 4px 0 10px 0;
  letter-spacing: 0.02em;
}

.drawer-header-prompt {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px;
  color: #5C4E50;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 680px) {
  .drawer-actions-block {
    position: static;
    margin-bottom: 14px;
    display: flex;
    justify-content: flex-end;
  }
}

/* Drawer Category Panels */
.drawer-panels-wrapper {
  position: relative;
  width: 100%;
}

.drawer-category-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.drawer-category-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Redundant instruction bar hidden in favor of clean header prompt */
.drawer-instruction-bar {
  display: none;
}

/* ==========================================================================
   Procedures Grid: Side-by-Side 2-Column Luxury Pills Matrix
   ========================================================================= */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

@media (max-width: 860px) {
  .procedures-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Single Procedure Item: Sleek, High-End Pill */
.procedure-item {
  background: #ffffff;
  border: 1.5px solid rgba(64, 13, 28, 0.12);
  border-radius: 9999px;
  padding: 13px 18px 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 3px 12px rgba(64, 13, 28, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* High-Impact Intense Luxury Hover State */
.procedure-item:hover {
  background: #400D1C;
  border-color: #400D1C;
  transform: translateY(-3px) scale(1.008);
  box-shadow: 0 14px 34px rgba(64, 13, 28, 0.28);
}

.procedure-item.is-target-highlight {
  animation: procedureTargetPulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Tactile Active State when clicked */
.procedure-item.is-activating {
  background: #2D0A14 !important;
  color: #FFFFFF !important;
  border-color: #400D1C !important;
  transform: scale(0.97) !important;
  box-shadow: 0 0 0 2px rgba(223, 192, 146, 0.45), 0 6px 20px rgba(45, 10, 20, 0.28) !important;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.procedure-item.is-activating .proc-name {
  color: #FFFFFF !important;
}

.procedure-item.is-activating .proc-bullet {
  background: #DFC092 !important;
  box-shadow: 0 0 10px rgba(223, 192, 146, 0.9) !important;
  transform: scale(1.3) !important;
}

.procedure-item.is-activating .proc-book-btn::after {
  transform: translateX(6px) !important;
  color: #DFC092 !important;
}

@keyframes procedureTargetPulse {
  0% { transform: scale(0.98); border-color: #400D1C; box-shadow: 0 0 0 0 rgba(64, 13, 28, 0.4); }
  30% { transform: scale(1.02); border-color: #400D1C; box-shadow: 0 0 0 10px rgba(64, 13, 28, 0); }
  100% { transform: scale(1); border-color: rgba(64, 13, 28, 0.3); }
}

/* Subtle, Elegant Dot Indicator */
.proc-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #400D1C;
  opacity: 0.55;
  flex-shrink: 0;
  margin: 0 8px 0 4px;
  font-size: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* On hover of this specific pill only: gently breathes and scales softly */
.procedure-item:hover .proc-bullet {
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  animation: subtleDotBreathe 1.8s ease-in-out infinite alternate;
}

@keyframes subtleDotBreathe {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.4);
  }
}

.proc-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proc-name {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px;
  font-weight: 600;
  color: #231F20;
  line-height: 1.35;
  margin: 0;
  letter-spacing: 0.01em;
  transition: color 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.procedure-item:hover .proc-name {
  color: #ffffff;
  transform: translateX(4px);
}

.proc-tag {
  display: none;
}

/* Minimal, Luxury Arrow Trigger */
.proc-book-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0;
  background: #400D1C;
  border: none;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 8px rgba(64, 13, 28, 0.18);
}

.proc-book-btn::after {
  content: '→';
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
}

.procedure-item:hover .proc-book-btn {
  background: #EAA099;
  color: #400D1C;
  transform: translateX(3px) scale(1.1);
  box-shadow: 0 4px 14px rgba(234, 160, 153, 0.45);
}

.procedure-item:hover .proc-book-btn::after {
  transform: translateX(2px);
}


/* Consultation Bottom Banner: Luxury Concierge Statement */
.drawer-consultation-banner {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(22px, 2.8vw, 32px) clamp(26px, 3.5vw, 42px);
  border-radius: 24px;
  background: #231f20;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 14px 40px rgba(35, 31, 32, 0.16);
  border: 1px solid rgba(234, 160, 153, 0.25);
}

.banner-text-wrap {
  flex: 1;
  min-width: 260px;
}

.banner-title {
  font-family: 'Prata', 'Playfair Display', serif !important;
  font-size: clamp(20px, 2vw, 26px);
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.banner-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 720px;
}

.banner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #231f20;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.banner-cta-btn:hover {
  background: #eaa099;
  color: #231f20;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(234, 160, 153, 0.35);
}

.banner-cta-btn .banner-arrow {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.banner-cta-btn:hover .banner-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Breakpoints for Interactive Services
   ========================================================================== */
@media (max-width: 900px) {
  .procedures-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .treatment-circle {
    width: 250px;
    height: 250px;
    padding: 16px;
  }

  .treatment-icon-img {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    margin-top: 6px;
  }

  .treatment-title {
    font-size: 17px;
  }

  .treatment-desc {
    font-size: 12px;
  }

  @keyframes floatcard {
    0%, 100% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, -26px, 0);
    }
  }
}

@media (max-width: 640px) {

  .services-pill-switcher {
    width: 100%;
    max-width: 360px;
  }

  .pill-switch-btn {
    flex: 1;
    justify-content: center;
    padding: 11px 14px;
    font-size: 12.5px;
    gap: 6px;
  }

  .pill-count-chip {
    display: none;
  }

  .procedures-drawer-inner {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .drawer-consultation-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .procedure-item {
    border-radius: 9999px;
    padding: 10px 16px 10px 14px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }

  .services-search-container {
    margin-bottom: 24px;
  }

  .search-input-wrapper {
    padding: 4px 10px 4px 16px;
  }

  .services-search-input {
    font-size: 13px;
    padding: 8px 0;
  }

  .search-quick-tags {
    gap: 6px;
    padding: 6px 6px 8px;
  }

  .quick-tag-chip {
    font-size: 11.5px;
    padding: 4px 10px;
  }

  .search-result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .result-action-arrow {
    align-self: flex-end;
  }

  .proc-book-btn {
    align-self: flex-end;
  }
}

/* ==========================================================================
   LIKHA AESTHETIC CUSTOM CURSOR (1:1 with https://likhaaesthetic.ie)
   Fluid 0.9s spring bezier trailing + organic blob morph on menu button hover
   ========================================================================== */
.cursor {
  height: 64px;
  width: 64px;
  position: fixed;
  z-index: 100000;
  top: -32px;
  left: -32px;
  pointer-events: none;
  -webkit-transition: all .9s cubic-bezier(.15,.9,.34,.95);
  -moz-transition: all .9s cubic-bezier(.15,.9,.34,.95);
  -ms-transition: all .9s cubic-bezier(.15,.9,.34,.95);
  -o-transition: all .9s cubic-bezier(.15,.9,.34,.95);
  transition: all .9s cubic-bezier(.15,.9,.34,.95);
  -webkit-transform: translate(-100px,-100px);
  -moz-transform: translate(-100px,-100px);
  -ms-transform: translate(-100px,-100px);
  -o-transform: translate(-100px,-100px);
  transform: translate(-100px,-100px);
}
@media screen and (max-width: 1023px) {
  .cursor {
    display: none !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}
.cursor svg {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%,-50%) scale(0);
  -moz-transform: translate(-50%,-50%) scale(0);
  -ms-transform: translate(-50%,-50%) scale(0);
  -o-transform: translate(-50%,-50%) scale(0);
  transform: translate(-50%,-50%) scale(0);
  -webkit-transition: all .3s cubic-bezier(.76,0,.24,1);
  -moz-transition: all .3s cubic-bezier(.76,0,.24,1);
  -ms-transition: all .3s cubic-bezier(.76,0,.24,1);
  -o-transition: all .3s cubic-bezier(.76,0,.24,1);
  transition: all .3s cubic-bezier(.76,0,.24,1);
}
.cursor svg path {
  stroke: #EA8F85;
  -webkit-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -moz-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -ms-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -o-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  transition: all .4s cubic-bezier(.15,.9,.34,.95);
}
.cursor.arrow svg {
  opacity: 1;
  -webkit-transform: translate(-50%,-50%) scale(1);
  -moz-transform: translate(-50%,-50%) scale(1);
  -ms-transform: translate(-50%,-50%) scale(1);
  -o-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1);
}
.cursor.arrow-white {
  border-radius: 50%;
  background-color: #FAF7F5;
}
.cursor.arrow-white svg {
  opacity: 1;
  -webkit-transform: translate(-50%,-50%) scale(1);
  -moz-transform: translate(-50%,-50%) scale(1);
  -ms-transform: translate(-50%,-50%) scale(1);
  -o-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1);
}
.cursor.white:after {
  border-color: #FAF7F5;
}
.cursor.white.arrow svg path {
  stroke: #FAF7F5;
}
.cursor:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  transform-origin: center;
  height: 100%;
  width: 100%;
  border: 1.5px solid #EA8F85;
  -webkit-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -moz-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -ms-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -o-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  transition: all .4s cubic-bezier(.15,.9,.34,.95);
}
.cursor.hover:after {
  background-color: #EA8F85;
  -webkit-transform: scale(.2);
  -moz-transform: scale(.2);
  -ms-transform: scale(.2);
  -o-transform: scale(.2);
  transform: scale(.2);
}
.cursor.hover.dark:after {
  background-color: #FAF7F5;
  border-color: #FAF7F5;
}
.cursor__menu {
  font-family: 'Jost', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: .1em;
  text-transform: lowercase;
  color: #231F20;
}
.cursor__discover,
.cursor__menu {
  opacity: 0;
  -webkit-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -moz-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -ms-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  -o-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  transition: all .4s cubic-bezier(.15,.9,.34,.95);
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%,-50%,0);
  -moz-transform: translate3d(-50%,-50%,0);
  -ms-transform: translate3d(-50%,-50%,0);
  -o-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  pointer-events: none;
}
.cursor__discover {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: .125em;
  color: #4b4034;
  text-transform: uppercase;
}
.cursor.hoverdiscover:after {
  background-color: #FAF7F5;
  border-color: #FAF7F5;
  border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  z-index: -1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cursor.hoverdiscover .cursor__discover {
  opacity: 1;
}
.cursor.hovermenu:after {
  background-color: #FAF7F5;
  border-color: #FAF7F5;
  border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  z-index: -1;
  box-shadow: 0 6px 24px rgba(64, 13, 28, 0.08);
}
.cursor.hovermenu .cursor__menu {
  opacity: 1;
}
.cursor__cta {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #231f20;
  width: 110px;
  position: absolute;
  left: 150%;
  top: 50%;
  opacity: 0;
  -webkit-transition: all .4s cubic-bezier(.76,0,.24,1);
  -moz-transition: all .4s cubic-bezier(.76,0,.24,1);
  -ms-transition: all .4s cubic-bezier(.76,0,.24,1);
  -o-transition: all .4s cubic-bezier(.76,0,.24,1);
  transition: all .4s cubic-bezier(.76,0,.24,1);
  -webkit-transform: translate3d(20px, -50%, 0);
  -moz-transform: translate3d(20px, -50%, 0);
  -ms-transform: translate3d(20px, -50%, 0);
  -o-transform: translate3d(20px, -50%, 0);
  transform: translate3d(20px, -50%, 0);
}

/* ==========================================================================
   LIKHA AESTHETIC FULL-SCREEN MENU (1:1 with https://likhaaesthetic.ie)
   curtain scaleX wipe + 3-col staggered kinetic reveal + vertical socials
/* ==========================================================================
   LIKHA AESTHETIC FULL-SCREEN MENU (1:1 with https://likhaaesthetic.ie)
   Curtain scaleX wipe + Balanced 2-Stage Grid + Zero Collision
   ========================================================================== */
.menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Background curtain wipe (1:1 with Likha) */
.menu:before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF7F5;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
  will-change: transform;
  z-index: 1;
}

.menu.show:before {
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Fixed Header Bar inside Menu */
.menu__header-bar {
  position: fixed;
  top: clamp(24px, 3.2vw, 38px);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 56px);
  z-index: 10;
  pointer-events: auto;
  box-sizing: border-box;
}

.menu__btn-book {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #231F20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(35, 31, 32, 0.16);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.menu__btn-book:hover {
  transform: scale(1.05);
  background-color: #161415;
}

.menu__btn-close {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.menu__btn-close:hover {
  transform: rotate(90deg) scale(1.1);
  opacity: 0.75;
}

/* Main Centered Stage */
.menu__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(80px, 9vh, 110px) clamp(24px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: clamp(40px, 6vw, 100px);
}

/* Left Column: Clinic Emblem Seal */
.menu__logo-col {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__seal-wrap {
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__seal__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(51, 83, 147, 0.1));
}

.menu__seal__img--swan {
  width: 180px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 109 / 98;
}

/* Right Column: Navigation & Contact */
.menu__content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Primary Editorial Links */
.menu__main-nav {
  margin-bottom: clamp(28px, 4vh, 44px);
}

.menu__links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu__link-item {
  margin-bottom: clamp(6px, 1.1vh, 12px);
  display: flex;
  align-items: center;
}

.menu__link-item--with-circle {
  display: inline-flex;
  align-items: center;
}

.menu__link {
  font-family: 'Cormorant Garamond', 'Gilda Display', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #EA8F85;
  text-decoration: none;
  display: inline-block;
  transition: color 0.4s cubic-bezier(0.15, 0.9, 0.34, 0.95), transform 0.4s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  will-change: transform, color;
}

.menu__link:hover {
  color: #400D1C;
  transform: translateX(10px);
}

/* Bottom Sub-grid: 2 Columns Side-by-Side (1:1 with Likha) */
.menu__sub-grid {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 90px);
  margin-top: clamp(28px, 4vh, 48px);
}

.menu__sub-col {
  display: flex;
  flex-direction: column;
}

.menu__kicker {
  font-family: 'Jost', -apple-system, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B2B6B7;
  margin-bottom: 12px;
  display: block;
}

.menu__sub-link {
  font-family: 'Cormorant Garamond', 'Gilda Display', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.22;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu__sub-link--doctor {
  color: #EA8F85;
}

.menu__sub-link--doctor:hover {
  color: #400D1C;
  transform: translateX(6px);
}

.menu__sub-link--action {
  color: #7A7270;
}

.menu__sub-link--action:hover {
  color: #231F20;
  transform: translateX(6px);
}

.menu__sub-link--phone {
  font-family: 'Jost', -apple-system, sans-serif;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 500;
  color: #9B8F8D;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.menu__sub-link--phone:hover {
  color: #EA8F85;
  transform: translateX(4px);
}

/* Far Right: Vertical Social Icons Rail */
.menu__social-rail {
  position: fixed;
  top: 50%;
  right: clamp(20px, 3.5vw, 50px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 10;
  pointer-events: auto;
}

.menu__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__social-link:hover {
  transform: translateX(-4px) scale(1.15);
}

.menu__social-link svg path {
  fill: #EA8F85;
  transition: fill 0.3s ease;
}

.menu__social-link:hover svg path {
  fill: #400D1C;
}

/* Staggered Content Animation */
.menu .menu__logo-col,
.menu .menu__content-col,
.menu .menu__social-rail {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(6rem, 0, 0);
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu.show .menu__logo-col,
.menu.show .menu__content-col,
.menu.show .menu__social-rail {
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}

.menu.show .menu__logo-col {
  transition: all 0.75s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}

.menu.show .menu__content-col {
  transition: all 0.75s cubic-bezier(0.76, 0, 0.24, 1) 0.28s;
}

.menu.show .menu__social-rail {
  transition: all 0.75s cubic-bezier(0.76, 0, 0.24, 1) 0.36s;
}

.menu.no-transition,
.menu.no-transition *,
.menu.no-transition:before,
.menu.no-transition:after {
  transition: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Mobile Responsiveness (<= 991px) */
@media screen and (max-width: 991px) {
  .menu__stage {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 90px;
    padding-bottom: 50px;
    min-height: auto;
    gap: 30px;
  }
  
  .menu__logo-col {
    flex: 0 0 auto;
    order: 2;
  }
  
  .menu__seal-wrap {
    max-width: 180px;
  }
  
  .menu__content-col {
    order: 1;
    width: 100%;
  }
  
  .menu__sub-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .menu__social-rail {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    order: 3;
    padding-top: 20px;
  }
}

/* Header & Quincunx Morph Synchronized with Menu */
body.menu-open {
  overflow: hidden !important;
}
body.menu-open .hero-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1001 !important;
  pointer-events: none !important;
}
body.menu-open .hero-header > * {
  pointer-events: auto !important;
}
.header-center.hide,
#brand-logo.hide,
body.menu-open .header-left {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  -webkit-transition: all .4s cubic-bezier(.15,.9,.34,.95);
  transition: all .4s cubic-bezier(.15,.9,.34,.95);
}
.header-center,
#brand-logo {
  -webkit-transition: all .4s cubic-bezier(.15,.9,.34,.95) .4s;
  transition: all .4s cubic-bezier(.15,.9,.34,.95) .4s;
}

/* Quincunx & Close Icon Morph (1:1 with Likha) */
.header__menubutton,
.btn-grid-menu {
  height: 4.5rem;
  width: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  appearance: none;
  outline: none;
  background: transparent;
  position: relative;
  cursor: pointer;
  z-index: 1002;
}
.header__menubutton svg,
.btn-grid-menu svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transition: all .35s cubic-bezier(.15,.9,.34,.95);
  transition: all .35s cubic-bezier(.15,.9,.34,.95);
}
.header__menubutton svg.menu-open,
.btn-grid-menu svg.menu-open {
  opacity: 1;
}
.header__menubutton.show-close svg.menu-open,
.btn-grid-menu.show-close svg.menu-open,
.btn-grid-menu.is-open svg.menu-open {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(-50%,-50%,0) scale(0.6) rotate(-90deg) !important;
}
.header__menubutton svg.menu-close,
.btn-grid-menu svg.menu-close {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%,-50%,0) scale(0.6) rotate(90deg);
}
.header__menubutton.show-close svg.menu-close,
.btn-grid-menu.show-close svg.menu-close,
.btn-grid-menu.is-open svg.menu-close {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate3d(-50%,-50%,0) scale(1) rotate(0deg) !important;
}


/* ==========================================================================
   PROCEDURE DETAIL VIEW (WIDOK SZCZEGÓŁOWY PROCEDURY)
   Luxury Editorial Aesthetic • 65% Medical / 35% Sticky Doctor Sidebar
   ========================================================================== */

/* ==========================================================================
   PROCEDURE DETAIL VIEW (WIDOK SZCZEGÓŁOWY PROCEDURY)
   Awwwards & Vogue Clinic Standard • Luminous Canvas • Crystal Clarity
   ========================================================================== */

.procedure-detail-view {
  display: none;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  background: #ffffff;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 54px);
  margin-top: 32px;
  box-shadow: 0 24px 70px rgba(35, 31, 32, 0.06);
  position: relative;
  z-index: 10;
  will-change: opacity, transform, filter;
}

.procedure-detail-view.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: luxuryDetailReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.procedure-detail-view.is-transitioning-out {
  opacity: 0 !important;
  transform: translateY(18px) scale(0.985) !important;
  filter: blur(3px) !important;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
}

@keyframes luxuryDetailReveal {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.982);
    filter: blur(6px);
    box-shadow: 0 8px 30px rgba(35, 31, 32, 0.03);
  }
  50% {
    filter: blur(0px);
    box-shadow: 0 30px 80px rgba(64, 13, 28, 0.09), 0 8px 24px rgba(35, 31, 32, 0.04);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
    box-shadow: 0 24px 70px rgba(35, 31, 32, 0.06);
  }
}

/* Cascading inner elements animation when detail view opens */
.procedure-detail-view.is-open .detail-top-nav {
  animation: luxuryCascadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.procedure-detail-view.is-open .detail-header-block {
  animation: luxuryCascadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both;
}

.procedure-detail-view.is-open .detail-quick-facts-grid .quick-fact-card:nth-child(1) {
  animation: luxuryCascadeFact 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.20s both;
}
.procedure-detail-view.is-open .detail-quick-facts-grid .quick-fact-card:nth-child(2) {
  animation: luxuryCascadeFact 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.procedure-detail-view.is-open .detail-quick-facts-grid .quick-fact-card:nth-child(3) {
  animation: luxuryCascadeFact 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}
.procedure-detail-view.is-open .detail-quick-facts-grid .quick-fact-card:nth-child(4) {
  animation: luxuryCascadeFact 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.procedure-detail-view.is-open .detail-section-card {
  animation: luxuryCascadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.procedure-detail-view.is-open .doctor-sticky-widget {
  animation: luxuryCascadeSidebar 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

@keyframes luxuryCascadeIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes luxuryCascadeFact {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes luxuryCascadeSidebar {
  0% {
    opacity: 0;
    transform: translateY(22px) translateX(12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .procedure-detail-view.is-open,
  .procedure-detail-view.is-open .detail-top-nav,
  .procedure-detail-view.is-open .detail-header-block,
  .procedure-detail-view.is-open .detail-quick-facts-grid .quick-fact-card,
  .procedure-detail-view.is-open .detail-section-card,
  .procedure-detail-view.is-open .doctor-sticky-widget {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.detail-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Detail Top Nav Bar */
.detail-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FAF7F2;
  color: #231f20;
  border: 1px solid rgba(35, 31, 32, 0.12);
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-detail-back:hover {
  background: #231f20;
  color: #ffffff;
  border-color: #231f20;
  transform: translateX(-4px);
  box-shadow: 0 6px 18px rgba(35, 31, 32, 0.18);
}

.btn-detail-back .back-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn-detail-back:hover .back-arrow {
  transform: translateX(-3px);
}

.detail-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-breadcrumbs .crumb-gender {
  background: rgba(234, 160, 153, 0.2);
  color: #400D1C;
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(234, 160, 153, 0.4);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.detail-breadcrumbs .crumb-sep {
  color: rgba(35, 31, 32, 0.25);
  font-weight: 400;
}

.detail-breadcrumbs .crumb-category {
  color: #231f20;
}

/* 2-Column Main Layout: 65% Medical Content / 35% Sticky Doctor Sidebar */
.detail-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: stretch;
}

@media (max-width: 1060px) {
  .detail-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left Column: 65% Main Content */
.detail-main-content {
  min-width: 0;
}

.detail-header-block {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
  padding-bottom: 26px;
}

.detail-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #400D1C;
  background: rgba(234, 160, 153, 0.18);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
  border: 1px solid rgba(234, 160, 153, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.detail-category-badge:hover {
  transform: translateY(-2px);
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
  box-shadow: 0 4px 14px rgba(64, 13, 28, 0.18);
}

.detail-procedure-title {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  color: #231f20;
  line-height: 1.25;
  margin: 0 0 14px 0;
  letter-spacing: 0.02em;
}

.detail-procedure-subtitle {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  color: #7A6C6E;
  margin: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}

.detail-scope-tag {
  display: inline-block;
  background: rgba(64, 13, 28, 0.05);
  color: #400D1C;
  border: 1px solid rgba(64, 13, 28, 0.12);
  padding: 4px 12px;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.detail-sub-sep {
  opacity: 0.4;
  margin: 0 2px;
}

/* Quick Facts: Prominent Luxury Clinical Pill Matrix (2x2) */
.detail-quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 32px 0 44px 0;
}

.quick-fact-card {
  background: #ffffff;
  border: 1.5px solid rgba(64, 13, 28, 0.14);
  border-radius: 9999px;
  padding: 14px 22px 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(64, 13, 28, 0.04);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Light beam / Shimmer sheen effect across pill */
.quick-fact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(234, 160, 153, 0.22), rgba(255, 255, 255, 0.85), transparent);
  transform: rotate(25deg);
  transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.quick-fact-card:hover::before {
  left: 170%;
}

.quick-fact-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #FDF9F7 60%, #FAF1ED 100%);
  border-color: #400D1C;
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 14px 34px rgba(64, 13, 28, 0.12), 0 2px 8px rgba(234, 160, 152, 0.22);
}

.quick-fact-card:active {
  transform: translateY(-1px) scale(0.995);
  transition-duration: 0.1s;
}

.quick-fact-card .fact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #400D1C;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(64, 13, 28, 0.22);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.35s ease;
  position: relative;
  z-index: 3;
}

.quick-fact-card:hover .fact-icon-wrap {
  background: #EAA098;
  color: #400D1C;
  transform: scale(1.14) rotate(-6deg);
  box-shadow: 0 0 0 5px rgba(234, 160, 152, 0.32), 0 8px 20px rgba(64, 13, 28, 0.22);
}

.quick-fact-card .fact-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center center;
}

/* Specific Micro-Animations per Fact Icon */
/* 1. Znieczulenie (Syringe): Micro-injection nudge */
@keyframes microSyringeNudge {
  0%, 100% { transform: rotate(0deg) scale(1.12); }
  50% { transform: rotate(-14deg) translate(-2px, 2px) scale(1.18); }
}
.quick-fact-card:nth-child(1):hover .fact-icon-wrap svg {
  animation: microSyringeNudge 1.3s ease-in-out infinite;
}

/* 2. Czas trwania (Clock): Micro-ticking tilt */
@keyframes microClockTick {
  0% { transform: rotate(0deg) scale(1.12); }
  35% { transform: rotate(28deg) scale(1.16); }
  65% { transform: rotate(16deg) scale(1.13); }
  100% { transform: rotate(34deg) scale(1.18); }
}
.quick-fact-card:nth-child(2):hover .fact-icon-wrap svg {
  animation: microClockTick 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite alternate;
}

/* 3. Pobyt w klinice (Bed): Micro-float */
@keyframes microBedFloat {
  0%, 100% { transform: translateY(0) scale(1.12); }
  50% { transform: translateY(-3.5px) scale(1.16); }
}
.quick-fact-card:nth-child(3):hover .fact-icon-wrap svg {
  animation: microBedFloat 1.25s ease-in-out infinite;
}

/* 4. Rekonwalescencja (Pulse): Heartbeat double pulse */
@keyframes microEcgPulse {
  0%, 100% { transform: scale(1.1); }
  22% { transform: scale(1.28); }
  38% { transform: scale(1.12); }
  56% { transform: scale(1.32); }
  75% { transform: scale(1.1); }
}
.quick-fact-card:nth-child(4):hover .fact-icon-wrap svg {
  animation: microEcgPulse 1.2s ease-in-out infinite;
}

.quick-fact-card .fact-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
  position: relative;
  z-index: 3;
}

.quick-fact-card .fact-label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C7B7E;
  margin: 0;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease,
              letter-spacing 0.3s ease;
}

.quick-fact-card:hover .fact-label {
  color: #400D1C;
  letter-spacing: 0.15em;
  transform: translateX(4px);
}

.quick-fact-card .fact-label::after {
  display: none;
}

.quick-fact-card .fact-value {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px;
  font-weight: 700;
  color: #231F20;
  line-height: 1.35;
  display: block;
  letter-spacing: 0.01em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease;
}

.quick-fact-card:hover .fact-value {
  color: #400D1C;
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .detail-quick-facts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .quick-fact-card {
    padding: 12px 18px 12px 14px;
  }
}

/* Detail Section Cards: Open, High-Contrast Editorial Sections */
.detail-section-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 0;
  padding: 0 0 34px 0;
  margin-bottom: 34px;
  box-shadow: none;
}

.section-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: none;
}

.section-num {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  color: #400D1C;
  background: rgba(234, 160, 153, 0.2);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(234, 160, 153, 0.4);
  line-height: 1;
  letter-spacing: 0.05em;
}

.section-card-title {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 400;
  color: #231f20;
  margin: 0;
  letter-spacing: 0.02em;
}

.detail-technique-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15.5px;
  line-height: 1.8;
  color: #2E2829;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Wskazania & Rekonwalescencja: 2-Column Luxury Bullet Grid */
.detail-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
}

@media (max-width: 768px) {
  .detail-bullets-list {
    grid-template-columns: 1fr;
  }
}

.detail-bullets-list li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px;
  line-height: 1.5;
  color: #231f20;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px 14px 28px;
  background: #FAF7F2;
  border-radius: 9999px;
  border: 1px solid rgba(35, 31, 32, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.3s ease;
  letter-spacing: 0.01em;
  cursor: default;
}

.detail-bullets-list li:hover {
  background: #ffffff;
  border-color: #400D1C;
  box-shadow: 0 6px 20px rgba(64, 13, 28, 0.08);
  transform: translateX(6px) scale(1.01);
}

.detail-bullets-list li .bullet-marker {
  color: #eaa099;
  font-size: 12px;
  margin-top: 0;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.25s ease;
}

.detail-bullets-list li:hover .bullet-marker {
  color: #400D1C;
  transform: scale(1.4) rotate(45deg);
}

/* Section 4: Safety & Doctor Pernak Note */
.standard-safety-card {
  background: #FAF6F3;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 0;
}

.detail-doctor-quote {
  font-family: 'Lora', Georgia, serif !important;
  font-style: normal;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.75;
  color: #231f20;
  background: #ffffff;
  border-left: 3.5px solid #400D1C;
  padding: 24px 30px;
  border-radius: 0 18px 18px 0;
  margin: 0 0 26px 0;
  box-shadow: 0 4px 18px rgba(64, 13, 28, 0.04);
  letter-spacing: 0.01em;
}

.safety-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.safety-pillar {
  background: #ffffff;
  padding: 16px 28px 16px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(64, 13, 28, 0.12);
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(64, 13, 28, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  cursor: default;
}

.safety-pillar:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(64, 13, 28, 0.1);
  border-color: #400D1C;
}

.safety-pillar .pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(234, 160, 153, 0.2);
  color: #400D1C;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              color 0.3s ease;
}

.safety-pillar:hover .pillar-icon {
  transform: rotate(90deg) scale(1.18);
  background: #400D1C;
  color: #F7ECDD;
}

.safety-pillar .pillar-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.safety-pillar .pillar-info strong {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #400D1C;
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.safety-pillar .pillar-info p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px;
  line-height: 1.55;
  color: #4A4042;
  margin: 0;
}

/* Right Column: Sticky Doctor Qualification Sidebar */
.detail-sidebar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Doctor Qualification Sticky Widget (Luxury Editorial Standard)
   ========================================================================== */

.doctor-sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 84px;
  z-index: 20;
  background: #FFFFFF;
  border: 1px solid rgba(234, 143, 133, 0.35);
  border-radius: 28px;
  padding: 32px 26px;
  box-shadow: 0 16px 45px rgba(35, 31, 32, 0.05);
  max-height: calc(100vh - 104px);
  overflow-y: auto;
}

.doctor-sticky-widget::-webkit-scrollbar {
  width: 4px;
}

.doctor-sticky-widget::-webkit-scrollbar-thumb {
  background: rgba(234, 143, 133, 0.3);
  border-radius: 4px;
}

.widget-header {
  margin-bottom: 20px;
}

.widget-kicker,
.widget-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EA8F85;
  background: rgba(234, 143, 133, 0.1);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
  border: 1px solid rgba(234, 143, 133, 0.3);
}

.widget-heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 26px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

/* Doctor Profile Micro-Card */
.widget-doctor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #FAF8F6;
  border-radius: 20px;
  border: 1px solid rgba(234, 143, 133, 0.25);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.widget-doctor-card:hover {
  border-color: #EA8F85;
  transform: translateY(-1px);
}

.widget-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #EA8F85;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 143, 133, 0.2);
}

.widget-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.widget-doctor-name {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.widget-doctor-spec {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.widget-experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #EA8F85;
}

/* Editorial Medical Quote */
.widget-reassurance-quote {
  margin: 0 0 22px 0;
}

.widget-reassurance-text {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.55;
  color: #2D2627;
  margin: 0;
  padding: 10px 14px 10px 16px;
  border-left: 2px solid #EA8F85;
  border-bottom: none;
  background: rgba(234, 143, 133, 0.04);
  border-radius: 0 12px 12px 0;
}

.widget-reassurance-text strong {
  font-weight: 600;
  color: #1A1A1A;
  font-style: normal;
}

/* Actions */
.widget-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.widget-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.widget-call-btn:hover {
  background: #EA8F85;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 143, 133, 0.35);
  color: #FFFFFF;
}

.widget-call-btn .btn-phone-icon {
  color: #EA8F85;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.widget-call-btn:hover .btn-phone-icon {
  color: #FFFFFF;
}

.call-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.call-btn-action {
  font-family: 'Jost', sans-serif !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.call-btn-number {
  font-family: 'Jost', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Secondary online booking CTA */
.widget-appointment-btn,
.widget-reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1.5px solid rgba(26, 26, 26, 0.15);
  padding: 12px 20px;
  border-radius: 9999px;
  font-family: 'Jost', sans-serif !important;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.widget-appointment-btn:hover,
.widget-reserve-btn:hover {
  border-color: #EA8F85;
  color: #EA8F85;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(234, 143, 133, 0.15);
}

.widget-appointment-btn .btn-arrow,
.widget-reserve-btn .reserve-arrow {
  color: #EA8F85;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.widget-appointment-btn:hover .btn-arrow,
.widget-reserve-btn:hover .reserve-arrow {
  transform: translateX(4px);
}

/* Safety guarantee notice */
.widget-safety-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(234, 143, 133, 0.08);
  border: 1px solid rgba(234, 143, 133, 0.22);
  border-radius: 12px;
  margin-top: 4px;
}

.widget-safety-notice .safety-icon {
  color: #EA8F85;
  font-size: 13px;
  flex-shrink: 0;
}

.widget-safety-notice .safety-text {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  color: #554A4B;
  line-height: 1.45;
}

.widget-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.07);
  padding-bottom: 16px;
}

.widget-trust-list li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px;
  color: #4a3e40;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-trust-list .trust-check {
  color: #eaa099;
  font-weight: 800;
  font-size: 13px;
}

.widget-clinic-info {
  display: grid;
  gap: 10px;
}

.clinic-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.clinic-icon {
  font-size: 13px;
  margin-top: 2px;
  opacity: 0.7;
}

.clinic-text strong {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  color: #231f20;
  display: block;
}

.clinic-text p, .clinic-text a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12.5px;
  color: #6b5c5e;
  margin: 0;
  text-decoration: none;
}

/* Mobile Sticky Call Bar */
.procedure-mobile-bar {
  display: none;
}

@media (max-width: 991px) {
  .procedure-mobile-bar.is-active {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(64, 13, 28, 0.12);
    padding: 12px 18px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    animation: mobileBarSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes mobileBarSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .mobile-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .mobile-bar-info {
    min-width: 0;
    flex: 1;
  }

  .mobile-bar-eyebrow {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8c7f7e;
    display: block;
  }

  .mobile-bar-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    color: #231f20;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-bar-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #400D1C;
    color: #F7ECDD;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(64, 13, 28, 0.25);
  }
}

/* RWD Layout Adjustments */
@media (max-width: 1024px) {
  .detail-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .doctor-sticky-widget {
    position: static;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .detail-quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .procedure-detail-view {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .detail-top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-detail-back {
    width: 100%;
    justify-content: center;
  }

  .detail-quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .safety-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION: CLINICAL RESULTS / EFEKTY ZABIEGÓW PRZED I PO (#efekty-zabiegow)
   High-End Luxury Editorial: Cormorant Garamond, Jost, koralowe akcenty,
   posągowa rama 3:4 z organicznym pierścieniem i subtelnym szklanym suwakiem
   ========================================================================== */

.section-before-after {
  width: 100% !important;
  background: #FAF8F5 !important;
  position: relative !important;
  z-index: 7 !important;
  border-top-left-radius: clamp(38px, 4.5vw, 68px) !important;
  border-top-right-radius: clamp(38px, 4.5vw, 68px) !important;
  margin-top: clamp(-36px, -4vw, -56px) !important;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07), 0 -4px 12px rgba(0, 0, 0, 0.03) !important;
  padding: clamp(80px, 8.5vw, 130px) 0 clamp(90px, 9.5vw, 150px) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.ba-editorial-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

/* --- LEWA KOLUMNA: CZYSTA NARRACJA EDITORIAL --- */
.ba-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.ba-luxury-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EA8F85;
  margin-bottom: 18px;
}

.ba-luxury-kicker .ba-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EA8F85;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(234, 143, 133, 0.4);
}

.ba-luxury-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 22px 0;
}

.ba-luxury-title em {
  font-style: italic;
  color: #400D1C;
  font-weight: 400;
}

.ba-luxury-lead {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.74;
  color: #555052;
  margin: 0 0 32px 0;
  max-width: 560px;
}

/* Studium przypadku — czysta, lekka struktura bez białej karty */
.ba-spotlight {
  width: 100%;
  margin-bottom: 32px;
  padding-left: 0;
}

.ba-spotlight-header {
  margin-bottom: 12px;
}

.ba-spotlight-tag {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EA8F85;
  display: block;
  margin-bottom: 6px;
}

.ba-spotlight-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.25;
}

.ba-spotlight-desc {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.72;
  color: #5A5255;
  margin: 0 0 24px 0;
  max-width: 560px;
}

/* Wyróżniki estetyczne */
.ba-aesthetic-points {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-point-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 14px;
  line-height: 1.6;
  color: #4A4446;
}

.ba-point-bullet {
  color: #EA8F85;
  font-weight: 600;
  flex-shrink: 0;
}

.ba-point-text strong {
  color: #1A1A1A;
  font-weight: 600;
}

.ba-luxury-action {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

/* --- PRAWA KOLUMNA: POSĄGOWA RAMA 3:4 Z SUWAKIEM --- */
/* --- PRAWA KOLUMNA: POSĄGOWA RAMA 3:4 Z SUWAKIEM I GŁĘBIĄ 3D --- */
.ba-visual-stage {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1400px;
  perspective-origin: 40% 50%;
}

.ba-slider-viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 490px;
  aspect-ratio: 3 / 4;
  border-radius: 36px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateY(-7deg) rotateX(1.8deg);
  box-shadow: -22px 30px 65px rgba(64, 13, 28, 0.13), -4px 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(234, 143, 133, 0.3);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: #231F20;
  transition: box-shadow 0.45s ease, border-color 0.3s ease;
  will-change: transform;
}

.ba-slider-viewport:hover {
  border-color: rgba(234, 143, 133, 0.55);
  box-shadow: -26px 34px 75px rgba(64, 13, 28, 0.16), -4px 8px 22px rgba(0, 0, 0, 0.06);
}

.ba-slider-viewport:focus-visible {
  outline: 2px solid #EA8F85;
  outline-offset: 4px;
}

/* Warstwy zdjęć */
.ba-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ba-layer-base {
  z-index: 1;
}

.ba-layer-clipped {
  z-index: 2;
  will-change: clip-path;
  clip-path: polygon(0 0, var(--ba-pos, 50%) 0, var(--ba-pos, 50%) 100%, 0 100%);
}

.ba-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Szklane etykiety PRZED i PO z przestrzennym uniesieniem 3D */
.ba-tag-pill {
  position: absolute;
  top: 18px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  padding: 6px 14px;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  transform: translateZ(14px);
  transition: opacity 0.25s ease, transform 0.2s ease, background-color 0.2s ease;
}

.ba-tag-pill:hover {
  background: rgba(255, 255, 255, 0.96);
  transform: translateZ(16px) translateY(-1px);
}

.ba-tag-pill:active {
  transform: translateZ(14px) translateY(0) scale(0.97);
}

.ba-tag-pill span {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.ba-tag-left {
  left: 18px;
}

.ba-tag-right {
  right: 18px;
}

/* Pionowa linia podziału i luksusowy uchwyt kapsułkowy */
.ba-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(34px, var(--ba-pos, 50%), calc(100% - 34px));
  width: 1.5px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 6;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  will-change: left;
}

/* Nowy kształt uchwytu: horyzontalna luksusowa kapsułka editorial na brodzie (martwe pole) z uniesieniem 3D */
.ba-glass-handle {
  position: absolute;
  top: 83%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(20px);
  width: 58px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(234, 143, 133, 0.65);
  box-shadow: 0 10px 30px rgba(64, 13, 28, 0.18), 0 0 18px rgba(234, 143, 133, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #400D1C;
  cursor: grab;
  touch-action: none;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: visible;
}

.ba-glass-handle:hover {
  transform: translate(-50%, -50%) translateZ(24px) scale(1.06);
  border-color: rgba(234, 143, 133, 0.95);
  box-shadow: 0 12px 34px rgba(64, 13, 28, 0.22), 0 0 22px rgba(234, 143, 133, 0.5);
}

.ba-glass-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) translateZ(24px) scale(1.1);
  box-shadow: 0 14px 38px rgba(64, 13, 28, 0.26), 0 0 26px rgba(234, 143, 133, 0.65);
}

/* Pulsująca aura zewnętrzna — uchwyt żyje i oddycha */
.ba-handle-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 9999px;
  border: 1.5px solid rgba(234, 143, 133, 0.55);
  pointer-events: none;
  animation: baAuraPulse 2.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes baAuraPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
    box-shadow: 0 0 0 0 rgba(234, 143, 133, 0.5);
  }
  65% {
    transform: scale(1.22);
    opacity: 0;
    box-shadow: 0 0 20px 8px rgba(234, 143, 133, 0);
  }
  100% {
    transform: scale(0.96);
    opacity: 0;
  }
}

/* Połysk światła przesuwający się po szkle */
.ba-handle-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 9999px;
  overflow: hidden;
  pointer-events: none;
}

.ba-handle-sheen::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 70%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
  transform: rotate(20deg);
  animation: baSheenSweep 4.5s ease-in-out infinite;
}

@keyframes baSheenSweep {
  0%, 60% {
    left: -120%;
  }
  85%, 100% {
    left: 200%;
  }
}

/* Wewnętrzna zawartość z mikro-animacją strzałek */
.ba-handle-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 8px;
  gap: 6px;
}

.ba-handle-core-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #EA8F85;
  box-shadow: 0 0 8px rgba(234, 143, 133, 0.9);
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ba-arrow {
  color: #400D1C;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ba-arrow-left {
  animation: baArrowNudgeLeft 2.4s ease-in-out infinite;
}

.ba-arrow-right {
  animation: baArrowNudgeRight 2.4s ease-in-out infinite;
}

@keyframes baArrowNudgeLeft {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(-2.5px); }
  65% { transform: translateX(0); }
}

@keyframes baArrowNudgeRight {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(2.5px); }
  65% { transform: translateX(0); }
}

.ba-glass-handle:hover .ba-arrow-left {
  transform: translateX(-3px);
  color: #EA8F85;
}

.ba-glass-handle:hover .ba-arrow-right {
  transform: translateX(3px);
  color: #EA8F85;
}

.ba-glass-handle:hover .ba-handle-core-dot {
  transform: scale(1.3);
  background: #400D1C;
}

.ba-interaction-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #8C8285;
  text-align: center;
}

.ba-hint-arrows {
  color: #EA8F85;
  font-weight: 600;
  letter-spacing: 0.2em;
}

@media (max-width: 992px) {
  .ba-editorial-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ba-content-col {
    max-width: 100%;
  }
  .ba-visual-stage {
    perspective: none;
  }
  .ba-slider-viewport {
    max-width: 440px;
    transform: none;
    box-shadow: 0 20px 50px rgba(64, 13, 28, 0.1), 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  .ba-tag-pill {
    transform: none;
  }
  .ba-tag-pill:hover {
    transform: translateY(-1px);
  }
  .ba-tag-pill:active {
    transform: translateY(0) scale(0.97);
  }
  .ba-glass-handle {
    transform: translate(-50%, -50%);
  }
  .ba-glass-handle:hover {
    transform: translate(-50%, -50%) scale(1.06);
  }
  .ba-glass-handle:active {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 575px) {
  .section-before-after {
    padding: 60px 0 80px;
  }
  .ba-luxury-title {
    font-size: 32px;
  }
  .ba-slider-viewport {
    border-radius: 24px;
    max-width: 100%;
  }
}


/* ==========================================================================
   SECTION: PATIENT JOURNEY / ŚCIEŻKA PACJENTA (#proces)
   Luksusowa architektura editorial Likha: Cormorant Garamond, Jost,
   szlachetne karty, arystokratyczne numery etapów i linki .doctor-likha-link
   ========================================================================== */

.section-process {
  width: 100% !important;
  background: #FFFFFF !important;
  position: relative !important;
  z-index: 8 !important;
  padding: clamp(80px, 8vw, 130px) 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border-top-left-radius: clamp(38px, 4.5vw, 68px) !important;
  border-top-right-radius: clamp(38px, 4.5vw, 68px) !important;
  margin-top: clamp(-36px, -4vw, -56px) !important;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07), 0 -4px 12px rgba(0, 0, 0, 0.03) !important;
}

.process-editorial-container {
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 clamp(20px, 4vw, 48px) !important;
  position: relative !important;
  z-index: 2 !important;
  box-sizing: border-box !important;
}

/* Header */
.process-editorial-header {
  text-align: center !important;
  margin-bottom: clamp(40px, 5vw, 64px) !important;
}

.process-editorial-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #EA8F85 !important;
  margin-bottom: 16px !important;
}

.process-kicker-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #EA8F85 !important;
  box-shadow: 0 0 8px rgba(234, 143, 133, 0.4) !important;
}

.process-editorial-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(38px, 4.2vw, 56px) !important;
  font-weight: 400 !important;
  color: #1A1A1A !important;
  line-height: 1.15 !important;
  letter-spacing: -0.015em !important;
  margin: 0 0 16px 0 !important;
  text-transform: none !important;
}

.process-editorial-title em {
  font-style: italic !important;
  color: #400D1C !important;
  font-weight: 400 !important;
}

.process-editorial-lead {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: clamp(15px, 1.2vw, 17px) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  color: #555052 !important;
  margin: 0 auto !important;
  max-width: 660px !important;
}

/* 3 Cards Grid */
.process-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(20px, 2.5vw, 36px) !important;
  align-items: stretch !important;
}

.process-luxury-card {
  background: #FAF8F5 !important;
  border-radius: 26px !important;
  padding: 16px 16px 26px !important;
  border: 1px solid rgba(234, 143, 133, 0.22) !important;
  box-shadow: 0 16px 40px rgba(64, 13, 28, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.process-luxury-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(234, 143, 133, 0.5) !important;
  box-shadow: 0 24px 56px rgba(64, 13, 28, 0.09), 0 0 20px rgba(234, 143, 133, 0.15) !important;
}

.process-card-visual {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 11 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #1D181A !important;
}

.process-card-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.process-luxury-card:hover .process-card-photo {
  transform: scale(1.04) !important;
}

.process-card-badge {
  position: absolute !important;
  bottom: 12px !important;
  left: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 5px 13px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  z-index: 2 !important;
}

.process-stage-num {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #400D1C !important;
  line-height: 1 !important;
}

.process-stage-sep {
  color: #EA8F85 !important;
  font-size: 9px !important;
}

.process-stage-name {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #1A1A1A !important;
}

.process-card-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 18px 8px 0 !important;
}

.process-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(22px, 1.8vw, 26px) !important;
  font-weight: 500 !important;
  color: #1A1A1A !important;
  line-height: 1.25 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.process-card-text {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  color: #555052 !important;
  margin: 0 0 24px 0 !important;
  flex: 1 !important;
}

.process-card-action {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 992px) {
  .process-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .section-process {
    padding: 60px 0 80px !important;
  }
  .process-editorial-kicker {
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    line-height: 1.5 !important;
  }
  .process-kicker-dot {
    display: none !important;
  }
  .process-editorial-title {
    font-size: 32px !important;
  }
  .ba-luxury-kicker .ba-kicker-dot {
    display: none !important;
  }
  .ba-luxury-kicker {
    font-size: 10.5px !important;
    letter-spacing: 0.15em !important;
  }
}



/* ==========================================================================
   DEDICATED PROCEDURE SUBPAGE (zabieg.html) STYLES
   ========================================================================== */
.subpage-body {
  background: #FDFBF9;
  margin: 0;
  min-height: 100vh;
  color: #231f20;
}

.subpage-header {
  background: rgba(253, 251, 249, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(64, 13, 28, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.subpage-header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.btn-subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #400D1C;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1.5px solid rgba(64, 13, 28, 0.16);
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-subpage-back:hover {
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
  transform: translateX(-3px);
  box-shadow: 0 6px 18px rgba(64, 13, 28, 0.15);
}

.subpage-header .txt-short {
  display: none;
}

@media (max-width: 540px) {
  .subpage-header .txt-long {
    display: none;
  }
  .subpage-header .txt-short {
    display: inline;
  }
}

.subpage-nav-center .brand-logo {
  text-decoration: none;
}

.subpage-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-subpage-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  color: #400D1C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-subpage-phone:hover {
  color: #EAA098;
}

.btn-subpage-book {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F7ECDD;
  background: #400D1C;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-subpage-book:hover {
  background: #2A0510;
  transform: translateY(-1.5px);
  box-shadow: 0 8px 22px rgba(64, 13, 28, 0.2);
}

.subpage-main-wrap {
  padding: 36px 0 60px;
}

.subpage-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.subpage-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px 22px;
  background: #ffffff;
  border: 1px solid rgba(64, 13, 28, 0.08);
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(64, 13, 28, 0.03);
}

.subpage-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #8C7B7E;
  overflow-x: auto;
  white-space: nowrap;
}

.subpage-breadcrumbs .crumb-link {
  color: #5A4B4D;
  text-decoration: none;
  transition: color 0.2s ease;
}

.subpage-breadcrumbs .crumb-link:hover {
  color: #400D1C;
}

.subpage-breadcrumbs .crumb-current {
  color: #400D1C;
  font-weight: 700;
}

.btn-share-procedure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #400D1C;
  background: rgba(234, 160, 153, 0.18);
  border: 1.5px solid rgba(234, 160, 153, 0.45);
  padding: 8px 18px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-share-procedure:hover {
  background: #400D1C;
  color: #F7ECDD;
  border-color: #400D1C;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(64, 13, 28, 0.16);
}

.procedure-detail-view.is-subpage {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  box-shadow: 0 16px 50px rgba(35, 31, 32, 0.04);
  border: 1px solid rgba(35, 31, 32, 0.08);
  margin-top: 0;
  margin-bottom: 50px;
}

.subpage-related-section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(35, 31, 32, 0.08);
}

.related-title {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 22px;
  font-weight: 400;
  color: #231f20;
  margin-bottom: 20px;
}

.related-procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.related-proc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid rgba(64, 13, 28, 0.1);
  border-radius: 9999px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-proc-card:hover {
  border-color: #400D1C;
  background: #FAF6F3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64, 13, 28, 0.08);
}

.related-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eaa099;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.related-proc-card:hover .related-card-dot {
  background: #400D1C;
  transform: scale(1.3);
}

.related-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.related-card-name {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color: #231f20;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card-time {
  font-size: 11.5px;
  color: #8C7B7E;
}

.related-card-arrow {
  font-size: 14px;
  color: #400D1C;
  transition: transform 0.25s ease;
}

.related-proc-card:hover .related-card-arrow {
  transform: translateX(4px);
}

.subpage-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translate(-50%, 40px);
  opacity: 0;
  pointer-events: none;
  background: #400D1C;
  color: #F7ECDD;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 9999px;
  box-shadow: 0 16px 42px rgba(64, 13, 28, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.subpage-toast.is-active {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.subpage-toast .toast-icon {
  font-size: 16px;
  color: #EAA098;
  font-weight: 800;
}

.subpage-footer {
  background: #231F20;
  color: #ffffff;
  padding: 60px 0 0 0;
  margin-top: 60px;
}

.subpage-footer-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 40px;
}

.subpage-footer .footer-logo .logo-title {
  color: #ffffff !important;
}

.subpage-footer .footer-logo .logo-subtitle {
  color: #EAA098 !important;
}

.footer-desc {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  max-width: 440px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EAA098;
  margin-bottom: 18px;
}

.footer-contact-item {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13.5px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item .contact-label {
  font-weight: 700;
  color: #ffffff;
  margin-right: 6px;
}

.footer-contact-item .contact-link {
  color: #EAA098;
  text-decoration: none;
  font-weight: 700;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #EAA098;
}

.subpage-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.subpage-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(64, 13, 28, 0.1);
  padding: 12px 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-proc-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.mobile-proc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8C7B7E;
  font-weight: 700;
}

.mobile-proc-title {
  font-size: 13.5px;
  color: #231F20;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-mobile-share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(64, 13, 28, 0.16);
  background: #ffffff;
  color: #400D1C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #400D1C;
  color: #F7ECDD;
  padding: 10px 18px;
  border-radius: 9999px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .subpage-mobile-bar {
    display: block;
  }
  .subpage-footer {
    padding-bottom: 90px;
  }
  .subpage-header .txt-long {
    display: none;
  }
  .subpage-header .txt-short {
    display: inline;
  }
  body.subpage-body {
    overflow-x: clip;
  }
  .subpage-header {
    width: 100%;
    box-sizing: border-box;
  }
  .subpage-header-container {
    padding: 0 14px;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .btn-subpage-back {
    padding: 6px 12px;
    font-size: 11px;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .subpage-brand .logo-title {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
  }
  .subpage-brand .logo-subtitle {
    font-size: 0.42rem;
  }
  .subpage-brand .logo-tagline {
    display: none;
  }
  .btn-subpage-book {
    padding: 7px 13px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .subpage-nav-right .btn-subpage-phone {
    display: none;
  }
  .subpage-container {
    padding: 0 14px;
    width: 100%;
    box-sizing: border-box;
  }
  .procedure-detail-view.is-subpage {
    padding: 24px 16px;
    border-radius: 20px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  .detail-header-block {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .detail-category-badge {
    white-space: normal;
    font-size: 10px;
    line-height: 1.4;
  }
  .detail-procedure-title {
    font-size: 28px;
    line-height: 1.2;
    word-break: break-word;
  }
  .detail-quick-facts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quick-fact-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .related-procedures-grid {
    grid-template-columns: 1fr;
  }
  .subpage-action-bar {
    border-radius: 16px;
    padding: 12px 16px;
    gap: 12px;
  }
  .subpage-breadcrumbs {
    font-size: 11px;
    line-height: 1.5;
  }
  .btn-share-procedure {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
    font-size: 11px;
  }
  .subpage-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 32px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0 20px;
  }
}

/* ==========================================================================
   SECTION: SEO AUTHORITY & LOCAL HUBS (Gdańsk, Gdynia, Sopot, Trójmiasto)
   Awwwards 2026 Minimalist Luxury Editorial Design System
   Prestiżowa typografia: Cormorant Garamond • Prata • Jost • DM Sans
   Haute-Couture Pigułki Likha • Monoline SVG Icons • Zero Emotek
   ========================================================================== */
.section-seo-authority {
  width: 100% !important;
  align-self: stretch !important;
  background: #FFFFFF !important;
  position: relative !important;
  z-index: 10 !important;
  border-top-left-radius: clamp(38px, 4.5vw, 68px) !important;
  border-top-right-radius: clamp(38px, 4.5vw, 68px) !important;
  margin-top: clamp(-36px, -4vw, -56px) !important;
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.07), 0 -4px 12px rgba(0, 0, 0, 0.03) !important;
  padding: clamp(80px, 9vw, 140px) 0;
  overflow: hidden;
}

.seo-authority-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 44px);
  box-sizing: border-box;
}

/* Header */
.seo-authority-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.seo-main-h2 {
  font-family: 'Prata', serif !important;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  color: #231f20;
  line-height: 1.16;
  margin: 0 0 14px 0;
  letter-spacing: -0.015em;
  text-align: center;
}

.seo-main-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c7f7e;
  margin: 0 auto 22px auto;
  text-align: center;
}

.seo-lead-text {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: clamp(15px, 1.15vw, 16.5px);
  line-height: 1.8;
  color: #4A4A4A;
  margin: 0 auto;
  max-width: 780px;
  font-weight: 400;
}

.seo-lead-text strong {
  color: #231f20;
  font-weight: 600;
}

/* City Pills Bar (Likha Haute Horlogerie Segmented Pills) */
.seo-cities-pills-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.seo-city-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(45, 12, 21, 0.08);
  padding: 12px 26px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  box-shadow: 0 4px 16px rgba(45, 12, 21, 0.03);
  -webkit-tap-highlight-color: transparent;
}

.seo-city-pill:hover {
  border-color: rgba(234, 143, 133, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 143, 133, 0.14);
}

.seo-city-pill.is-active {
  background: #2D0C15;
  border-color: #2D0C15;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 12, 21, 0.2);
}

.city-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seo-city-pill .city-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EA8F85;
  transition: transform 0.3s ease;
}

.seo-city-pill .city-name {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.01em;
}

.seo-city-pill .city-sub {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.04em;
  margin-top: 2px;
  transition: color 0.25s ease;
}

.seo-city-pill.is-active .city-sub {
  color: rgba(255, 255, 255, 0.7);
}

.seo-city-pill.is-active .city-dot {
  transform: scale(1.3);
}

/* City Dynamic Panel */
.seo-city-panel-wrap {
  margin-bottom: clamp(48px, 6vw, 76px);
}

.seo-city-panel {
  background: #FFFFFF;
  border-radius: 28px;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid rgba(45, 12, 21, 0.07);
  box-shadow: 0 12px 40px rgba(45, 12, 21, 0.04);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.seo-city-panel[hidden] {
  display: none;
}

.city-panel-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.city-badge-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c7f7e;
  margin-bottom: 12px;
}

.city-panel-title {
  font-family: 'Prata', serif !important;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: #231f20;
  line-height: 1.25;
  margin: 0 0 16px 0;
  letter-spacing: -0.015em;
}

.city-panel-desc {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 15px;
  line-height: 1.76;
  color: #4A4A4A;
  margin: 0 0 24px 0;
}

.city-key-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-key-tag {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(45, 12, 21, 0.1);
  border-radius: 9999px;
  padding: 7px 16px;
  font-family: 'Jost', sans-serif !important;
  font-size: 12.5px;
  font-weight: 500;
  color: #2D0C15;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(45, 12, 21, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-key-tag:hover {
  background: #2D0C15;
  color: #FFFFFF;
  border-color: #2D0C15;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 12, 21, 0.16);
}

/* City Perk Cards (Awwwards 2026 Clean Architectural Cards with SVG Monoline Discs) */
.city-panel-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.city-perk-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(45, 12, 21, 0.07);
  box-shadow: 0 4px 16px rgba(45, 12, 21, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-perk-card:hover {
  transform: translateX(4px);
  border-color: rgba(234, 143, 133, 0.55);
  box-shadow: 0 8px 24px rgba(234, 143, 133, 0.12);
}

.perk-icon-disc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(234, 143, 133, 0.1);
  border: 1px solid rgba(234, 143, 133, 0.25);
  color: #2D0C15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.city-perk-card:hover .perk-icon-disc {
  background: #2D0C15;
  border-color: #2D0C15;
  color: #FFFFFF;
  transform: scale(1.06);
}

.perk-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.perk-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

.perk-desc {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 13.5px;
  line-height: 1.6;
  color: #555555;
}

/* 3 SEO Pillars Grid */
.seo-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(48px, 6vw, 76px);
}

.seo-pillar-card {
  background: linear-gradient(168deg, #241418 0%, #150B0F 100%);
  border-radius: 28px;
  padding: clamp(34px, 3.8vw, 46px) clamp(28px, 3vw, 36px);
  border: 1px solid rgba(234, 143, 133, 0.22);
  box-shadow: 0 16px 44px rgba(22, 10, 14, 0.28);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(234, 143, 133, 0.65), transparent);
  pointer-events: none;
}

.seo-pillar-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 143, 133, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.seo-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 143, 133, 0.6);
  box-shadow: 
    0 26px 64px rgba(22, 10, 14, 0.42),
    0 0 24px rgba(234, 143, 133, 0.08);
}

.pillar-card-num {
  font-family: 'Prata', serif !important;
  font-size: clamp(38px, 3.2vw, 44px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFC0B8 0%, #EA8F85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pillar-card-title {
  font-family: 'Prata', serif !important;
  font-size: clamp(21px, 1.85vw, 24px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 14px 0;
  letter-spacing: -0.015em;
}

.pillar-card-lead {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 14.5px;
  line-height: 1.68;
  color: #C5B9B7;
  margin: 0 0 24px 0;
}

.pillar-procedures-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}

.pillar-procedures-list li {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 13.5px;
  line-height: 1.65;
  color: #BDB0AE;
  position: relative;
  padding-left: 16px;
}

.pillar-procedures-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #EA8F85;
  font-size: 16px;
  line-height: 1.5;
}

.pillar-procedures-list li strong {
  font-family: 'DM Sans', sans-serif !important;
  color: #FFFFFF;
  font-weight: 600;
}

.pillar-card-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  color: #FFC0B8;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 9999px;
  background: rgba(234, 143, 133, 0.09);
  border: 1px solid rgba(234, 143, 133, 0.26);
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-link-arrow {
  color: #EA8F85;
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.pillar-card-link:hover {
  background: #EA8F85;
  color: #170B0F;
  border-color: #EA8F85;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 143, 133, 0.28);
}

.pillar-card-link:hover .pillar-link-arrow {
  color: #170B0F;
  transform: translateX(4px);
}

/* E-E-A-T Medical Authority & Clinical Trust Suite */
.seo-eeat-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 76px);
  perspective: 1000px;
}

.eeat-trust-item {
  position: relative;
  background: #FFFFFF;
  border-radius: 26px;
  padding: 38px 24px 32px;
  border: 1px solid rgba(45, 12, 21, 0.07);
  box-shadow: 
    0 10px 30px -4px rgba(45, 12, 21, 0.03),
    0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  filter: blur(8px);
  transition: 
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered entrance when .seo-eeat-trust-bar becomes revealed */
.seo-eeat-trust-bar.is-revealed .eeat-trust-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.seo-eeat-trust-bar.is-revealed .eeat-trust-item:nth-child(1) { transition-delay: 0.05s; }
.seo-eeat-trust-bar.is-revealed .eeat-trust-item:nth-child(2) { transition-delay: 0.18s; }
.seo-eeat-trust-bar.is-revealed .eeat-trust-item:nth-child(3) { transition-delay: 0.31s; }
.seo-eeat-trust-bar.is-revealed .eeat-trust-item:nth-child(4) { transition-delay: 0.44s; }

/* Ambient liquid glass spotlight reflection on hover */
.eeat-trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 240, 243, 0.65) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Top luxury metallic hairline */
.eeat-trust-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(179, 141, 148, 0.75), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eeat-trust-item:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 12, 21, 0.16);
  box-shadow: 
    0 24px 48px -8px rgba(45, 12, 21, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

.eeat-trust-item:hover::before {
  opacity: 1;
}

.eeat-trust-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Eyebrow badge */
.eeat-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(45, 12, 21, 0.035);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}

.eeat-trust-item:hover .eeat-trust-badge {
  background: rgba(45, 12, 21, 0.06);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
}

@keyframes pulseEffect {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--p-rgb), 0.5); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(var(--p-rgb), 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--p-rgb), 0); }
}

.badge-dot.pulse-gold {
  --p-rgb: 197, 168, 128;
  background: #C5A880;
  animation: pulseEffect 2.8s infinite ease-in-out;
}

.badge-dot.pulse-green {
  --p-rgb: 52, 199, 89;
  background: #34C759;
  animation: pulseEffect 2.8s 0.7s infinite ease-in-out;
}

.badge-dot.pulse-blue {
  --p-rgb: 0, 113, 227;
  background: #0071E3;
  animation: pulseEffect 2.8s 1.4s infinite ease-in-out;
}

.badge-dot.pulse-coral {
  --p-rgb: 224, 86, 56;
  background: #E05638;
  animation: pulseEffect 2.8s 2.1s infinite ease-in-out;
}

.badge-text {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #726A6A;
}

/* Metric Number */
.eeat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 14px;
  height: 56px;
  position: relative;
  z-index: 2;
}

@keyframes sheenSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.eeat-trust-number {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(40px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(
    115deg,
    #1D1D1F 0%,
    #1D1D1F 35%,
    #8C7F7E 48%,
    #FFFFFF 50%,
    #8C7F7E 52%,
    #1D1D1F 65%,
    #1D1D1F 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-eeat-trust-bar.is-revealed .eeat-trust-number {
  animation: sheenSweep 2.6s cubic-bezier(0.16, 1, 0.3, 1) 1 forwards;
}

.eeat-trust-item:hover .eeat-trust-number {
  transform: scale(1.06);
  animation: sheenSweep 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1 forwards;
}

.eeat-trust-acronym {
  font-size: clamp(26px, 2.4vw, 34px) !important;
  letter-spacing: 0.04em !important;
}

.eeat-unit {
  font-size: 0.62em;
  font-weight: 600;
  margin-left: 2px;
  color: #8C7F7E;
  -webkit-text-fill-color: #8C7F7E;
  vertical-align: super;
}

.eeat-ratio-colon {
  font-size: 0.82em;
  font-weight: 600;
  padding: 0 4px;
  color: #8C7F7E;
  -webkit-text-fill-color: #8C7F7E;
}

.eeat-trust-label {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 13.5px;
  line-height: 1.55;
  color: #555555;
  font-weight: 450;
  max-width: 240px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.eeat-trust-item:hover .eeat-trust-label {
  color: #231F20;
}

.eeat-trust-label strong {
  font-weight: 600;
  color: #231F20;
}

@media (max-width: 991px) {
  .seo-eeat-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .seo-eeat-trust-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* FAQ Accordion Block */
.seo-faq-block {
  background: #FFFFFF;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(45, 12, 21, 0.07);
  box-shadow: 0 12px 40px rgba(45, 12, 21, 0.04);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.seo-faq-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}

.seo-faq-title {
  font-family: 'Prata', serif !important;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  color: #231f20;
  line-height: 1.22;
  margin: 0 0 12px 0;
  letter-spacing: -0.015em;
}

.seo-faq-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c7f7e;
  margin: 0 auto 16px auto;
  text-align: center;
}

.seo-faq-lead {
  font-family: 'Jost', sans-serif !important;
  font-size: 15.5px;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}

.seo-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Modern Luxury FAQ Pills (Pigułki) */
.faq-item {
  border: 1px solid rgba(64, 13, 28, 0.1);
  border-radius: 9999px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(45, 12, 21, 0.03);
  transition: border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.25s ease,
              background-color 0.3s ease;
}

.faq-item:hover {
  border-color: #EA8F85;
  box-shadow: 0 8px 26px rgba(234, 143, 133, 0.16);
  transform: translateY(-2px);
}

.faq-item.is-open {
  border-radius: 36px;
  border-color: #EA8F85;
  box-shadow: 0 16px 44px rgba(234, 143, 133, 0.14);
  transform: none;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  border-radius: 9999px;
  -webkit-tap-highlight-color: transparent;
  transition: padding 0.3s ease;
}

.faq-question {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(14.5px, 1.15vw, 16px);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-icon-disc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FAF5F2;
  border: 1px solid rgba(234, 143, 133, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #400D1C;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

.faq-item:hover .faq-icon-disc {
  background: #EA8F85;
  border-color: #EA8F85;
  color: #FFFFFF;
}

.faq-item.is-open .faq-icon-disc {
  transform: rotate(45deg);
  background: #400D1C;
  border-color: #400D1C;
  color: #FFFFFF;
}

.faq-answer-panel {
  padding: 0 32px 26px 32px;
}

.faq-answer-panel[hidden] {
  display: none;
}

.faq-answer-content {
  font-family: 'Jost', -apple-system, sans-serif !important;
  font-size: 15px;
  line-height: 1.8;
  color: #4A4A4A;
  border-top: 1px solid rgba(64, 13, 28, 0.08);
  padding-top: 18px;
}

@media (max-width: 767px) {
  .faq-item {
    border-radius: 30px;
  }
  .faq-item.is-open {
    border-radius: 26px;
  }
  .faq-trigger {
    padding: 14px 20px;
    border-radius: 30px;
    gap: 14px;
  }
  .faq-question {
    font-size: 14.5px;
  }
  .faq-icon-disc {
    width: 32px;
    height: 32px;
  }
  .faq-answer-panel {
    padding: 0 22px 20px 22px;
  }
}

/* Bottom CTA Wrap */
.seo-bottom-cta-wrap {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6F3 100%);
  border-radius: 28px;
  border: 1px solid rgba(234, 143, 133, 0.35);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
  box-shadow: 0 16px 44px rgba(45, 12, 21, 0.04);
  text-align: center;
}

.seo-cta-h4 {
  font-family: 'Prata', serif !important;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #231f20;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.seo-cta-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8c7f7e;
  margin: 0 auto 16px auto;
  text-align: center;
}

.seo-cta-p {
  font-family: 'Jost', sans-serif !important;
  font-size: 15.5px;
  line-height: 1.75;
  color: #555555;
  max-width: 680px;
  margin: 0 auto 28px auto;
}

.seo-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.seo-cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #2D0C15;
  padding: 14px 28px;
  border-radius: 9999px;
  border: 1px solid rgba(45, 12, 21, 0.12);
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(45, 12, 21, 0.05);
}

.seo-cta-phone-btn:hover {
  background: #2D0C15;
  color: #FFFFFF;
  border-color: #2D0C15;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 12, 21, 0.18);
}

.seo-phone-icon-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seo-cta-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2D0C15;
  color: #FFFFFF;
  border: 1px solid #2D0C15;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(45, 12, 21, 0.18);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-cta-book-btn:hover {
  background: #400D1C;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 12, 21, 0.25);
}

.cta-arrow-slide {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-cta-book-btn:hover .cta-arrow-slide {
  transform: translateX(4px);
}

/* Responsive queries */
@media (max-width: 992px) {
  .city-panel-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .seo-pillars-grid {
    grid-template-columns: 1fr;
  }
  .seo-eeat-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .seo-cities-pills-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .seo-city-pill {
    width: 100%;
  }
  .seo-eeat-trust-bar {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}

/* ==========================================================================
   1:1 LIKHA LIQUID PAINT TRANSITION OVERLAY (likhaaesthetic.ie)
   ========================================================================== */
.overlays {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99990;
}

.overlays.is-opened {
  pointer-events: auto;
}

.overlays__path {
  fill: url(#gradient1);
}

/* ==========================================================================
   HAUTE-LUXE EDITORIAL SITE FOOTER (1:1 with Likha Aesthetic Clinic)
   Pre-footer consultation banner + 4-column structured directory +
   delicate seals + circular social icons + legal copyright bar
   ========================================================================== */

.site-footer {
  width: 100%;
  background-color: #FAF7F5;
  color: var(--color-dark);
  position: relative;
  border-top: 1px solid rgba(234, 160, 152, 0.35);
  overflow: hidden;
  font-family: 'DM Sans', var(--font-sans);
}

/* 1. Pre-Footer Consultation Cross-Sell Banner */
.site-footer__pre {
  width: 100%;
  background: linear-gradient(180deg, rgba(251, 242, 240, 0.8) 0%, rgba(246, 239, 234, 0.95) 100%);
  border-bottom: 1px solid rgba(234, 160, 152, 0.22);
  padding: clamp(60px, 7vw, 96px) 24px;
  position: relative;
}

.site-footer__pre-container {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__pre-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B56B62;
  background: rgba(234, 160, 152, 0.15);
  border: 1px solid rgba(234, 160, 152, 0.35);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.site-footer__pre-title {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1.14;
  color: #231F20;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.site-footer__pre-title em {
  font-style: italic;
  color: #EAA098;
  font-weight: 400;
}

.site-footer__pre-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  line-height: 1.7;
  color: #615D5E;
  max-width: 740px;
  margin: 0 auto 36px;
}

.site-footer__pre-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.site-footer__btn--primary {
  background-color: #231F20;
  color: #FAF7F5;
  border: 1.5px solid #231F20;
  box-shadow: 0 4px 20px rgba(35, 31, 32, 0.12);
}

.site-footer__btn--primary:hover {
  background-color: #EAA098;
  border-color: #EAA098;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 160, 152, 0.35);
}

.site-footer__btn--secondary {
  background-color: transparent;
  color: #231F20;
  border: 1.5px solid rgba(234, 160, 152, 0.7);
}

.site-footer__btn--secondary:hover {
  border-color: #231F20;
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* 2. Main 4-Column Directory Grid */
.site-footer__main {
  width: 100%;
  padding: clamp(64px, 8vw, 100px) 24px 48px;
}

.site-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.05fr 1.05fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 60px;
}

/* Brand Column */
.footer-col--brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-seal-img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(234, 160, 152, 0.18));
}

.footer-logo-swan {
  width: 64px;
  height: auto;
  aspect-ratio: 109 / 98;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(51, 83, 147, 0.16));
}

.footer-brand-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  color: #231F20;
  letter-spacing: -0.01em;
}

.footer-brand-spec {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B56B62;
}

.footer-brand-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6B6667;
  margin-bottom: 24px;
}

.footer-credentials-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: #4A4546;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(234, 160, 152, 0.3);
  padding: 5px 11px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.footer-badge-pill .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #EAA098;
}

/* Nav Columns & Category Headings */
.footer-col-category {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A4A7AA;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-category::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background-color: rgba(234, 160, 152, 0.6);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav-item {
  margin: 0;
}

.footer-nav-link {
  font-size: 14px;
  line-height: 1.5;
  color: #4D4A4B;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav-link:hover {
  color: #B56B62;
  transform: translateX(4px);
}

.footer-nav-link--accent {
  color: #B56B62;
  font-weight: 600;
  margin-top: 4px;
}

.footer-nav-link--accent:hover {
  color: #231F20;
}

/* Contact Column */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-entry-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8C9095;
}

.footer-entry-val {
  font-size: 14px;
  line-height: 1.55;
  color: #332F30;
  margin: 0;
}

.footer-phone-link {
  color: #231F20;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-phone-link:hover {
  color: #EAA098;
}

.footer-phone-divider {
  margin: 0 4px;
  color: rgba(234, 160, 152, 0.6);
}

.footer-entry-note {
  font-size: 12px;
  color: #8C9095;
  margin: 0;
}

/* Social Row */
.site-footer__social-row {
  border-top: 1px solid rgba(234, 160, 152, 0.25);
  padding: 32px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #A4A7AA;
}

.footer-social-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 18px;
  border-radius: 40px;
  border: 1px solid rgba(234, 160, 152, 0.45);
  background: rgba(255, 255, 255, 0.85);
  color: #231F20;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn svg {
  color: #EAA098;
  transition: all 0.35s ease;
}

.footer-social-btn:hover {
  border-color: #231F20;
  background-color: #231F20;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(35, 31, 32, 0.1);
}

.footer-social-btn:hover svg {
  color: #EAA098;
}

/* 3. Bottom Legal & Medical Disclaimer Bar */
.site-footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(35, 31, 32, 0.08);
  background-color: #F4EFEB;
  padding: 28px 24px 36px;
}

.site-footer__bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-legal-left {
  max-width: 720px;
}

.footer-copyright {
  font-size: 13px;
  color: #595556;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-medical-disclaimer {
  font-size: 11.5px;
  line-height: 1.65;
  color: #8C9095;
  margin: 0;
}

.footer-legal-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 12.5px;
  color: #72777D;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal-link:hover {
  color: #231F20;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 30px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #231F20;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-back-to-top svg {
  transition: transform 0.3s ease;
}

.footer-back-to-top:hover {
  background-color: #231F20;
  color: #ffffff;
  border-color: #231F20;
}

.footer-back-to-top:hover svg {
  transform: translateY(-2px);
}

/* Responsive Styles for Footer */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer__bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-legal-right {
    align-items: flex-start;
    width: 100%;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-footer__pre {
    padding: 50px 20px;
  }
  .site-footer__btn {
    width: 100%;
    justify-content: center;
  }
  .site-footer__social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-social-pills {
    width: 100%;
  }
  .footer-social-btn {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
    font-size: 11.5px;
    padding: 0 12px;
  }
}

/* =========================================================================
   INTERACTIVE CONTACT & APPOINTMENT INQUIRY SECTION (Haute-Luxe)
   ========================================================================= */

/* =========================================================================
   HAUTE-LUXE EDITORIAL CONSULTATION & CONTACT SUITE (Likha Aesthetic)
   Quiet architectural luxury • Direct clinic channels & refined inquiry form
   ========================================================================= */

.contact-section {
  position: relative;
  background: #FFFFFF;
  margin: 40px auto 80px;
  max-width: 1380px;
  padding: 40px 32px 60px;
  border: none;
  box-shadow: none;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-section::before,
.contact-section::after {
  display: none !important;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
}

/* Section Header */
.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.contact-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B56B62;
  background: rgba(234, 160, 153, 0.18);
  border: 1px solid rgba(234, 160, 153, 0.4);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.contact-title {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  color: #231F20;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.contact-title em {
  font-style: italic;
  font-weight: 500;
  color: #B56B62;
}

.contact-subtitle {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: #6B6667;
  max-width: 680px;
  margin: 0 auto;
}

/* 2-Column Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 40px;
  align-items: stretch;
}

/* -------------------------------------------------------------------------
   LEFT COLUMN: Direct Info Card
   ------------------------------------------------------------------------- */
.contact-info-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 44px 38px;
  border: 1px solid rgba(234, 160, 153, 0.3);
  box-shadow: 0 10px 36px rgba(35, 31, 32, 0.03);
  display: flex;
  flex-direction: column;
}

.contact-card-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A6B46;
  margin-bottom: 12px;
  display: inline-block;
}

.contact-card-heading {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 27px;
  font-weight: 600;
  color: #231F20;
  line-height: 1.2;
  margin: 0 0 12px;
}

.contact-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #6B6667;
  margin: 0;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: auto 0;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px 12px 14px;
  border-radius: 9999px; /* Luksusowa pigułka (pill) */
  background: #FAF7F6;
  border: 1.5px solid rgba(234, 160, 153, 0.32);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(35, 31, 32, 0.02);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-direct-item:hover {
  background: #FFFFFF;
  border-color: #335393;
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 10px 26px rgba(51, 83, 147, 0.12);
}

.contact-direct-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(51, 83, 147, 0.08);
  color: #335393;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.contact-direct-item:hover .contact-direct-icon {
  background: #335393;
  color: #FFFFFF;
  transform: scale(1.05);
}

.contact-direct-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact-direct-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8C8687;
}

.contact-direct-val {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: #231F20;
  transition: color 0.2s ease;
}

.contact-direct-item:hover .contact-direct-val {
  color: #335393;
}

.contact-direct-arrow {
  font-size: 16px;
  color: #C5A880;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.contact-direct-item:hover .contact-direct-arrow {
  transform: translateX(4px);
  color: #335393;
}

.contact-info-footer {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #555152;
}

.contact-hours-pill svg {
  color: #8A6B46;
  flex-shrink: 0;
}

.contact-discretion-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8A6B46;
}

.contact-discretion-note svg {
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   RIGHT COLUMN: Quiet Editorial Consultation Form Card
   ------------------------------------------------------------------------- */
.contact-form-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 44px 42px;
  border: 1px solid rgba(234, 160, 153, 0.32);
  box-shadow: 0 10px 36px rgba(35, 31, 32, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.form-editorial-header {
  margin-bottom: 26px;
}

.form-editorial-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B56B62;
  margin-bottom: 8px;
  display: inline-block;
}

.form-editorial-title {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 27px;
  font-weight: 600;
  color: #231F20;
  line-height: 1.2;
  margin: 0 0 8px;
}

.form-editorial-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #6B6667;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #231F20;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.field-optional {
  font-size: 11px;
  font-weight: 400;
  color: #8C8687;
  font-style: italic;
  margin-left: 4px;
}

/* Input Control Wrap with Real-time Verification */
.input-control-wrap {
  position: relative;
  width: 100%;
}

.contact-input {
  width: 100%;
  height: 52px;
  padding: 0 46px 0 20px;
  border-radius: 9999px;
  border: 1.5px solid #E5DFDC;
  background: #FAF7F6;
  font-family: inherit;
  font-size: 14.5px;
  color: #231F20;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.contact-textarea {
  width: 100%;
  padding: 15px 46px 15px 20px;
  border-radius: 20px;
  border: 1.5px solid #E5DFDC;
  background: #FAF7F6;
  font-family: inherit;
  font-size: 14.5px;
  color: #231F20;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
  min-height: 105px;
  line-height: 1.55;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #A39D9E;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #335393;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(51, 83, 147, 0.1);
}

/* Green Highlight when Valid ("podkreślić na zielono") */
.input-control-wrap.is-valid .contact-input,
.input-control-wrap.is-valid .contact-textarea {
  border-color: #10B981 !important;
  background: #F0FDF4 !important;
  box-shadow: 0 0 0 3.5px rgba(16, 185, 129, 0.2) !important;
  color: #064E3B;
}

.form-field.is-valid .field-label {
  color: #047857;
}

.contact-input.has-error,
.contact-textarea.has-error {
  border-color: #D87A68 !important;
  background: #FFF9F8 !important;
  box-shadow: 0 0 0 3.5px rgba(216, 122, 104, 0.16) !important;
}

/* Verification checkmark badge ("taki ptaszek weryfikację") */
.field-check-badge {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) scale(0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.35), opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.38);
  z-index: 2;
}

.field-check-badge svg {
  width: 13px;
  height: 13px;
  stroke: #FFFFFF;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.35s ease 0.08s;
}

/* Textarea checkmark position */
.input-control-wrap--textarea .field-check-badge {
  top: 18px;
  transform: translateY(0) scale(0.2);
}

/* Active valid badge pop */
.input-control-wrap.is-valid .field-check-badge {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.input-control-wrap--textarea.is-valid .field-check-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.input-control-wrap.is-valid .field-check-badge svg,
.input-control-wrap--textarea.is-valid .field-check-badge svg {
  stroke-dashoffset: 0;
}

/* GDPR Consent */
.form-consent {
  margin-top: 4px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consent-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  border: 1.5px solid #D1C9C6;
  background: #FAF8F7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.checkbox-custom svg {
  width: 11px;
  height: 11px;
  stroke: #FFFFFF;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.consent-checkbox:checked + .checkbox-custom {
  background: #335393;
  border-color: #335393;
  box-shadow: 0 2px 8px rgba(51, 83, 147, 0.25);
}

.consent-checkbox:checked + .checkbox-custom svg {
  opacity: 1;
  transform: scale(1);
}

.consent-text {
  font-size: 12px;
  line-height: 1.5;
  color: #6B6667;
}

.consent-text a {
  color: #335393;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit Button */
.form-submit-wrap {
  margin-top: 6px;
}

.btn-submit-inquiry {
  width: 100%;
  padding: 16px 32px;
  border-radius: 999px;
  background: #231F20;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(35, 31, 32, 0.14);
}

.btn-submit-inquiry:hover {
  background: #335393;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(51, 83, 147, 0.28);
}

.btn-submit-inquiry:active {
  transform: translateY(0);
}

.btn-submit-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.btn-submit-icon {
  display: flex;
  align-items: center;
  font-size: 17px;
  transition: transform 0.25s ease;
}

.btn-submit-inquiry:hover .btn-submit-icon {
  transform: translateX(4px);
}

/* Loading Spinner */
.btn-submit-spinner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: spinBtn 0.75s linear infinite;
  transition: opacity 0.2s ease;
}

@keyframes spinBtn {
  to { transform: rotate(360deg); }
}

.btn-submit-inquiry.is-loading .btn-submit-content {
  opacity: 0;
}

.btn-submit-inquiry.is-loading .btn-submit-spinner {
  opacity: 1;
}

/* Success State Overlay */
.form-success-state {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 48px 36px;
  display: none !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  animation: successFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-success-state.is-visible {
  display: flex !important;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon-wrap {
  margin-bottom: 20px;
}

.success-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.15);
  border: 1.5px solid #C5A880;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-check-svg {
  width: 38px;
  height: 38px;
  stroke: #8A6B46;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-check-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: #C5A880;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check-path {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes strokeCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-family: 'Cormorant Garamond', var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 12px;
}

.success-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #6B6667;
  max-width: 460px;
  margin: 0 0 28px;
}

.btn-send-another {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid #231F20;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: #231F20;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-send-another:hover {
  background: #231F20;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* -------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .contact-section {
    padding: 60px 32px;
    margin: 30px 16px 50px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
  }
  
  .contact-section {
    overflow: hidden !important;
    max-width: calc(100vw - 20px) !important;
    margin: 20px 10px 40px !important;
  }

  .contact-section::before,
  .contact-section::after {
    display: none !important;
  }
}

@media (max-width: 640px) {
  /* Hero & Header Mobile Polish */
  .hero-canvas {
    overflow: hidden !important;
    max-width: 100vw !important;
  }

  .blob-canvas {
    width: 130% !important;
    height: 130% !important;
    inset: -15% !important;
  }

  #badge-bottom-left {
    display: none !important;
  }

  /* Philosophy Statement Line Wrap */
  .section-statement {
    padding: 70px 18px !important;
  }

  .statement-title {
    font-size: clamp(22px, 6.2vw, 32px) !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .statement-line {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 10px !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .word-mask {
    display: inline-block !important;
  }

  /* Treatments Quick Tags Horizontal Touch Carousel */
  .search-quick-tags {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
    padding-bottom: 6px !important;
    scrollbar-width: none !important;
  }

  .search-quick-tags::-webkit-scrollbar {
    display: none !important;
  }

  .treatments-track-container {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* SEO Authority 2x2 Grid for Cities */
  .city-selector-pills {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .city-pill-btn {
    padding: 10px 12px !important;
    font-size: 11.5px !important;
    text-align: center !important;
  }

  .contact-section {
    padding: 24px 12px 36px !important;
    border-radius: 0 !important;
    background: #FFFFFF !important;
    border: none !important;
    box-shadow: none !important;
    margin: 10px auto 30px !important;
  }

  .contact-title {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 1.2 !important;
  }

  .contact-subtitle {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px !important;
    border-radius: 24px !important;
  }

  .contact-card-heading,
  .form-editorial-title {
    font-size: 22px !important;
  }

  .contact-direct-list {
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .contact-direct-item {
    padding: 9px 18px 9px 10px !important;
    border-radius: 9999px !important;
    gap: 12px !important;
  }

  .contact-direct-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .contact-direct-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .contact-direct-val {
    font-size: 13.5px !important;
  }

  .contact-info-footer {
    padding-top: 16px !important;
    gap: 8px !important;
  }

  .contact-hours-pill,
  .contact-discretion-note {
    font-size: 11px !important;
  }

  /* Form Fields Mobile Optimization */
  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-input {
    height: 48px !important;
    padding: 0 44px 0 16px !important;
    font-size: 13.5px !important;
    border-radius: 9999px !important;
  }

  .contact-textarea {
    padding: 14px 44px 14px 16px !important;
    font-size: 13.5px !important;
    border-radius: 18px !important;
    min-height: 95px !important;
  }

  .field-label {
    font-size: 12px !important;
    margin-bottom: 5px !important;
  }

  .btn-submit-inquiry {
    padding: 15px 24px !important;
    font-size: 14px !important;
  }
}



