@import url("brand-tokens.css");

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-latin-w400-w500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 500;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-latin-w300-w500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--wob-black);
  background: var(--wob-mist);
  font: 300 16px/1.65 var(--wob-font-ui);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--wob-font-ui);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--wob-font-display);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  letter-spacing: -0.045em;
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.05;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

button,
summary,
input[type="range"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--wob-white);
  outline-offset: 4px;
}

.page-surface :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--wob-black);
}

.dark-panel :focus-visible,
.site-footer :focus-visible,
.site-header :focus-visible,
.page-hero :focus-visible {
  outline-color: var(--wob-white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--wob-black);
  background: var(--wob-white);
  border-radius: 4px;
  font-weight: 500;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wob-container {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--wob-grey-800);
  font-size: 18px;
}

.dark-panel .section-intro,
.page-hero .section-intro {
  color: var(--wob-grey-300);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 36px;
}

.wob-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font: var(--wob-button);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.wob-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.wob-button-white {
  color: var(--wob-black);
  background: var(--wob-white);
  border-color: var(--wob-white);
}

.wob-button-white:hover {
  color: var(--wob-white);
  background: transparent;
}

.wob-button-dark:hover {
  color: var(--wob-black);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--wob-white);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--wob-grey-800);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  width: 108px;
  min-height: 48px;
  align-items: center;
}

.brand-link img {
  width: 108px;
  filter: invert(1);
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
}

.primary-nav a,
.nav-dropdown__trigger {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--wob-grey-300);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.nav-dropdown__trigger:hover,
.nav-dropdown__trigger[aria-current="page"] {
  color: var(--wob-white);
}

.nav-dropdown__trigger svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  display: grid;
  min-width: 255px;
  padding: 12px;
  visibility: hidden;
  background: var(--wob-black);
  border: 1px solid var(--wob-grey-800);
  border-radius: 8px;
  box-shadow: var(--wob-edge-light), var(--wob-elev-3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.nav-dropdown__menu a {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-dropdown__menu a:hover {
  background: var(--wob-grey-900);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header-booking {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 11px;
}

.mobile-menu {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--wob-white);
  background: var(--wob-black);
  isolation: isolate;
}

.hero__inner {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: 48px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding-block: 88px 110px;
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 14px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.48;
}

.hero__support {
  margin-bottom: 32px;
  color: var(--wob-grey-300);
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.hero__image {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(100%, 570px);
  height: 94%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.02);
}

.trust-strip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  left: 0;
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 18px;
  border-top: 1px solid var(--wob-grey-800);
  color: var(--wob-grey-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero__inner {
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.74fr);
  align-items: stretch;
  gap: 64px;
}

.page-hero__copy {
  align-self: center;
  max-width: 680px;
  padding-block: 90px;
}

.page-hero__copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
}

.page-hero__copy p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--wob-grey-300);
  font-size: clamp(18px, 2vw, 22px);
}

.page-hero__media {
  position: relative;
  min-height: 420px;
}

.page-hero__media img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media--contain img {
  object-fit: contain;
  object-position: center bottom;
}

.page-hero__media--clinic img {
  filter: grayscale(1) contrast(1.08);
}

.page-surface {
  padding-block: 12px 80px;
  background: var(--wob-mist);
}

.section-card,
.dark-panel,
.light-panel {
  margin-top: 12px;
  border-radius: 18px;
}

.section-card,
.light-panel {
  background: var(--wob-white);
  border: 1px solid var(--wob-line-soft);
  box-shadow: var(--wob-elev-1);
}

.dark-panel {
  color: var(--wob-white);
  background: linear-gradient(145deg, var(--wob-grey-900), var(--wob-black));
  border: 1px solid var(--wob-grey-800);
  box-shadow: var(--wob-edge-light), var(--wob-elev-2);
}

.section-pad {
  padding: clamp(28px, 5vw, 64px);
}

.intro-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  margin-top: -38px;
}

.intro-split__media {
  min-height: 390px;
  overflow: hidden;
  border-radius: 12px;
}

