/* About page — concatenated CSS (no @import). Paths relative to dist. */
/* 1. variables.css */
:root {
  /* Colors — from Framer design */
  --color-primary: #3c252d;
  --color-primary-light: #C5AA8F;
  --color-surface: #fefefd;
  --color-surface-warm: #e8e8e1;
  --color-surface-alt: #f2f2ef;
  --color-text: #1a1c18;
  --color-text-dark: #1b1316;
  --color-text-secondary: #282828;
  --color-text-muted: rgba(26, 28, 24, 0.7);
  --color-accent-green: #3c4433;
  --color-footer-bg: #201519;
  --color-footer-card: #1e1317;
  --color-footer-text: #f3f2f2;
  --color-footer-text-muted: rgba(255, 255, 255, 0.6);
  --color-border: rgba(0, 0, 0, 0.1);
  --color-white: #fefefd;
  --color-star: #FFB800;
  --color-black: #0d0d0d;
  /* Overlays & shadows (semantic tokens) */
  --color-overlay-dark: rgba(0, 0, 0, 0.4);
  --color-overlay-dark-0: rgba(0, 0, 0, 0);
  --color-overlay-modal: rgba(0, 0, 0, 0.9);
  --color-overlay-light: rgba(255, 255, 255, 0.9);
  --color-overlay-light-1: rgba(255, 255, 255, 0.1);
  --color-overlay-light-2: rgba(255, 255, 255, 0.2);
  --color-overlay-light-3: rgba(255, 255, 255, 0.3);
  --color-shadow-soft: rgba(0, 0, 0, 0.1);
  --color-shadow-text: rgba(0, 0, 0, 0.3);
  --color-shadow-play: rgba(0, 0, 0, 0.2);
  --color-primary-muted: rgba(60, 37, 45, 0.3);
  --color-primary-muted-hover: rgba(60, 37, 45, 0.5);
  --testimonials-max-width: 75rem;
  --touch-target-min: 2rem;
  --size-play-button: 8.125rem;
  --carousel-dots-margin-top: 5rem;

  /* Typography — fluid scale with clamp() */
  --font-display: 'Sentient', Georgia, 'Times New Roman', serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-accent: var(--font-body);

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --text-xl: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1rem + 2vw, 2rem);
  --text-3xl: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  --text-4xl: clamp(2.5rem, 1.5rem + 4vw, 4.25rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 7.5rem);

  /* Spacing — fluid */
  --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1rem + 2vw, 3rem);
  --space-xl: clamp(2rem, 1.5rem + 3vw, 5rem);
  --space-2xl: clamp(3rem, 2rem + 4vw, 8.75rem);

  /* Layout */
  --max-width: 90rem;
  --content-width: 75rem;
  --treatment-detail-width: 98.75rem; /* 1580px */
  --gutter: clamp(1.25rem, 1rem + 2vw, 6.25rem);

  /* Borders & Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1.125rem;
  --radius-xl: 3rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
}

/* 2. fonts.css — paths for dist: ../assets/fonts/ */
@font-face {
  font-family: 'Sentient';
  src: url('../assets/fonts/sentient-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('../assets/fonts/sentient-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('../assets/fonts/sentient-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('../assets/fonts/sentient-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('../assets/fonts/figtree.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/dmsans.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 3. layout.css */
.container {
  max-width: var(--treatment-detail-width);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* 4. base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-surface);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--color-text-dark);
}

h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: -0.04em;
}

h2 {
  font-size: var(--text-4xl);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* 5. header.css */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: clamp(0.75rem, 0.5rem + 1vw, 1.5rem) var(--gutter);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--color-white);
  max-width: 90rem;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 0.5rem + 0.5vw, 1.375rem) clamp(1rem, 0.75rem + 1vw, 2rem);
  gap: var(--space-md);
}

.nav.is-menu-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.75rem, 0.5rem + 1vw, 1.5rem);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text);
  transition: opacity var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__logo {
  justify-self: center;
}

