:root {
  --bg: #fcfbf8;
  --bg-strong: #f3efea;
  --surface: #ffffff;
  --surface-alt: #f8f4f1;
  --ink: #111111;
  --ink-soft: #4d4747;
  --ink-muted: #756f6f;
  --line: #1c1b1b;
  --line-soft: rgba(17, 17, 17, 0.1);
  --accent: #cc9110;
  --accent-strong: #a8740b;
  --accent-rgb: 204, 145, 16;
  --shadow-soft: 0 4px 18px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 12px 34px rgba(11, 9, 8, 0.08);
  --shadow-panel: 0 24px 60px rgba(8, 8, 8, 0.18);
  --shadow-figma-card: 0 4px 4px rgba(0, 0, 0, 0.25);
  --radius-sm: 0.4rem;
  --radius-md: 1rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --shell: min(1120px, calc(100vw - 3.5rem));
  --font-body: "Montserrat", sans-serif;
  --font-brand: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.18), transparent 22rem),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.03), transparent 28rem),
    var(--bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

textarea {
  resize: vertical;
}

code {
  font-size: 0.85rem;
  padding: 0.1rem 0.3rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.shell--wide {
  width: min(1230px, calc(100vw - 3.5rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 251, 248, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.shell--header {
  position: relative;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0;
}

.site-header__actions {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-left: auto;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-mark--image {
  width: clamp(6.5rem, 26vw, 11rem);
}

.brand-mark__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-mark__title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.82;
  letter-spacing: 0.06em;
}

.brand-mark__subtitle {
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.brand-mark--inverse {
  color: #fff;
}

.site-nav {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link--button {
  padding: 0;
  color: inherit;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.nav-item--has-submenu .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-item--has-submenu .nav-link::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  transition: transform 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 0.15rem;
  min-width: 22rem;
  padding: 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-panel);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.5rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.7rem;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu.nav-item--open .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item--has-submenu:hover .nav-link::before,
.nav-item--has-submenu.nav-item--open .nav-link::before,
.nav-item--has-submenu:focus-within .nav-link::before {
  transform: rotate(225deg) translateY(-0.02rem);
}

.submenu-link {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 0.95rem;
  font-size: 0.92rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.submenu-link:hover,
.submenu-link:focus-visible {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--ink);
  transform: translateX(0.12rem);
}

.submenu-link--overview {
  color: var(--ink-muted);
}

.icon-chip {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.icon-chip svg {
  width: 1rem;
  height: 1rem;
}

.icon-chip--static {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.header-search {
  display: none;
}

.header-search__inner,
.header-search--desktop {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.35rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  min-width: 0;
  max-width: none;
  padding: 0.22rem 0.35rem;
  box-shadow: var(--shadow-soft);
}

.header-search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 0.75rem;
  line-height: 1.15;
  color: var(--ink);
}

.site-header__menu-toggle {
  flex: 0 0 auto;
}

.header-search__input::placeholder {
  color: var(--ink-muted);
}

.header-search--mobile {
  margin-bottom: 0.75rem;
}

.header-search--mobile:not([hidden]) {
  display: block;
}

.mobile-menu {
  position: absolute;
  inset: calc(100% - 0.25rem) 0 auto;
}

.mobile-menu__panel {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-panel);
}

.mobile-menu__panel .nav-link {
  padding: 0.55rem 0;
}

.mobile-submenu {
  display: grid;
  gap: 0.25rem;
}

.mobile-submenu__links {
  display: grid;
  gap: 0.25rem;
  padding: 0.35rem 0 0.1rem 0.85rem;
  border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.mobile-submenu__links[hidden] {
  display: none;
}

.mobile-submenu__link {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.mobile-submenu__link--overview {
  color: var(--ink-muted);
}

main {
  padding-bottom: 4rem;
}

.section {
  padding-top: 2.25rem;
}

.hero {
  padding-top: 1.4rem;
}

.hero--fullbleed {
  width: 100%;
  padding-top: 0;
  overflow: clip;
}

.hero__layout {
  display: grid;
  gap: 1.5rem;
}

.hero__layout--full {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.hero--fullbleed .hero__layout--full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  gap: 0;
}

.hero__copy,
.hero__panel,
.showcase-card,
.entity-card,
.about-panel,
.about-page__panel,
.contact-card,
.contact-form,
.detail-hero,
.empty-state {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

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

.eyebrow,
.section-heading__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p,
legend {
  margin: 0;
}

h1,
h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero__text {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero__copy {
  display: grid;
  gap: 1.3rem;
  align-content: center;
}

.hero__copy h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero__actions,
.section-heading,
.site-footer__inner,
.contact-card__actions,
.empty-state__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: max-content;
  max-width: 100%;
  min-height: 2.9rem;
  padding: 0.58rem 1.8rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.button--secondary {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.12);
  color: #000;
}

.hero__copy .button--secondary {
  border-color: rgba(17, 17, 17, 0.12);
}

.hero__panel,
.about-panel,
.home-feature-panel,
.about-page__panel,
.detail-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-panel);
}

.hero__panel {
  display: flex;
  align-items: flex-end;
  min-height: clamp(30rem, 108vw, 35rem);
  border-radius: 2.8rem;
  background: #b8b2b2;
}

.hero__panel--full {
  width: 100%;
  max-width: none;
  min-height: clamp(28rem, 118vw, 39rem);
  aspect-ratio: auto;
  margin-inline: 0;
  justify-self: stretch;
  position: relative;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(198, 191, 191, 0.18) 0%, rgba(12, 11, 11, 0.94) 100%),
    linear-gradient(180deg, #bdb8b8 0%, #1a1717 100%);
}

.hero__panel--full .hero__photo {
  object-position: center top;
  transform: scale(1);
}

.about-panel,
.home-feature-panel,
.about-page__panel,
.detail-hero__media {
  background: linear-gradient(180deg, #cbc5c5 0%, #bcb5b5 45%, #0d0c0c 100%);
}

.hero__art,
.about-panel__art,
.home-feature-panel__art,
.about-page__art,
.detail-hero__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-panel__art::before,
.about-page__art::before,
.detail-hero__art::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: min(82vw, 28rem);
  height: min(82vw, 28rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.64), rgba(var(--accent-rgb), 0.16) 56%, transparent 76%);
  filter: blur(6px);
}

.about-panel__art::after,
.about-page__art::after,
.detail-hero__art::after {
  content: "";
  position: absolute;
  inset: 6% 9% 9% auto;
  width: min(70vw, 25rem);
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.25), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(0, 0, 0, 0.82));
  opacity: 0.88;
}

.about-panel__art span,
.about-page__art span,
.detail-hero__art span {
  position: absolute;
  right: clamp(1rem, 5vw, 2.5rem);
  bottom: clamp(1.2rem, 5vw, 2.5rem);
  font-family: var(--font-brand);
  font-size: clamp(6rem, 17vw, 12rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.12em;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
}

.hero__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-panel__photo,
.home-feature-panel__photo,
.about-page__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center top;
  z-index: 0;
}

.about-panel__photo {
  object-fit: contain;
}

.home-feature-panel {
  min-height: 0;
  aspect-ratio: 5560 / 3129;
  border-radius: 0;
  box-shadow: none;
  background: var(--surface-alt);
}

.home-feature-panel__photo {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section--home-feature {
  width: 100%;
  padding-inline: 0;
}

.home-before-after {
  padding-top: clamp(1rem, 3vw, 1.45rem);
}

.home-before-after__carousel {
  --home-before-after-gap: clamp(0.8rem, 1.5vw, 1.15rem);
  --home-before-after-columns: 2;
  position: relative;
  padding-inline: clamp(3rem, 5vw, 4.8rem);
}

.home-before-after__viewport {
  overflow: hidden;
}

.home-before-after__track {
  display: flex;
  gap: var(--home-before-after-gap);
  will-change: transform;
}

.home-before-after__slide {
  flex: 0 0 calc((100% - ((var(--home-before-after-columns) - 1) * var(--home-before-after-gap))) / var(--home-before-after-columns));
  min-width: 0;
}

.home-before-after__card {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.home-before-after__card:hover,
.home-before-after__card:focus-visible {
  transform: translateY(-2px);
  opacity: 0.94;
}

.home-before-after__card:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.3);
  outline-offset: 4px;
}

.home-before-after__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 720px) {
  .home-before-after__carousel {
    --home-before-after-columns: 3;
  }
}

@media (min-width: 1080px) {
  .home-before-after__carousel {
    --home-before-after-columns: 4;
  }
}

.about-page__photo {
  object-fit: cover;
  object-position: center 24%;
  transform: none;
}

.about-panel__art span,
.about-page__art span {
  z-index: 1;
}

.about-page__art::before,
.about-page__art::after,
.about-page__art span {
  display: none;
}

.hero__overlay,
.about-page__overlay,
.detail-hero__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  margin-top: auto;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.92));
  color: #fff;
}

.hero__overlay {
  width: 100%;
  min-height: 14rem;
  justify-content: end;
  padding: 1.85rem 1.7rem 1.6rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.92) 100%);
}