.intro-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.intro-split__copy {
  padding-top: 14px;
}

.intro-split__copy p {
  color: var(--wob-grey-800);
}

.intro-split__copy + .intro-split__copy {
  padding-left: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--wob-line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--wob-grey-800);
  border-radius: 16px;
}

.stat {
  min-height: 160px;
  padding: 28px;
  background: var(--wob-black);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font: 400 clamp(2.2rem, 4vw, 3.5rem)/1 var(--wob-font-display);
}

.stat span {
  color: var(--wob-grey-300);
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading > div {
  max-width: 750px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  margin-top: 14px;
  color: var(--wob-grey-800);
}

.dark-panel .section-heading p {
  color: var(--wob-grey-300);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 12px;
  box-shadow: var(--wob-elev-1);
  transition: box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  box-shadow: var(--wob-elev-2);
  transform: translateY(-4px);
}

.service-card--link {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.service-card--link:focus-visible {
  border-color: var(--wob-black);
  outline: 3px solid var(--wob-black);
  outline-offset: 4px;
  box-shadow: var(--wob-elev-2);
}

.service-card--link:active {
  transform: translateY(-1px) scale(0.995);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wob-fill-soft);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.025);
}

.service-card__body {
  display: flex;
  min-height: 230px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.service-card__body p {
  color: var(--wob-grey-800);
}

.service-card__body .text-link {
  margin-top: auto;
}

.service-card__tag {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card--link[aria-current="location"] {
  border-color: var(--wob-black);
  box-shadow: 0 0 0 1px var(--wob-black), var(--wob-elev-2);
}

.service-card--link[aria-current="location"] .service-card__action {
  font-weight: 500;
}

.booking-widget {
  scroll-margin-top: 104px;
}

.booking-widget[hidden] {
  display: none;
}

.booking-guide {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  grid-template-areas:
    "guide-title guide-steps"
    "guide-notice guide-steps";
  gap: 16px 32px;
  align-items: start;
  margin-bottom: 42px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--wob-black);
  background: var(--wob-fill-soft);
  border: 1px solid var(--wob-line);
  border-radius: 10px;
}

.booking-guide[hidden] {
  display: none;
}

.booking-guide__label {
  grid-area: guide-title;
  margin: 0;
  font-family: var(--wob-font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
}

.booking-guide__notice {
  grid-area: guide-notice;
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  color: var(--wob-white);
  background: var(--wob-black);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-guide ol {
  display: grid;
  grid-area: guide-steps;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: booking-guidance;
}

.booking-guide li {
  position: relative;
  min-width: 0;
  min-height: 156px;
  margin: 0;
  padding: 56px 20px 20px;
  color: var(--wob-grey-800);
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  counter-increment: booking-guidance;
}

.booking-guide li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--wob-white);
  background: var(--wob-black);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  content: "0" counter(booking-guidance);
}

.booking-guide li strong,
.booking-guide li span {
  display: block;
}

.booking-guide li strong {
  margin-bottom: 6px;
  color: var(--wob-black);
  font-size: 14px;
  font-weight: 600;
}

.booking-service-sections[hidden] {
  display: none;
}

.booking-service-section + .booking-service-section {
  margin-top: 48px;
}

.booking-service-section__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wob-line);
}