.nav__logo img {
  height: clamp(2rem, 1.5rem + 2vw, 4rem);
  width: auto;
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
}

.nav__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: var(--radius-full);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.nav__action-btn:hover {
  opacity: 0.7;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg) translate(0.35rem, 0.35rem);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg) translate(0.35rem, -0.35rem);
}

.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-lg);
}

.nav__mobile-menu.is-open {
  display: flex;
}

.nav__mobile-menu .nav__link {
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 63.9375rem) {
  .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__links {
    display: none;
  }

  .nav__logo {
    order: 1;
  }

  .nav__actions {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav__toggle {
    display: flex;
    order: 3;
    margin-left: var(--space-sm);
  }
}

/* 6. buttons.css */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1;
  padding: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem) clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  border-radius: var(--radius-md);
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  max-width: max-content;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-white);
}

.btn--warm {
  background: var(--color-surface-warm);
  color: var(--color-text);
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
}

/* 7. hero.css */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(6rem, 5rem + 5vw, 10rem) var(--gutter) var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 1) 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 50rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: var(--text-base);
}

.hero__badge svg {
  height: 1.5rem;
  width: auto;
}

.hero__title,
#hero-heading {
  color: var(--color-white);
  line-height: 1.05;
}

.hero__subtitle {
  color: var(--color-white);
  font-size: var(--text-lg);
  font-weight: 300;
  max-width: 40rem;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
    align-items: flex-start;
    min-height: 704px;
    height: 704px;
  }

  .hero__content {
    align-items: flex-start;
  }

  .hero__cta {
    justify-content: flex-start;
  }
}

/* 8. features.css */
.features {
  background: var(--color-surface-warm);
  padding-block: var(--space-xl);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.features__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.features__icon {
  width: clamp(2.5rem, 2rem + 1.5vw, 4.25rem);
  height: clamp(2.5rem, 2rem + 1.5vw, 4.25rem);
  object-fit: contain;
  flex-shrink: 0;
}

.features__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.features__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.features__desc {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 47.9375rem) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 29.9375rem) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* 9. treatment-detail.css */
.treatment-detail {
  background-color: var(--color-surface-alt);
  padding-block: clamp(8rem, 6rem + 5vw, 12rem) clamp(3rem, 2rem + 4vw, 6rem);
  overflow: visible;
}

.treatment-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  max-width: var(--treatment-detail-width);
  margin-inline: auto;
  overflow: visible;
}

@media (min-width: 64rem) {
  .treatment-detail__inner {
    grid-template-columns: 675px 1fr;
    gap: clamp(3rem, 2rem + 3vw, 5rem);
    align-items: start;
  }
}

.treatment-detail__visual {
  position: relative;
}

.treatment-detail__image-wrapper {
  background-color: var(--color-surface-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 675 / 680;
}

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

.treatment-detail__image-wrapper--hidden {
  display: none;
}

.treatment-detail__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.treatment-detail__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.625rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.treatment-detail__description {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.treatment-detail__description p {
  margin-bottom: var(--space-md);
}

.treatment-detail__description p:last-child {
  margin-bottom: 0;
}

.treatment-detail__divider {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  opacity: 0.45;
}

.treatment-detail__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.treatment-detail__benefits-title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-dark);
}

.treatment-detail__benefits-content {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.treatment-detail__benefits-content p {
  margin-bottom: var(--space-md);
}

.treatment-detail__benefits-content p:last-child {
  margin-bottom: 0;
}

.treatment-detail__benefits-content strong {
  font-weight: 500;
  color: var(--color-text-dark);
}

.treatment-detail__pricing {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.treatment-detail__pricing-title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-dark);
}