.hero__overlay h2 {
  max-width: 18rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero__overlay .eyebrow {
  margin-bottom: 0;
  font-size: 0.92rem;
  letter-spacing: 0.24em;
}

.hero__overlay .button {
  display: none;
}

.hero__overlay--full {
  min-height: 100%;
  align-content: end;
  justify-items: start;
  gap: 0.95rem;
  padding: clamp(1.5rem, 5vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.7) 54%, rgba(0, 0, 0, 0.92) 100%);
}

.hero__overlay--actions-only {
  align-content: end;
  justify-items: start;
  padding: 1.2rem 0 1.3rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.58) 100%);
}

.hero__overlay--video {
  position: absolute;
  inset: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.2) 56%, rgba(0, 0, 0, 0.38) 78%, rgba(0, 0, 0, 0.62) 100%);
}

.hero__overlay-shell {
  width: var(--shell);
  max-width: none;
  margin: 0 auto;
}

.hero__overlay--video .hero__overlay-shell {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 100%;
  padding-block: 1.3rem;
}

.hero__video-content {
  width: min(100%, 24rem);
  display: grid;
  gap: 0.85rem;
  justify-items: start;
  margin-right: auto;
}

.hero__overlay--video .hero__video-title {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 7vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
}

.hero__video-text {
  margin: 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  line-height: 1.45;
  font-weight: 300;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.hero__overlay--full h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 8.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero__overlay--full .button {
  display: inline-flex;
}

.hero__text--overlay {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  line-height: 1.6;
}

.hero__actions--overlay {
  width: min(100%, 29rem);
  margin-top: 0.4rem;
}

.hero__actions--hero-only {
  width: min(100%, 11.5rem);
  margin-top: 0;
}

.hero__actions--single-cta {
  width: auto;
  max-width: none;
  margin-top: 0;
}

.hero__overlay--full > * {
  position: relative;
  z-index: 1;
}

.hero__overlay > p:last-of-type {
  max-width: 26rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.45;
}

.hero .hero__actions {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.hero .hero__actions .button {
  min-width: 0;
  min-height: 2.9rem;
  padding-inline: 1.8rem;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  letter-spacing: 0;
}

.hero .hero__actions .button--secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--ink);
}

.hero .hero__actions--single-cta .button {
  width: auto;
  min-width: 0;
  min-height: 2.9rem;
  padding-inline: 1.6rem;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.hero__overlay p,
.about-page__overlay p,
.detail-hero__overlay p {
  color: rgba(255, 255, 255, 0.85);
}

.showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(12.2rem, 14.5rem);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-snap-type: x proximity;
}

.showcase-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.showcase-card--active {
  border-color: var(--line);
}

.showcase-card__media {
  display: grid;
  place-items: end start;
  min-height: 10rem;
  padding: 0.85rem;
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.1)),
    radial-gradient(circle at 82% 16%, rgba(var(--accent-rgb), 0.58), transparent 28%),
    linear-gradient(180deg, #d7d2d2 0%, #cbc5c5 42%, #8c8585 100%);
}

.showcase-card__index {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.section-heading > div {
  flex: 1 1 46rem;
  min-width: 0;
}

.section-heading h2 {
  max-width: none;
}

.section-heading__description {
  margin: 0.45rem 0 0;
  max-width: 52rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}

.section-heading--small {
  margin-bottom: 0;
}

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

.entity-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  overflow: hidden;
}

.entity-card--featured {
  border-color: transparent;
}

.entity-card__link {
  display: grid;
  gap: 0;
  height: 100%;
}

.entity-card__media {
  padding: 0.85rem 0.85rem 0;
}

.entity-card__art {
  min-height: 8rem;
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(var(--accent-rgb), 0.62), transparent 26%),
    linear-gradient(180deg, #d7d2d2 0%, #c8c2c2 45%, #9b9494 100%);
  display: grid;
  place-items: end start;
  padding: 0.85rem;
}