.booking-service-section__heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.booking-service-section__heading span {
  flex: 0 0 auto;
  color: var(--wob-grey-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-service-card {
  display: flex;
  min-width: 0;
  min-height: 328px;
  flex-direction: column;
  padding: 26px;
  color: inherit;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 10px;
  box-shadow: var(--wob-elev-1);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.booking-service-card:hover {
  border-color: var(--wob-grey-500);
  box-shadow: var(--wob-elev-2);
  transform: translateY(-3px);
}

.booking-service-card:focus-visible {
  border-color: var(--wob-black);
  outline: 3px solid var(--wob-black);
  outline-offset: 4px;
  box-shadow: var(--wob-elev-2);
}

.booking-service-card:active {
  transform: translateY(-1px) scale(0.995);
}

.booking-service-card h4 {
  min-height: 2.5em;
  margin: 0 0 20px;
  font-family: var(--wob-font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.14;
}

.booking-service-card__details {
  margin: 0 0 18px;
  border-top: 1px solid var(--wob-line);
}

.booking-service-card__details > div {
  display: grid;
  grid-template-columns: minmax(104px, 0.8fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--wob-line);
}

.booking-service-card__details dt {
  color: var(--wob-grey-700);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-service-card__details dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.booking-service-card > p {
  margin: 0;
  color: var(--wob-grey-800);
  font-size: 14px;
  line-height: 1.65;
}

.booking-service-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-calendar-panel {
  margin-top: 16px;
  padding-top: 38px;
  border-top: 1px solid var(--wob-line);
  scroll-margin-top: 104px;
}

.booking-calendar-panel[hidden] {
  display: none;
}

.booking-calendar-panel__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.booking-calendar-panel__heading h3 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.booking-calendar-panel__heading p:not(.section-kicker) {
  margin: 0;
  color: var(--wob-grey-800);
}

.booking-widget__frame-wrap {
  position: relative;
}

.booking-widget__status {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  margin: 0;
  padding: 10px 14px;
  background: var(--wob-fill-soft);
  border-radius: 4px;
  font-size: 14px;
}

.booking-widget__status[hidden] {
  display: none;
}

.booking-widget__frame {
  display: block;
  width: 100%;
  min-height: 760px;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 10px;
}

@media (max-width: 1120px) {
  .booking-guide ol,
  .booking-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .booking-guide {
    grid-template-columns: 1fr;
    grid-template-areas:
      "guide-title"
      "guide-notice"
      "guide-steps";
  }

  .booking-guide ol {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-service-grid {
    grid-template-columns: 1fr;
  }

  .booking-service-card {
    min-height: 0;
  }

  .booking-service-card__action {
    margin-top: 22px;
  }

  .booking-calendar-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .booking-guide,
  .booking-service-card {
    padding: 22px;
  }

  .booking-service-section + .booking-service-section {
    margin-top: 38px;
  }

  .booking-service-section__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .booking-service-card h4 {
    min-height: 0;
  }

  .booking-widget__frame {
    min-height: 700px;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 28px;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 10px;
}

.feature-card__number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid var(--wob-grey-500);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
}

.feature-card p {
  color: var(--wob-grey-800);
}

.results-panel {
  padding: clamp(24px, 4vw, 42px);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.comparison-grid--single {
  max-width: 480px;
  grid-template-columns: minmax(0, 1fr);
}

.comparison-card {
  min-width: 0;
}

.comparison {
  --position: 50%;
  position: relative;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: var(--wob-grey-900);
  border: 1px solid var(--wob-grey-800);
  border-radius: 10px;
  isolation: isolate;
}

.comparison > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison__before {
  z-index: 1;
  object-position: center 28%;
}

.comparison__after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--position));
  object-position: center 28%;
}

.comparison--skin-tag .comparison__before,
.comparison--skin-tag .comparison__after {
  object-position: center;
}

.comparison__label {
  position: absolute;
  z-index: 5;
  bottom: 12px;
  padding: 5px 8px;
  color: var(--wob-white);
  background: var(--wob-scrim-60);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.comparison__label--before {
  left: 12px;
}

.comparison__label--after {
  right: 12px;
}

.comparison__divider {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  background: var(--wob-white);
  pointer-events: none;
  transform: translateX(-50%);
}

.comparison__handle {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: var(--position);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--wob-white);
  background: var(--wob-black);
  border: 2px solid var(--wob-white);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 2px 6px rgba(0, 0, 0, 0.5), 0 8px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.comparison__handle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.comparison__range {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  opacity: 0;
  cursor: ew-resize;
}

.comparison__range::-webkit-slider-thumb {
  width: 56px;
  height: 56px;
  appearance: none;
}

.comparison__range::-moz-range-thumb {
  width: 56px;
  height: 56px;
  border: 0;
}

.comparison:focus-within {
  outline: 3px solid var(--wob-white);
  outline-offset: 3px;
}

.comparison-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px 0;
  color: var(--wob-grey-300);
  font-size: 12px;
}

.results-note {
  margin: 22px 0 0;
  color: var(--wob-grey-300);
  font-size: 12px;
}

.instagram-showcase {
  overflow: hidden;
}

.instagram-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(30px, 4vw, 46px);
}

.instagram-showcase__intro {
  max-width: 690px;
}

.instagram-showcase__intro h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.instagram-showcase__intro p:last-child {
  max-width: 610px;
  color: var(--wob-grey-800);
  font-size: 18px;
}

.instagram-showcase__intro a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.instagram-account {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: var(--wob-white);
  background: var(--wob-black);
  border: 1px solid var(--wob-grey-800);
  border-radius: 12px;
  box-shadow: var(--wob-edge-light), var(--wob-elev-dark);
}

.instagram-account__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--wob-grey-500);
  border-radius: 50%;
}

.instagram-account__mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.instagram-account__identity {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.instagram-account__identity strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
}

.instagram-account__identity span {
  color: var(--wob-grey-300);
  font-size: 12px;
}

.instagram-account .wob-button {
  grid-column: 1 / -1;
  width: 100%;
}

.instagram-editorial {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.82fr);
  gap: 16px;
}