.treatment-detail__pricing-list {
  background-color: var(--color-surface-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-item {
  display: flex;
  flex-direction: column;
}

.pricing-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.pricing-item__name {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text);
  flex: 1;
}

.pricing-item__price {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 400;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.pricing-item__divider {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  opacity: 0.45;
}

.treatment-detail__cta {
  margin-top: var(--space-md);
}

.treatment-detail__cta .btn {
  width: 100%;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-base);
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (min-width: 48rem) {
  .treatment-detail__cta .btn {
    width: auto;
  }
}

/* 10. carousel.css */
.carousel {
  background-color: var(--color-surface);
  padding-block: var(--space-2xl);
}

.carousel__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.carousel__viewport {
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.carousel__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--space-sm);
  transition: transform var(--duration-base) var(--ease-out);
}

.carousel__slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-surface-warm);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  will-change: transform;
  cursor: pointer;
  pointer-events: auto;
}

.carousel__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  padding: 0;
  width: var(--size-play-button);
  height: var(--size-play-button);
  min-width: var(--touch-target-min);
  min-height: var(--touch-target-min);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.carousel__play-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px var(--color-shadow-play));
}

.carousel__slide-inner:hover .carousel__play-button {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.05);
}

.carousel__play-button:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.carousel__play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.carousel__play-button:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
  border-radius: 50%;
}

.carousel__parallax-layer {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
  display: flex;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.carousel__slide.is-active .carousel__slide-inner,
.swiper-slide-active .carousel__slide-inner {
  z-index: 2;
  opacity: 1;
}

.carousel__slide:not(.is-active) .carousel__slide-inner {
  opacity: 0.85;
}

.carousel__parallax-layer picture,
.carousel__parallax-layer img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 3;
  flex: 0 0 calc(115% + (100px * 2));
  max-width: none;
  transform-origin: center;
  margin-left: -5%;
  pointer-events: none;
}

.swiper-slide .carousel__slide-inner {
  height: 100%;
  min-height: 300px !important;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  position: relative;
  margin-top: var(--carousel-dots-margin-top);
}

.carousel__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-muted);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.carousel__dot:hover {
  background-color: var(--color-primary-muted-hover);
  transform: scale(1.2);
}

.carousel__dot.is-selected,
.carousel__dot--active {
  background-color: var(--color-primary);
  transform: scale(1.3);
}

.swiper {
  width: 100%;
  padding-bottom: var(--space-lg);
}

.swiper-wrapper {
  display: flex;
  pointer-events: none;
  margin: 0 calc(var(--space-sm) * -1);
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  transition-property: transform;
  display: flex;
  align-items: stretch;
  padding: 0 var(--space-sm);
  pointer-events: auto;
}

.swiper-slide.is-active {
  z-index: 2;
}

@media (min-width: 48rem) {
  .carousel__slide {
    flex: 0 0 calc(33.333% - var(--space-md));
    padding: 0 var(--space-sm);
  }

  .carousel__container {
    gap: var(--space-md);
  }
}

@media (min-width: 64rem) {
  .carousel__slide {
    flex: 0 0 calc(33.333% - var(--space-lg));
  }

  .carousel__container {
    gap: var(--space-lg);
  }

  .carousel__slide.is-active .carousel__slide-inner {
    transform: scale(1.08) !important;
  }
}

/* 11. faq.css */
.faq {
  position: relative;
  overflow: hidden;
}

.faq__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.faq__inner {
  display: flex;
  gap: var(--space-xl);
}

.faq__decoration {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: var(--space-lg);
}

.faq__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 3rem + 3vw, 7.5rem);
  height: clamp(4rem, 3rem + 3vw, 7.5rem);
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
}

.faq__play-icon svg {
  width: 0.75rem;
  height: 0.875rem;
  fill: var(--color-primary);
}

.faq__content {
  flex: 1;
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 3.75rem) clamp(1.5rem, 1rem + 2vw, 3.125rem);
}

.faq__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.accordion__item {
  border-top: 1px solid var(--color-border);
}

.accordion__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.accordion__trigger:hover {
  opacity: 0.7;
}

.accordion__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-base) var(--ease-out);
}