.entity-card__art span {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entity-card__body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.entity-card__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.entity-card__badge {
  display: inline-flex;
  justify-self: start;
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.24);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entity-card__body p {
  font-size: 0.88rem;
}

.entity-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.entity-card__cta svg {
  width: 1rem;
  height: 1rem;
}

.section--split,
.section--detail {
  display: grid;
  gap: 1.2rem;
}

.about-panel,
.about-page__grid,
.detail-hero {
  display: grid;
  gap: 1rem;
}

.about-page {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 0;
}

.about-page__hero,
.about-page__content {
  width: 100%;
}

.about-page__hero {
  overflow: clip;
}

.about-panel__body,
.about-page__text {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.about-page__cards,
.about-page__section-body,
.about-page__publications,
.editorial-stack,
.editorial-grid {
  display: grid;
  gap: 1rem;
}

.about-page__cards {
  gap: 0;
}

.about-panel__body {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-card);
}

.about-panel__art {
  min-height: 24rem;
  background: #b1acac;
}

.about-page__panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(29rem, 118vw, 42rem);
  border-radius: 0;
  box-shadow: none;
  background: #d7ddea;
  aspect-ratio: 395 / 466;
}

.about-page__art {
  position: absolute;
  inset: 0;
}

.about-page__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-page__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  align-content: end;
  justify-items: start;
  gap: 0.75rem;
  padding: clamp(1.7rem, 6vw, 2.8rem) clamp(2rem, 8vw, 3.4rem) clamp(1.8rem, 7vw, 2.6rem);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.57) 100%);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.about-page__overlay-copy {
  display: grid;
  gap: 0.75rem;
}

.about-page__overlay h1 {
  margin: 0;
  font-size: clamp(2.75rem, 8.3vw, 4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.about-page__overlay p:last-child {
  max-width: 59rem;
  margin: 0;
  font-size: clamp(1.02rem, 3.9vw, 2rem);
  font-weight: 300;
  line-height: 1.14;
}

.about-page__content {
  width: min(1230px, calc(100vw - 3.5rem));
  margin-inline: auto;
  padding-top: 0.25rem;
}

.about-page__card {
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-figma-card);
  overflow: hidden;
}

.about-page__section {
  padding: 1.35rem 1.45rem 1.6rem;
  background: transparent;
}

.about-page__section + .about-page__section {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.about-page__section:first-child {
  padding-top: 1.45rem;
}

.about-page__section:last-child {
  padding-bottom: 1.75rem;
}

.about-page__section-title {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.54);
}

.about-page__section-body {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.8vw, 1.1rem);
  line-height: 1.72;
}

.about-page__section-body p,
.about-page__section-list li {
  margin: 0;
}

.about-page__section-intro {
  color: var(--ink);
  font-weight: 600;
}

.about-page__section-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.3rem;
}

.about-page__section-list li {
  padding-left: 0.15rem;
}

.about-page__section-list strong,
.about-page__section-list span {
  display: block;
}

.about-page__section-list strong {
  color: var(--ink);
  font-weight: 600;
}

.about-page__publications {
  gap: 1rem;
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.about-page__publications-heading {
  display: grid;
  gap: 0.15rem;
}

.about-page__publications-eyebrow,
.editorial-card__eyebrow {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-page__publications-heading h2 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.editorial-card {
  min-height: 0;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.editorial-card__link {
  display: grid;
  align-items: start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.2rem 1.15rem 1.15rem;
}

.editorial-card__body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 0;
  padding: 0;
}

.editorial-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.35rem;
}

.editorial-card__type {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.editorial-card__body h3 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 4.1vw, 1.6rem);
  font-weight: 500;
  line-height: 1.24;
}

.editorial-card__support {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.editorial-grid--compact {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.editorial-card--compact {
  min-height: 0;
  border-radius: 1.4rem;
}

.editorial-card--compact .editorial-card__body {
  gap: 0.7rem;
  padding: 0;
}

.editorial-card--compact .editorial-card__eyebrow {
  font-size: 0.78rem;
  line-height: 1.1;
}

.editorial-card--compact .editorial-card__body h3 {
  max-width: none;
  font-size: clamp(1.02rem, 3.4vw, 1.32rem);
  line-height: 1.24;
}

.editorial-card--compact .editorial-card__support {
  font-size: 0.88rem;
}

.treatments-page {
  display: grid;
  gap: 1.25rem;
  padding-top: 0;
}

.treatments-page__hero {
  overflow: clip;
}

.treatments-page__panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 12.875rem;
  aspect-ratio: 392 / 206;
  background: #d7ddea;
}

.treatments-page__art {
  position: absolute;
  inset: 0;
  display: block;
}

.treatments-page__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.treatments-page__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  align-content: end;
  padding: 1.15rem 1.35rem 0.95rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.57) 100%);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.treatments-page__overlay-copy {
  display: grid;
  gap: 0.15rem;
  align-content: end;
}