.instagram-editorial__side {
  display: grid;
  min-width: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.instagram-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1fr);
  color: var(--wob-white);
  background: var(--wob-black);
  border: 1px solid var(--wob-grey-800);
  border-radius: 12px;
  box-shadow: var(--wob-edge-light), var(--wob-elev-dark);
  isolation: isolate;
}

.instagram-card--feature {
  grid-template-columns: minmax(280px, 0.96fr) minmax(260px, 0.9fr);
}

.instagram-card__media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--wob-grey-900);
}

.instagram-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(0, 0, 0, 0.24));
  content: "";
  pointer-events: none;
}

.instagram-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.instagram-card--feature .instagram-card__media img {
  object-position: center;
}

.instagram-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
}

.instagram-card--feature .instagram-card__copy {
  padding: clamp(26px, 4vw, 46px);
}

.instagram-card__rank {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wob-grey-300);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instagram-card__rank span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--wob-white);
  border: 1px solid var(--wob-grey-500);
  border-radius: 50%;
  letter-spacing: 0;
}

.instagram-card__body {
  display: block;
  margin-block: auto;
  padding-block: 24px;
}

.instagram-card__views {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--wob-grey-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-card__views svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.instagram-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.instagram-card--feature h3 {
  max-width: 330px;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 0.98;
}

.instagram-card__body p {
  margin-top: 16px;
  color: var(--wob-grey-300);
  font-size: 14px;
  line-height: 1.55;
}

.instagram-card__watch {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--wob-grey-800);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.instagram-card__watch svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.instagram-card:hover .instagram-card__media img {
  filter: contrast(1.03);
  transform: scale(1.025);
}

.instagram-card:hover .instagram-card__watch svg {
  transform: translate(3px, -3px);
}

.instagram-showcase__note {
  margin: 18px 0 0;
  color: var(--wob-grey-800);
  font-size: 11px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline-card {
  position: relative;
  padding: 26px;
  background: linear-gradient(145deg, var(--wob-grey-900), var(--wob-black));
  border: 1px solid var(--wob-grey-800);
  border-radius: 12px;
  box-shadow: var(--wob-edge-light), var(--wob-elev-dark);
}

.timeline-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.timeline-card__number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--wob-grey-500);
  border-radius: 50%;
  font-size: 11px;
}

.timeline-card__top span:last-child {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.timeline-card h3 {
  font-family: var(--wob-font-ui);
  font-size: 18px;
  font-weight: 400;
}

.timeline-card p {
  color: var(--wob-grey-300);
  font-size: 13px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.care-tip {
  min-height: 160px;
  padding: 22px 14px;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 9px;
  text-align: center;
}

.care-tip svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.care-tip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--wob-line);
  border-radius: 8px;
}