.accordion__icon svg {
  width: 100%;
  height: 100%;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.accordion__panel[data-open="true"] {
  max-height: 20rem;
}

.accordion__body {
  padding-bottom: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

@media (max-width: 47.9375rem) {
  .faq__inner {
    flex-direction: column;
    align-items: center;
  }

  .faq__decoration {
    display: none;
  }
}

/* 12. cta.css */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-2xl);
}

.cta-banner__inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(20rem, 15rem + 15vw, 35rem);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.cta-banner__bg picture,
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  max-width: 40rem;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.cta-banner__heading em {
  font-style: normal;
}

.cta-banner__body {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* 13. footer.css */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-2xl) var(--gutter) var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 340px 2fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin-inline: auto;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 340px;
}

.footer__logo svg {
  width: clamp(8rem, 6rem + 5vw, 14rem);
  height: auto;
}

.footer__tagline {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-footer-text-muted);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__payments {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer__payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 2rem;
  background: var(--color-footer-card);
  border-radius: var(--radius-sm);
  padding: 0.25rem;
}

.footer__payment-icon svg {
  width: 100%;
  height: auto;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: var(--space-lg);
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__column-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-footer-text-muted);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.footer__column-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer__link {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-footer-text);
  transition: opacity var(--duration-fast) var(--ease-out);
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80%;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__text {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-footer-text);
  line-height: 1.6;
}

.footer__text--muted {
  color: var(--color-footer-text-muted);
}

.footer__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: #4a383b;
  border-radius: var(--radius-lg);
  padding: 10px var(--space-sm);
  text-align: center;
}

.footer__reviews-text {
  font-size: var(--text-xs);
  font-weight: 300;
  color: #cccccc;
  line-height: 1.5;
}

.footer__reviews-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__reviews-brand svg {
  height: 1.5rem;
  width: auto;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max-width);
  margin-inline: auto;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-footer-text-muted);
}

@media (max-width: 63.9375rem) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 47.9375rem) {
  .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* 14. video-modal.css */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base) var(--ease-out);
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-overlay-modal);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal__container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  transform: scale(0.9);
  transition: transform var(--duration-base) var(--ease-out);
}

.video-modal.is-open .video-modal__container {
  transform: scale(1);
}

.video-modal__close {
  position: absolute;
  top: -3.125rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  min-width: var(--touch-target-min);
  min-height: var(--touch-target-min);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-overlay-light-1);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  z-index: 2;
}

.video-modal__close:hover {
  background: var(--color-overlay-light-2);
  transform: rotate(90deg);
}

.video-modal__close:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

.video-modal__content {
  background: var(--color-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-modal__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: var(--color-black);
}

#videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#videoPlayer iframe,
#videoPlayer video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 63.9375rem) {
  .video-modal__container {
    width: 95%;
  }

  .video-modal__close {
    top: -2.8125rem;
    width: 2.25rem;
    height: 2.25rem;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
  }
}

@media (max-width: 47.9375rem) {
  .video-modal__close {
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-overlay-modal);
  }
}

body.modal-open {
  overflow: hidden;
}

.video-modal__wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-overlay-light-3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 1;
  transition: opacity var(--duration-base);
}

.video-modal__wrapper.is-loaded::before {
  opacity: 0;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 15. about.css (page-specific) */
.footer__logo img {
  width: clamp(8rem, 6rem + 5vw, 14rem);
  height: auto;
}

.nav__link--current {
  font-weight: 500;
  color: var(--color-primary);
}

.certification-strip {
  text-align: center;
  padding-block: var(--space-xl);
  background: var(--color-surface);
}

.certification-strip__logo {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  margin-inline: auto;
}

@media (min-width: 64rem) {
  .treatment-detail .treatment-detail__content {
    max-width: 540px;
  }
  .treatment-detail--reverse .treatment-detail__content {
    margin-left: auto;
  }
}

.treatment-detail--reverse .treatment-detail__inner {
  grid-template-columns: 1fr 675px;
}

@media (max-width: 63.999rem) {
  .treatment-detail--reverse .treatment-detail__inner {
    grid-template-columns: 1fr;
  }
}