.treatments-page__overlay h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 8vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.treatments-page__category {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.treatments-page__content {
  display: grid;
  gap: 1.25rem;
  width: min(1230px, calc(100vw - 3.5rem));
  margin-inline: auto;
}

.list-intro,
.detail-header {
  display: grid;
  gap: 0.8rem;
}

.treatments-layout {
  display: grid;
  gap: 1.25rem;
}

.treatments-intro,
.treatments-filters {
  padding: 1.75rem;
  border-radius: 2.2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 44px rgba(11, 9, 8, 0.08);
}

.treatments-intro {
  align-content: start;
  justify-items: start;
  gap: 0.4rem;
  max-width: none;
  width: 100%;
  min-height: auto;
}

.treatments-intro h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.treatments-filters {
  gap: 0.4rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.filters {
  display: grid;
  gap: 1rem;
}

.field,
.field-group {
  display: grid;
  gap: 0.55rem;
}

.field span,
.field-group legend {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 1.15rem 1.35rem;
  outline: 0;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.field--search input {
  max-width: none;
  min-height: 4.2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.filter-pills,
.form-grid,
.contact-block,
.contact-card__info {
  display: grid;
  gap: 0.85rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
}

.filter-pill,
.choice-pill,
.choice-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 95px;
  background: #fff;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.filter-pill--active {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(var(--accent-rgb), 0.16);
}

.treatment-catalog {
  display: grid;
  gap: 1.3rem;
}

.treatments-cta {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 0.25rem 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.treatments-cta__note {
  max-width: 48rem;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.treatments-cta__actions .button {
  min-height: 2.9rem;
  padding: 0.58rem 1.8rem;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.treatment-list-card {
  border-radius: 25px;
  background: #fff;
  border: 0;
  box-shadow: var(--shadow-figma-card);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.treatment-list-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(11, 9, 8, 0.1);
}

.treatment-list-card--featured {
  border-color: transparent;
}

.treatment-list-card__link {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 21.5rem;
  padding: 0.65rem;
}

.treatment-list-card__media {
  position: absolute;
  inset: 0;
}

.treatment-list-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 8%, rgba(240, 240, 240, 0.02) 18%, rgba(0, 0, 0, 0.42) 78%);
}

.treatment-list-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.treatment-list-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 0.25rem;
  min-height: 100%;
  width: 100%;
}

.treatment-list-card__eyebrow {
  color: #000;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.treatment-list-card__body h3 {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.treatment-list-card__body p {
  display: none;
}

.treatment-list-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.treatment-list-card__cta svg {
  width: 0.72rem;
  height: 0.72rem;
}

.treatment-list-card--with-image .treatment-list-card__body {
  padding: 0.25rem;
}

.treatment-list-card--with-image .treatment-list-card__body h3,
.treatment-list-card--with-image .treatment-list-card__cta {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
}

.field-group {
  border: 0;
  padding: 0;
  margin: 0;
}

.field-group input {
  margin: 0;
}

.choice-pill input,
.choice-inline input {
  accent-color: #111111;
}

.contact-block {
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.contact-card {
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.contact-card--survey {
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.contact-block--with-map .contact-card--survey {
  padding: 1.35rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-card__headline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
}

.contact-card__headline svg {
  width: 1rem;
  height: 1rem;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.18);
  filter: blur(6px);
}

.contact-card__info p,
.section-heading {
  position: relative;
  z-index: 1;
}

.contact-card__info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-card__info--survey {
  gap: 0.2rem;
}

.contact-card__info--survey p {
  font-size: 0.95rem;
}

.contact-card__detail {
  padding-left: 1.55rem;
}

.contact-block--with-map .contact-card__detail {
  padding-left: 0;
}

.contact-block--with-map .contact-card__button {
  margin-left: 0;
}

.contact-card__button,
.contact-card__actions .button,
.contact-map__button,
.contact-form__submit--survey {
  justify-self: start;
  width: auto;
  min-width: max-content;
  max-width: 100%;
  min-height: 3.2rem;
  border-radius: 999px;
  padding-inline: 2rem;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: var(--shadow-soft);
}

.contact-card__button {
  margin: 0.2rem 0 0.45rem 1.55rem;
}

.contact-card__intro {
  max-width: 42rem;
  margin-top: 0.5rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-map {
  display: grid;
  gap: 1rem;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 1.2rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-map__header {
  display: grid;
  gap: 0.35rem;
}

.contact-map__header h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  line-height: 1.05;
}

.contact-map__address {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-map__frame {
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  min-height: 18rem;
  background: rgba(247, 244, 239, 0.95);
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}

.contact-map__button {
  justify-self: start;
  min-height: 3rem;
  padding-inline: 1.35rem;
}

.contact-card__info span svg,
.section-heading__icon svg {
  width: 1rem;
  height: 1rem;
}

.section-heading__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.16);
}

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

.contact-form--survey {
  justify-items: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form__panel {
  width: min(100%, 42rem);
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-form__title {
  font-size: clamp(1.55rem, 3.6vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

.field--survey {
  gap: 0.3rem;
  position: relative;
}

.field--survey span,
.field-group--survey legend {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.field--survey input,
.field--survey textarea {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 1.35rem;
  min-height: 3.5rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.field--survey textarea {
  min-height: 7rem;
  padding-top: 1rem;
}

[data-concern-other] textarea {
  min-height: 8.75rem;
}

[data-concern-other][hidden] {
  display: none !important;
}

.form-select__trigger {
  width: 100%;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.form-select__trigger::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  transition: transform 180ms ease;
}

.form-select-field--open .form-select__trigger::after {
  transform: rotate(225deg) translateY(-0.02rem);
}

.form-select__label {
  color: var(--ink-muted);
}

.form-select__label[data-selected="true"] {
  color: var(--ink);
}

.form-select__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-panel);
  max-height: 18rem;
  overflow-y: auto;
}

.form-select__menu[hidden] {
  display: none;
}

.form-select__option {
  width: 100%;
  text-align: left;
}

.field-group--survey {
  gap: 0.45rem;
}

.survey-choice-row,
.survey-check-grid {
  display: grid;
  gap: 0.3rem 1rem;
}

.survey-check-grid {
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.survey-check-grid--compact {
  grid-template-columns: repeat(1, minmax(0, max-content));
}

.choice-inline--survey {
  gap: 0.45rem;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  font-size: 0.95rem;
}

.choice-inline--survey input {
  width: 1rem;
  height: 1rem;
}

.contact-form__hint,
.contact-form__note--survey {
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form__hint,
.contact-form__note--survey {
  font-style: italic;
}

.contact-form__submit--survey {
  justify-self: center;
  align-self: start;
  margin-top: 0.45rem;
}

.contact-form__submit {
  justify-self: start;
}

.contact-form__note {
  font-size: 0.8rem;
}

.detail-hero__media {
  min-height: 24rem;
  display: flex;
  align-items: end;
}

.detail-hero__body {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
}

.section--detail-treatment {
  gap: 2.4rem;
}

.detail-treatment__intro {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.detail-treatment__intro > .detail-header--treatment,
.detail-treatment__intro > .detail-hero--treatment {
  width: 100%;
  margin: 0;
}

.section--detail-treatment > .before-after-block,
.section--detail-treatment > .section-heading,
.section--detail-treatment > .treatment-catalog {
  width: var(--shell);
  margin-inline: auto;
}

.detail-header--treatment {
  justify-items: start;
  text-align: left;
  gap: 0.35rem;
}

.detail-header__eyebrow--treatment {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.detail-header--treatment h1 {
  margin: 0;
  max-width: none;
  text-wrap: pretty;
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 9vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.detail-hero--treatment {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  gap: 1.5rem;
}

.detail-hero__body--treatment {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 1rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 1.25rem;
  text-align: left;
}

.detail-hero__body--treatment::after {
  content: none;
}

.detail-hero__editorial {
  display: grid;
  gap: 1.1rem;
  align-items: start;
}

.detail-hero__editorial-feature {
  position: relative;
  display: grid;
  align-content: start;
  padding-bottom: 0.35rem;
}

.detail-hero__editorial-copy {
  min-width: 0;
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.detail-hero__editorial-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.detail-hero__section-content {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.detail-hero__editorial-section:last-of-type .detail-hero__section-content {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-hero__story-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.detail-hero__story-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.64);
  white-space: nowrap;
}

.detail-hero__story-rule {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.6), rgba(17, 17, 17, 0.08));
}

.detail-hero__section-index {
  padding-top: 0.15rem;
  font-family: var(--font-body);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(var(--accent-rgb), 0.95);
}

.detail-hero__section-title--treatment {
  margin: 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: 1.65rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
}

.detail-hero__section-text--treatment {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.detail-hero__editorial-media {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  aspect-ratio: 11 / 13;
  overflow: hidden;
  border-radius: 1.45rem;
  background: var(--surface-alt);
  box-shadow: var(--shadow-panel);
}

.detail-hero__editorial-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-hero__feature-card {
  position: relative;
  z-index: 1;
  margin: -1.45rem 1rem 0;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 44px rgba(11, 9, 8, 0.12);
}

.detail-hero__feature-card--standalone {
  margin: 0;
}

.detail-hero__feature-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.detail-hero__feature-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.detail-hero__consultation {
  display: grid;
  align-self: start;
  justify-items: start;
  gap: 0.55rem;
  width: 100%;
  max-width: 30rem;
  padding: 0.8rem 1rem 0.85rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 30px rgba(11, 9, 8, 0.08);
}

.detail-hero__consultation-note {
  margin: 0;
  max-width: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.2;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.detail-hero__cta-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.detail-hero__cta-row .button {
  width: min(100%, 15rem);
  max-width: 100%;
  min-height: 2.65rem;
  min-width: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.detail-hero__section-text {
  color: var(--ink-soft);
}

.before-after-block {
  width: min(100%, 70rem);
  margin: 0 auto;
}

.before-after-carousel {
  position: relative;
  --carousel-control-space: clamp(4.4rem, 8vw, 6.2rem);
  --carousel-slide-y: 0.85rem;
  --carousel-preview-shift: clamp(18%, 12vw, 24%);
  outline: none;
}

.before-after-carousel--single {
  --carousel-control-space: 0rem;
}

.before-after-carousel__stage {
  position: relative;
  min-height: clamp(22rem, 86vw, 34rem);
  overflow: hidden;
  background: transparent;
}

.before-after-carousel__slide {
  position: absolute;
  inset: var(--carousel-slide-y) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--carousel-control-space);
  z-index: 1;
  background: transparent;
  opacity: 0;
  transform: translateX(0) scale(0.8);
  filter: blur(8px);
  transition:
    transform 360ms ease,
    opacity 360ms ease,
    filter 360ms ease;
  pointer-events: none;
}

.before-after-carousel__slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
  pointer-events: auto;
}

.before-after-carousel__slide.is-prev {
  z-index: 2;
  opacity: 0.46;
  transform: translateX(calc(var(--carousel-preview-shift) * -1)) scale(0.88);
  filter: blur(2.8px) saturate(0.84);
}

.before-after-carousel__slide.is-next {
  z-index: 2;
  opacity: 0.46;
  transform: translateX(var(--carousel-preview-shift)) scale(0.88);
  filter: blur(2.8px) saturate(0.84);
}

.before-after-carousel__slide.is-hidden {
  opacity: 0;
  transform: translateX(0) scale(0.76);
}

.before-after-carousel__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
}

.before-after-carousel__zoom {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.before-after-carousel__zoom:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.34);
  outline-offset: 4px;
}

.before-after-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.before-after-carousel__button:hover,
.before-after-carousel__button:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
}

.before-after-carousel__button:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.34);
  outline-offset: 3px;
}

.before-after-carousel__button--prev {
  left: 0;
}

.before-after-carousel__button--next {
  right: 0;
}

.before-after-carousel__button svg {
  width: 1.15rem;
  height: 1.15rem;
}

.before-after-carousel__button[hidden] {
  display: none;
}

.before-after-viewer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(8, 8, 8, 0.84);
  backdrop-filter: blur(10px);
}

.before-after-viewer[hidden] {
  display: none;
}

.before-after-viewer__frame {
  display: flex;
  width: min(100%, 74rem);
  max-height: calc(100vh - clamp(4rem, 10vw, 6rem));
  align-items: center;
  justify-content: center;
}

.before-after-viewer__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - clamp(4rem, 10vw, 6rem));
  height: auto;
  object-fit: contain;
  object-position: center center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.before-after-viewer__close {
  position: absolute;
  top: clamp(0.9rem, 3vw, 1.4rem);
  right: clamp(0.9rem, 3vw, 1.4rem);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.48);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.before-after-viewer__close:hover,
.before-after-viewer__close:focus-visible {
  background: rgba(18, 18, 18, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.before-after-viewer__close:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.42);
  outline-offset: 3px;
}

.before-after-viewer__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (max-width: 719px) {
  .detail-hero__body--treatment {
    padding: 0.95rem;
    gap: 1.15rem;
    border-radius: 0;
  }

  .detail-hero__editorial {
    gap: 1rem;
  }

  .detail-hero__editorial-media {
    aspect-ratio: 11 / 13;
    border-radius: 1.25rem;
  }

  .detail-hero__feature-card {
    margin: -1.25rem 0.85rem 0;
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .detail-hero__editorial-copy {
    gap: 1rem;
  }

  .detail-header--treatment h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .detail-hero__editorial-section {
    gap: 0.65rem;
  }

  .detail-hero__section-index {
    font-size: 1.2rem;
  }

  .detail-hero__section-title--treatment {
    font-size: 1.45rem;
  }

  .detail-hero__section-text--treatment {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .detail-hero__consultation-note {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .detail-hero__cta-row .button {
    width: min(100%, 14rem);
    min-height: 2.55rem;
    font-size: 0.8rem;
  }

  .before-after-carousel {
    --carousel-control-space: clamp(2.45rem, 8vw, 3.05rem);
    --carousel-slide-y: 0.4rem;
    --carousel-preview-shift: 22%;
  }

  .before-after-carousel__stage {
    min-height: clamp(21rem, 100vw, 30rem);
  }

  .before-after-carousel__slide.is-prev {
    transform: translateX(calc(var(--carousel-preview-shift) * -1)) scale(0.8);
  }

  .before-after-carousel__slide.is-next {
    transform: translateX(var(--carousel-preview-shift)) scale(0.8);
  }

  .before-after-carousel__button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .before-after-carousel__button--prev {
    left: 0.15rem;
  }

  .before-after-carousel__button--next {
    right: 0.15rem;
  }

  .before-after-viewer {
    padding: 0.85rem;
  }

  .before-after-viewer__frame {
    width: 100%;
    max-height: calc(100vh - 3.5rem);
  }

  .before-after-viewer__image {
    max-height: calc(100vh - 3.5rem);
  }

  .before-after-viewer__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.7rem;
    height: 2.7rem;
  }
}

.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  padding: 2.8rem 0 2.2rem;
  text-align: center;
}

.site-footer__brand,
.site-footer__column,
.site-footer__legal {
  display: grid;
  gap: 0.7rem;
}

.site-footer__brand {
  justify-items: center;
}

.site-footer__copy {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__grid {
  display: grid;
  gap: 1.6rem;
}

.site-footer__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.site-footer__title--sub {
  margin-top: 0.2rem;
}

.site-footer__links,
.site-footer__contact {
  display: grid;
  gap: 0.45rem;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__contact span,
.site-footer__text,
.site-footer__legal p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer__text {
  color: #fff;
}

.site-footer__legal {
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__legal span {
  padding: 0 0.35rem;
}

.empty-state {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

@media (min-width: 720px) {
  .card-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid--compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-block,
  .hero__layout,
  .about-page__grid,
  .detail-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero--treatment {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__layout--full {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .hero__layout--full > .hero__panel--full {
    grid-column: 1 / -1;
  }

.contact-block--survey-layout {
  grid-template-columns: minmax(0, 1fr);
}

  .about-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .home-feature-panel {
    min-height: 0;
  }

  .treatments-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
  }

  .treatments-page__panel {
    min-height: 0;
    aspect-ratio: 1294 / 585;
  }

  .treatments-page__overlay {
    padding: 1.65rem 2rem 1.45rem;
  }

  .treatments-page__overlay-copy {
    width: min(1230px, calc(100vw - 3.5rem));
    margin-inline: auto;
  }

  .treatments-page__overlay h1 {
    font-size: clamp(2.8rem, 5vw, 3.5rem);
  }

  .treatments-page__category {
    font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  }

  .treatment-catalog {
    grid-column: 1 / -1;
  }

  .treatment-list-card__link {
    min-height: 21rem;
    padding: 1rem;
  }

  .filter-pills {
    gap: 0.9rem 1.05rem;
  }

  .filter-pill {
    min-height: 2.55rem;
    padding: 0.45rem 1.35rem;
    font-size: 1.12rem;
  }

  .treatment-list-card__eyebrow {
    font-size: 0.92rem;
  }

  .treatment-list-card__body h3 {
    font-size: 1.6rem;
  }

  .treatment-list-card__cta {
    font-size: 0.92rem;
  }

  .treatment-list-card__cta svg {
    width: 0.92rem;
    height: 0.92rem;
  }

  .contact-block--compact .contact-form {
    min-height: 100%;
  }

  .hero__panel {
    min-height: 35rem;
  }

  .hero__panel--full {
    min-height: 0;
    width: 100%;
    max-width: none;
    min-height: clamp(25rem, 58vw, 34rem);
    aspect-ratio: auto;
    margin-inline: 0;
  }

  .hero__panel--full .hero__photo {
    object-position: center 18%;
  }

  .hero__panel--full .hero__video {
    object-position: center center;
  }

  .about-page__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .about-page__panel {
    min-height: 0;
    aspect-ratio: 1283 / 669;
  }

  .about-page__overlay {
    padding: 2.35rem 2.8rem 2.25rem;
  }

  .about-page__overlay-copy {
    width: min(1230px, calc(100vw - 3.5rem));
    margin-inline: auto;
  }

  .about-page__section {
    padding: 1.45rem 1.55rem 1.75rem;
  }

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

  .editorial-card__body {
    padding: 0;
  }

  .editorial-card__link {
    padding: 1.25rem 1.3rem 1.2rem;
  }

  .editorial-card--compact {
    min-height: 0;
  }

  .hero__overlay {
    min-height: 15rem;
    padding: 2rem 2rem 1.75rem;
  }

  .hero__overlay--full {
    padding: 2rem 2.1rem 2rem;
    grid-template-columns: minmax(0, 26rem);
  }

  .hero__overlay--actions-only {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    justify-items: center;
    padding: 1.35rem 0 1.55rem;
  }

  .hero__overlay--video {
    justify-items: stretch;
    padding: 0;
  }

  .hero__video-content {
    width: min(100%, 28rem);
    gap: 0.95rem;
  }

  .hero__overlay--video .hero__video-title {
    max-width: 10.5ch;
    font-size: clamp(1.9rem, 4.6vw, 2.45rem);
  }

  .hero__video-text {
    max-width: 27rem;
    font-size: clamp(0.96rem, 1.7vw, 1.04rem);
    line-height: 1.5;
  }

  .hero__overlay--full h1 {
    max-width: 10ch;
  }

  .hero__actions--overlay {
    width: min(100%, 31rem);
  }

  .hero__actions--hero-only {
    width: min(100%, 27rem);
  }

  .hero__overlay--video .hero__overlay-shell {
    padding-block: 1.55rem;
  }

  .survey-choice-row {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .survey-check-grid {
    grid-template-columns: repeat(3, minmax(0, max-content));
  }

  .survey-check-grid--compact {
    grid-template-columns: repeat(3, minmax(0, max-content));
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .site-footer__column--wide {
    padding-inline: 1rem;
  }
}

@media (min-width: 1024px) {
  .shell--wide {
    width: min(1230px, calc(100vw - 3.25rem));
  }

  .about-page__overlay {
    gap: 1rem;
    padding: 2.4rem clamp(4rem, 8.5vw, 6.8rem) 2.85rem;
  }

  .about-page__overlay h1 {
    font-size: clamp(3.25rem, 5vw, 4rem);
  }

  .about-page__overlay p:last-child {
    max-width: 58rem;
    font-size: clamp(1.7rem, 2.6vw, 2rem);
    font-weight: 300;
  }

  .about-page__content {
    width: min(1230px, calc(100vw - 3.25rem));
    padding-top: 0.5rem;
  }

  .about-page__section-body {
    font-size: 1.1rem;
  }

  .editorial-card__body {
    padding: 1.1rem 1.1rem 2rem;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .site-nav .nav-item {
    display: flex;
    align-items: center;
  }

  .site-nav .nav-link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

  .site-nav .nav-link--button {
    width: auto;
  }

  .site-header__bar {
    gap: 0.85rem;
    padding: 0.28rem 0;
  }

  .brand-mark--image {
    width: auto;
    height: 7.4rem;
  }

  .brand-mark--image .brand-mark__image {
    width: auto;
    height: 100%;
  }

  .header-search--desktop {
    display: flex;
    flex: 0 1 25rem;
    min-width: 21rem;
    max-width: 26rem;
    min-height: 2.15rem;
    margin: 0;
    padding: 0.08rem 0.32rem;
  }

  .header-search__input {
    font-size: 0.9rem;
  }

  .icon-chip svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .icon-chip--static {
    width: 1.65rem;
    height: 1.65rem;
  }

  .site-header__search-toggle,
  .header-search--mobile {
    display: none;
  }

  .site-header__menu-toggle {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(34rem, 1.14fr);
    align-items: stretch;
    gap: 2.2rem;
  }

  .hero__layout--full {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }

  .hero__copy {
    padding-right: 1rem;
    align-content: center;
  }

  .hero__panel {
    min-height: 35rem;
  }

  .hero__panel--full {
    width: 100%;
    max-width: none;
    min-height: clamp(31rem, 43vw, 39rem);
    aspect-ratio: auto;
    margin-inline: 0;
    justify-self: stretch;
  }

  .hero__panel--full .hero__photo {
    object-position: center center;
    transform: scale(1);
  }

  .hero__panel--full .hero__video {
    object-position: center center;
  }

  .hero__overlay {
    min-height: 15.5rem;
    padding: 2.2rem 2.4rem 2rem;
  }

  .hero__overlay--full {
    align-content: center;
    justify-items: start;
    grid-template-columns: minmax(16rem, 21rem);
    gap: 0.7rem;
    padding: 1.8rem 2.2rem;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.54) 24%, rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.03) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.58) 62%, rgba(0, 0, 0, 0.88) 100%);
  }

  .hero__overlay--actions-only {
    align-content: end;
    justify-items: start;
    grid-template-columns: minmax(10.75rem, 12rem);
    padding: 1.5rem 0 1.7rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.48) 100%);
  }

  .hero__overlay--video {
    grid-template-columns: minmax(0, 1fr);
    padding: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.36) 76%, rgba(0, 0, 0, 0.66) 100%);
  }

  .hero__video-content {
    width: min(100%, 33rem);
    gap: 1.05rem;
  }

  .hero__overlay--video .hero__video-title {
    max-width: 11ch;
    font-size: clamp(2.2rem, 2.7vw, 3rem);
    line-height: 0.98;
  }

  .hero__video-text {
    max-width: 29rem;
    font-size: clamp(0.96rem, 0.96vw, 1.03rem);
    line-height: 1.55;
  }

  .hero__overlay--full .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  .hero__overlay--full h1 {
    max-width: 7.6ch;
    font-size: clamp(2.35rem, 3vw, 3.3rem);
    line-height: 0.96;
  }

  .hero__text--overlay {
    max-width: 20rem;
    font-size: clamp(0.88rem, 0.88vw, 0.97rem);
    line-height: 1.52;
  }

  .hero__actions--overlay {
    width: min(100%, 20rem);
    max-width: 20rem;
    display: grid;
    gap: 0.7rem;
  }

  .hero__actions--hero-only {
    width: min(100%, 12rem);
    max-width: 12rem;
  }

  .hero__actions--single-cta {
    width: auto;
    max-width: none;
  }

  .hero__actions--overlay .button {
    width: fit-content;
    min-width: 0;
    min-height: 2.9rem;
    padding-inline: 1.65rem;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    letter-spacing: 0;
    box-shadow: var(--shadow-soft);
  }

  .hero .hero__actions--single-cta .button {
    min-width: 0;
    padding-inline: 1.6rem;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    letter-spacing: 0;
  }

  .hero__overlay h2 {
    max-width: 22rem;
  }

  .hero .hero__actions .button {
    min-width: 0;
  }

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

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

  .editorial-grid--compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
  }

  .editorial-card--compact {
    min-height: 0;
  }

  .editorial-card--compact .editorial-card__body h3 {
    font-size: clamp(1.08rem, 1.2vw, 1.38rem);
  }

  .editorial-card__support {
    font-size: 1rem;
  }

  .showcase-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(10rem, 1fr);
    overflow: visible;
  }

  .section {
    padding-top: 3.5rem;
  }

  .treatments-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem 1.8rem;
  }

  .contact-block--survey-layout {
    grid-template-columns: minmax(18rem, 24rem) minmax(0, 44rem);
    justify-content: center;
    justify-items: stretch;
    align-items: start;
    gap: 2.5rem;
  }

  .contact-block--with-map.contact-block--survey-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(16rem, 1fr) minmax(16rem, 1fr);
    align-items: stretch;
    gap: 1.5rem;
  }

  .contact-block--with-map.contact-block--survey-layout > .contact-card--survey {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    height: 100%;
  }

  .contact-block--with-map.contact-block--survey-layout > .contact-form--survey {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    height: 100%;
  }

  .contact-block--with-map.contact-block--survey-layout > .contact-map {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    height: 100%;
  }

  .contact-block--with-map .contact-form__panel {
    width: 100%;
    height: 100%;
    align-content: start;
  }

  .contact-block--with-map .contact-map__frame,
  .contact-block--with-map .contact-map__frame iframe {
    min-height: 100%;
  }

  .contact-block--with-map .contact-card--survey,
  .contact-block--with-map .contact-map {
    align-content: start;
  }

  .treatments-intro {
    max-width: none;
    width: 100%;
    padding: 2rem 2.1rem;
  }

  .treatments-filters {
    align-self: start;
    padding: 0;
  }

  .treatments-cta {
    padding-top: 0.4rem;
  }

  .treatment-catalog {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 1.5rem;
  }

  .treatment-list-card__link,
  .treatment-list-card--featured .treatment-list-card__link {
    min-height: 32rem;
    padding: 1rem;
  }

  .treatment-list-card__body,
  .treatment-list-card--featured .treatment-list-card__body {
    padding: 0;
  }

  .filter-pill {
    min-height: 3.6rem;
    padding: 0.85rem 1.8rem;
    font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  }

  .treatment-list-card__eyebrow {
    font-size: clamp(0.95rem, 1vw, 1.2rem);
    font-weight: 600;
  }

  .treatment-list-card__body h3 {
    font-size: clamp(1.6rem, 2vw, 2rem);
  }

  .treatment-list-card__cta {
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  }

  .treatment-list-card__cta svg {
    width: clamp(0.95rem, 1.2vw, 1.2rem);
    height: clamp(0.95rem, 1.2vw, 1.2rem);
  }

  .treatments-cta__actions .button {
    min-height: 2.9rem;
    padding-inline: 1.8rem;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  }

  .section--detail-treatment {
    gap: 2.4rem;
  }

  .detail-treatment__intro {
    width: var(--shell);
    gap: 1.4rem;
  }

  .detail-hero--treatment {
    max-width: none;
    gap: 0;
  }

  .detail-header__eyebrow--treatment {
    font-size: 0.74rem;
  }

  .detail-header--treatment h1 {
    font-size: clamp(2.75rem, 4vw, 3.85rem);
    line-height: 0.95;
  }

  .detail-hero__body--treatment {
    padding: clamp(1.25rem, 1.6vw, 1.7rem);
    gap: 0;
  }

  .detail-hero__editorial--with-media {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.9fr);
    gap: clamp(1.6rem, 2.2vw, 2.4rem);
    align-items: stretch;
  }

  .detail-hero__editorial-feature {
    padding-bottom: 4.8rem;
  }

  .detail-hero__editorial-media {
    aspect-ratio: 11 / 13.5;
    border-radius: 1.65rem;
  }

  .detail-hero__feature-card {
    margin: -5.25rem 1.4rem 0 auto;
    max-width: min(26rem, calc(100% - 2.8rem));
    padding: 1.25rem 1.3rem 1.35rem;
  }

  .detail-hero__feature-eyebrow,
  .detail-hero__story-label {
    font-size: 0.74rem;
  }

  .detail-hero__feature-text {
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .detail-hero__editorial-copy {
    align-content: stretch;
    min-height: 100%;
    min-height: 32.6875rem;
    gap: 1.35rem;
    padding: 0.45rem 0 0.2rem;
  }

  .detail-hero__story-head {
    gap: 1.2rem;
  }

  .detail-hero__editorial-section {
    gap: 1rem;
  }

  .detail-hero__section-index {
    font-size: 1.8rem;
    padding-top: 0.25rem;
  }

  .detail-hero__section-content {
    gap: 0.8rem;
    padding-bottom: 1.35rem;
  }

  .detail-hero__section-title--treatment {
    font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  }

  .detail-hero__section-text--treatment {
    font-size: 1.02rem;
    line-height: 1.88;
  }

  .detail-hero__consultation {
    align-self: start;
    margin-top: 0;
    gap: 0.4rem;
    max-width: 25rem;
    padding: 0.78rem 1rem 0.72rem;
  }

  .detail-hero__consultation-note {
    max-width: 22rem;
    font-size: clamp(1.02rem, 1.25vw, 1.24rem);
    line-height: 1.12;
  }

  .detail-hero__cta-row .button {
    width: min(100%, 14.5rem);
    min-height: 2.55rem;
    padding: 0.58rem 1rem;
    font-size: 0.86rem;
  }

  .contact-form__panel {
    width: min(100%, 44rem);
    padding: 1.3rem 1.4rem 1rem;
  }

  .contact-card--survey,
  .contact-form--survey {
    width: 100%;
  }

  .contact-card--survey {
    justify-self: end;
  }

  .contact-card__intro {
    text-align: left;
  }

  .contact-map {
    padding: 1.25rem;
  }

  .contact-map__frame,
  .contact-map__frame iframe {
    min-height: 19rem;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  body[data-page="tratamiento"] .detail-treatment__intro {
    width: var(--shell);
    gap: 1.15rem;
  }

  body[data-page="tratamiento"] .detail-header--treatment h1 {
    font-size: clamp(2.45rem, 4.8vw, 3.1rem);
    line-height: 0.96;
  }

  body[data-page="tratamiento"] .detail-hero__body--treatment {
    padding: 1.1rem;
    gap: 0;
  }

  body[data-page="tratamiento"] .detail-hero__editorial--with-media {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    gap: 1.25rem;
    align-items: stretch;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-feature {
    padding-bottom: 4rem;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-media {
    aspect-ratio: 11 / 13.2;
  }

  body[data-page="tratamiento"] .detail-hero__feature-card {
    margin: -4.35rem 1rem 0 auto;
    max-width: calc(100% - 2rem);
    padding: 1.1rem 1.1rem 1.2rem;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-copy {
    gap: 1.1rem;
  }

  body[data-page="tratamiento"] .detail-hero__section-index {
    font-size: 1.55rem;
  }

  body[data-page="tratamiento"] .detail-hero__section-title--treatment {
    font-size: 1.7rem;
  }

  body[data-page="tratamiento"] .detail-hero__section-text--treatment {
    font-size: 0.92rem;
    line-height: 1.78;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-section {
    gap: 1rem;
  }

  body[data-page="tratamiento"] .detail-hero__consultation-note {
    max-width: none;
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.16;
  }

  body[data-page="tratamiento"] .detail-hero__cta-row .button {
    width: min(100%, 14rem);
    min-height: 2.6rem;
    font-size: 0.82rem;
  }
}

@media (min-width: 720px) and (max-width: 899px) {
  body[data-page="tratamiento"] .detail-treatment__intro {
    width: var(--shell);
    gap: 1rem;
  }

  body[data-page="tratamiento"] .detail-header--treatment h1 {
    font-size: clamp(2.25rem, 5vw, 2.8rem);
    line-height: 0.98;
  }

  body[data-page="tratamiento"] .detail-hero__body--treatment {
    padding: 1rem;
    gap: 1.2rem;
  }

  body[data-page="tratamiento"] .detail-hero__editorial {
    gap: 1.15rem;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-media {
    aspect-ratio: 11 / 12;
  }

  body[data-page="tratamiento"] .detail-hero__feature-card {
    margin: -1.6rem 1.2rem 0;
    padding: 1rem;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-copy {
    gap: 1.1rem;
  }

  body[data-page="tratamiento"] .detail-hero__editorial-section {
    gap: 0.75rem;
  }

  body[data-page="tratamiento"] .detail-hero__section-index {
    font-size: 1.3rem;
  }

  body[data-page="tratamiento"] .detail-hero__section-title--treatment {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  body[data-page="tratamiento"] .detail-hero__section-text--treatment {
    font-size: 0.95rem;
    line-height: 1.78;
  }

  body[data-page="tratamiento"] .detail-hero__consultation-note {
    max-width: none;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  body[data-page="tratamiento"] .detail-hero__cta-row .button {
    width: min(100%, 15rem);
    min-height: 2.7rem;
    font-size: 0.86rem;
  }
}