.price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--wob-line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--wob-fill-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-groups {
  display: grid;
  gap: 16px;
}

.pricing-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  padding: clamp(26px, 4vw, 44px);
}

.pricing-group__intro p {
  color: var(--wob-grey-800);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-column details {
  border: 1px solid var(--wob-grey-800);
  border-radius: 7px;
}

.faq-column details + details {
  margin-top: 8px;
}

.faq-column summary {
  position: relative;
  min-height: 54px;
  padding: 15px 50px 14px 16px;
  list-style: none;
  font-size: 14px;
  line-height: 1.45;
}

.faq-column summary::-webkit-details-marker {
  display: none;
}

.faq-column summary::before,
.faq-column summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-column summary::after {
  transform: rotate(90deg);
}

.faq-column details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 16px 18px;
  color: var(--wob-grey-300);
  font-size: 13px;
}

.light-panel .faq-answer {
  color: var(--wob-grey-800);
}

.reviews-embed {
  overflow: hidden;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 10px;
  padding: 8px;
}

.reviews-embed .lc_reviews_widget {
  display: block;
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.split-feature__media {
  min-height: 540px;
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature__copy {
  align-self: center;
  padding: clamp(36px, 6vw, 82px);
}

.split-feature__copy p,
.split-feature__copy li {
  color: var(--wob-grey-800);
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
}

.clean-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: currentColor;
  content: "";
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.course-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px;
  background: var(--wob-white);
  border: 1px solid var(--wob-line);
  border-radius: 12px;
}

.course-card__price {
  margin-bottom: 24px;
  font: 400 44px/1 var(--wob-font-display);
}

.course-card .text-link {
  margin-top: auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(310px, 0.92fr) minmax(300px, 1fr);
  gap: 34px;
  padding: clamp(28px, 4vw, 48px);
}

.contact-panel__intro p {
  color: var(--wob-grey-300);
}

.contact-detail-grid {
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  color: var(--wob-grey-300);
  font-size: 14px;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--wob-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-detail a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background-color: var(--wob-white);
  border-radius: 12px;
}

.map-card__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.04);
  transition: filter 0.4s ease;
}

.map-card:hover .map-card__frame,
.map-card:focus-within .map-card__frame {
  filter: grayscale(0) contrast(1);
}

.map-card__directions {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  box-shadow: var(--wob-elev-2);
}

.site-footer {
  color: var(--wob-white);
  background: var(--wob-black);
  border-top: 1px solid var(--wob-grey-800);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(340px, 1.3fr) minmax(170px, 0.5fr);
  align-items: start;
  gap: 48px;
  padding-block: 48px 34px;
}

.footer-brand img {
  width: 116px;
  margin-bottom: 16px;
  filter: invert(1);
}

.footer-brand p {
  color: var(--wob-grey-300);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 24px;
}

.footer-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--wob-grey-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--wob-white);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--wob-grey-300);
}

.social-links a:hover {
  color: var(--wob-white);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px 24px;
  color: var(--wob-grey-500);
  border-top: 1px solid var(--wob-grey-800);
  font-size: 11px;
}

.site-footer__bottom a {
  min-height: 36px;
  align-content: center;
}

@media (max-width: 1120px) {
  .primary-nav,
  .header-booking {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    min-width: 92px;
    min-height: 48px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    list-style: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu__icon,
  .mobile-menu__icon::before,
  .mobile-menu__icon::after {
    width: 22px;
    height: 1px;
    background: currentColor;
  }

  .mobile-menu__icon {
    position: relative;
    display: block;
  }

  .mobile-menu__icon::before,
  .mobile-menu__icon::after {
    position: absolute;
    left: 0;
    content: "";
    transition: transform 180ms ease, top 180ms ease;
  }

  .mobile-menu__icon::before {
    top: -7px;
  }

  .mobile-menu__icon::after {
    top: 7px;
  }

  .mobile-menu[open] .mobile-menu__icon {
    background: transparent;
  }

  .mobile-menu[open] .mobile-menu__icon::before,
  .mobile-menu[open] .mobile-menu__icon::after {
    top: 0;
  }

  .mobile-menu[open] .mobile-menu__icon::before {
    transform: rotate(45deg);
  }

  .mobile-menu[open] .mobile-menu__icon::after {
    transform: rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(88vw, 340px);
    max-height: calc(100dvh - 110px);
    padding: 12px;
    overflow-y: auto;
    background: var(--wob-black);
    border: 1px solid var(--wob-grey-800);
    border-radius: 9px;
    box-shadow: var(--wob-edge-light), var(--wob-elev-3);
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 9px 12px;
    color: var(--wob-grey-300);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a[aria-current="page"] {
    color: var(--wob-white);
    background: var(--wob-grey-900);
  }

  .mobile-menu nav .mobile-subnav {
    min-height: 40px;
    padding-left: 28px;
    font-size: 11px;
  }

  .mobile-menu nav .wob-button {
    justify-content: center;
    margin-top: 8px;
    color: var(--wob-black);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  }

  .intro-split {
    grid-template-columns: minmax(280px, 0.8fr) 1fr;
  }

  .intro-split__copy:last-child {
    grid-column: 2;
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .service-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-showcase__header {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
    gap: 32px;
  }

  .instagram-editorial {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  }

  .instagram-card--feature {
    grid-template-columns: minmax(240px, 0.92fr) minmax(230px, 0.9fr);
  }

  .comparison-card:last-child,
  .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .comparison-card:last-child .comparison {
    aspect-ratio: 2 / 1;
  }

  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .wob-container {
    width: min(calc(100% - 32px), 680px);
  }

  .site-header__inner {
    min-height: 74px;
  }

  .hero__inner,
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__copy {
    max-width: none;
    padding: 64px 0 34px;
  }

  .hero__visual {
    min-height: 470px;
  }

  .hero__image {
    right: 50%;
    width: min(100%, 440px);
    height: 100%;
    transform: translateX(50%);
  }

  .trust-strip {
    position: relative;
    bottom: auto;
    padding-bottom: 28px;
  }

  .page-hero__copy {
    padding: 62px 0 36px;
  }

  .page-hero__media {
    min-height: 400px;
  }

  .page-hero__media--contain {
    min-height: 500px;
  }

  .intro-split {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }

  .intro-split__media {
    min-height: 360px;
  }

  .intro-split__copy:last-child {
    grid-row: auto;
    grid-column: auto;
    padding-top: 28px;
    border-top: 1px solid var(--wob-line);
  }

  .stats-grid,
  .feature-grid,
  .timeline-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .instagram-showcase__header,
  .instagram-editorial {
    grid-template-columns: 1fr;
  }

  .instagram-showcase__header {
    align-items: start;
  }

  .instagram-editorial {
    min-height: 0;
  }

  .instagram-card--feature {
    min-height: 560px;
    grid-template-columns: minmax(280px, 0.92fr) minmax(250px, 0.82fr);
  }

  .instagram-editorial__side {
    min-height: 600px;
  }

  .comparison-card:last-child,
  .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .comparison-card:last-child .comparison,
  .comparison {
    aspect-ratio: 1.35 / 1;
  }

  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-tip:last-child {
    grid-column: 1 / -1;
  }

  .pricing-group,
  .faq-grid,
  .contact-panel,
  .split-feature,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .pricing-group {
    gap: 18px;
  }

  .split-feature__media {
    min-height: 430px;
  }

  .contact-panel {
    gap: 30px;
  }

  .map-card {
    grid-column: auto;
  }

  .site-footer__main {
    gap: 28px;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .page-hero__copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
  }

  .button-row {
    display: grid;
  }

  .button-row .wob-button {
    width: 100%;
  }

  .hero__visual {
    min-height: 390px;
  }

  .page-hero__media {
    min-height: 330px;
  }

  .page-hero__media--contain {
    min-height: 410px;
  }

  .page-surface {
    padding-bottom: 48px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .section-heading .wob-button {
    width: 100%;
  }

  .section-pad,
  .results-panel,
  .pricing-group,
  .contact-panel {
    padding: 24px 20px;
  }

  .instagram-showcase__header {
    gap: 24px;
  }

  .instagram-showcase__intro p:last-child {
    font-size: 16px;
  }

  .instagram-account {
    padding: 18px;
  }

  .instagram-card--feature,
  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-card--feature {
    min-height: 0;
  }

  .instagram-card--feature .instagram-card__media {
    aspect-ratio: 9 / 16;
  }

  .instagram-card--feature .instagram-card__copy {
    min-height: 360px;
    padding: 24px;
  }

  .instagram-editorial__side {
    min-height: 0;
  }

  .instagram-editorial__side .instagram-card__media {
    aspect-ratio: 4 / 3;
  }

  .instagram-editorial__side .instagram-card__copy {
    min-height: 250px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 130px;
  }

  .service-card__body {
    min-height: 220px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-tip:last-child {
    grid-column: auto;
  }

  .price-table {
    min-width: 460px;
    font-size: 13px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }
}

/* ==========================================================================
   Scroll-driven depth (2026-08-28). Native CSS scroll timelines only - no JS.
   Everything is double-gated: browsers without animation-timeline support and
   readers with reduced motion both get the static site exactly as above.
   Longhand animation-* properties on purpose: the `animation` shorthand
   resets animation-timeline.
   ========================================================================== */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    /* Panels rise into place as they enter the viewport. */
    .section-card,
    .light-panel,
    .dark-panel {
      animation-name: panel-rise;
      animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
      animation-fill-mode: both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }

    /* Service cards fade in with a short stagger. Opacity only: their
       transform belongs to the hover lift and a scroll animation on the
       same property would override it for the life of the page. */
    .service-card {
      animation-name: card-fade;
      animation-timing-function: ease-out;
      animation-fill-mode: both;
      animation-timeline: view();
      animation-range: entry 5% entry 45%;
    }

    .service-card:nth-child(2) {
      animation-range: entry 12% entry 52%;
    }

    .service-card:nth-child(3) {
      animation-range: entry 19% entry 59%;
    }

    /* Sticky header gains depth once the page is scrolled. */
    .site-header {
      animation-name: header-depth;
      animation-timing-function: linear;
      animation-fill-mode: both;
      animation-timeline: scroll();
      animation-range: 0 180px;
    }

    /* Hero parallax: portrait and light-ring drift at different rates as
       the hero scrolls out. Desktop only - the hero stacks under 821px and
       the image there carries a translateX the animation would override. */
    @media (min-width: 821px) {
      /* The heroes have overflow: hidden, which makes them scroll
         containers - so view() on a child would resolve against the hero
         itself and never progress. A named view-timeline on the hero
         section (whose own scroller is the root) is what the children
         drive from. */
      .hero,
      .page-hero {
        view-timeline-name: --hero-view;
      }

      /* Extra bleed below each drifting image so the upward drift never
         reveals a gap at its bottom edge; the hero's overflow clips it. */
      .hero__image {
        bottom: -34px;
        height: calc(94% + 34px);
        animation-name: drift-up;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: --hero-view;
        animation-range: exit 0% exit 100%;
      }

      .page-hero__media img {
        height: calc(100% + 22px);
        animation-name: drift-up-small;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: --hero-view;
        animation-range: exit 0% exit 100%;
      }

    }
  }
}

@keyframes panel-rise {
  from {
    opacity: 0.4;
    transform: translateY(26px);
  }
}

@keyframes card-fade {
  from {
    opacity: 0;
  }
}

@keyframes header-depth {
  to {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }
}

@keyframes drift-up {
  to {
    transform: translateY(-34px);
  }
}

@keyframes drift-up-small {
  to {
    transform: translateY(-22px);
  }
}

@keyframes drift-down {
  to {
    transform: translateY(42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-timeline: none !important;
  }
}

/* v3 additions: grouped treatments dropdown, video placeholder, homepage price preview */

.nav-dropdown__menu--mega {
  left: 50%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  min-width: 470px;
  padding: 16px;
  transform: translate(-50%, 8px);
}

.nav-dropdown:hover .nav-dropdown__menu--mega,
.nav-dropdown:focus-within .nav-dropdown__menu--mega {
  transform: translate(-50%, 0);
}

.nav-dropdown__col {
  display: grid;
  align-content: start;
}

.nav-dropdown__menu a.nav-dropdown__group {
  color: var(--wob-white);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 10px;
}

.nav-dropdown__menu a.nav-dropdown__sub {
  min-height: 36px;
  padding-block: 6px;
  padding-left: 22px;
  font-size: 12px;
}

.nav-dropdown__menu a.nav-dropdown__viewall {
  margin-top: 8px;
  border-top: 1px solid var(--wob-grey-800);
  border-radius: 0 0 4px 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--wob-white);
  background: var(--wob-grey-900);
  border: 1px solid var(--wob-grey-800);
  border-radius: 10px;
}

.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.video-placeholder__badge {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.video-placeholder__badge svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.video-placeholder__badge span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.from-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px 0;
  text-align: center;
}

.from-price {
  display: grid;
  gap: 6px;
  padding: 18px 12px;
  border-left: 1px solid var(--wob-grey-800);
}

.from-price:first-child {
  border-left: 0;
}

.from-price h3 {
  margin: 0;
  font: var(--wob-body-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.from-price .from-price__label {
  color: var(--wob-grey-500);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.from-price strong {
  font-family: var(--wob-font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 860px) {
  .from-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .from-price:nth-child(3) {
    border-left: 0;
  }
}

.home-testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-testimonial p {
  font-family: var(--wob-font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-style: italic;
  line-height: 1.5;
}

.home-testimonial footer {
  margin-top: 18px;
  color: var(--wob-grey-300);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* v3: appointments-only notice box (used on dark surfaces: contact hero + contact panel) */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 520px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--wob-grey-800);
}

.notice-box svg {
  flex: none;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--wob-white);
  stroke-width: 1.5;
}

.notice-box p {
  margin: 0;
  color: var(--wob-grey-300);
  font-size: 15px;
  line-height: 1.5;
}

.notice-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--wob-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .service-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* contact-panel on a light section (homepage clinic block) */
.light-panel.contact-panel .contact-panel__intro p,
.light-panel.contact-panel .contact-detail {
  color: var(--wob-grey-500);
}

.light-panel.contact-panel .contact-detail svg {
  stroke: var(--wob-black);
}

.light-panel.contact-panel .contact-detail a {
  color: var(--wob-black);
}

/* pill badge for feature cards whose label is a word, not a step number */
.feature-card__number--wide {
  width: auto;
  min-width: 42px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* hero without a photo (pages awaiting imagery) */
.page-hero__inner:not(:has(.page-hero__media)) {
  min-height: 380px;
  grid-template-columns: minmax(0, 1fr);
}

.page-hero__inner:not(:has(.page-hero__media)) .page-hero__copy {
  max-width: 780px;
}

/* service cards keep their own colours when placed on a dark section */
.service-card {
  color: var(--wob-black);
}

/* floating WhatsApp button (business number), all pages */
.whatsapp-fab {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px 0 16px;
  color: var(--wob-white);
  background: var(--wob-black);
  border: 1px solid var(--wob-grey-800);
  border-radius: 999px;
  box-shadow: var(--wob-elev-3);
  font: var(--wob-body-sm);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-fab:hover {
  background: var(--wob-grey-900);
  transform: translateY(-2px);
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  flex: none;
  fill: currentColor;
}

@media (max-width: 720px) {
  .whatsapp-fab {
    width: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-fab span {
    display: none;
  }
}

@media print {
  .whatsapp-fab {
    display: none;
  }
}
