/* AANGEPAST VOOR KLUBB — de aangeleverde handoff gebruikte eigen grenzen op
   1360, 1100 en 760. De gedeelde laag van Klubb schrijft 375 / 768 / 1024 /
   1440 voor, en de regel daar is: past een component niet binnen een grens,
   pas dan de component aan en niet de grens. De media queries hieronder zijn
   daarom omgezet naar max-width 1439 / 1023 / 767, wat de bovenkant is van
   diezelfde vier stappen. Verder is er niets aan deze stylesheet veranderd.
   ------------------------------------------------------------------------ */

/* ==========================================================================
   Verzijden Clinics — homepage
   --------------------------------------------------------------------------
   Every class used by the section components, in page order. Values are the
   design, one-to-one. Convert to CSS Modules or Tailwind if the codebase
   prefers that — but keep the tokens, not the literals.

   Section order on the page:
     header · hero · trust bar · kliniek · behandelingen · werkwijze
     · statement band · indicaties · verwachtingen · contact · footer
   ========================================================================== */

/* --- Shell --------------------------------------------------------------- */

.vc-page {
  background: var(--surface-page);
  overflow-x: clip; /* the trust bar overlaps the hero; never a h-scrollbar */
}

.vc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.vc-section {
  padding: var(--section-y) 0;
}

.vc-section--sand {
  background: var(--surface-sand);
}

.vc-section--white {
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-hairline);
}

.vc-section--inverse {
  background: var(--surface-inverse);
}

/* Shared type roles ------------------------------------------------------- */

.vc-h2 {
  font-size: var(--size-h2);
}

.vc-h3 {
  font-size: var(--size-h3);
}

.vc-lead {
  font-size: var(--size-body-l);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: var(--measure-body);
}

.vc-label {
  font-family: var(--font-body);
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  line-height: 1.4;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-secondary);
}

.vc-label--wide {
  letter-spacing: var(--tracking-eyebrow);
  line-height: 1;
}

/* Hover lift wrapper. Buttons are wrapped in this span so the lift is a
   layout-free transform on the wrapper, not on the capsule itself. */
.vc-lift {
  display: inline-flex;
  transition: transform var(--duration-hover) var(--ease-out);
}

.vc-lift:hover {
  transform: translateY(var(--lift));
}

.vc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   1. Header — fixed, transparent over the hero, veiled on scroll
   ========================================================================== */

.vc-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  color: var(--text-inverse);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.vc-header[data-scrolled="true"] {
  color: var(--text-primary);
  background: var(--chrome-veil);
  backdrop-filter: var(--chrome-blur);
  -webkit-backdrop-filter: var(--chrome-blur);
  border-bottom-color: var(--border-hairline);
}

.vc-header__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: height var(--duration-base) var(--ease-out);
}

.vc-header[data-scrolled="true"] .vc-header__bar {
  height: var(--header-h-scrolled);
}

.vc-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: none;
}

.vc-header__logo img {
  height: var(--header-logo-h);
  width: auto;
  transition: height var(--duration-base) var(--ease-out);
}

.vc-header[data-scrolled="true"] .vc-header__logo img {
  height: var(--header-logo-h-scrolled);
}

/* Nav sits centred in the space between logo and buttons. */
.vc-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-family: var(--font-body);
  font-size: var(--size-nav);
  font-weight: var(--weight-medium);
  line-height: 1;
}

.vc-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.vc-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;          /* 48px hit target, same as every button */
  padding-bottom: 3px;
  color: inherit;
  white-space: nowrap;   /* nav items never wrap */
  opacity: 0.9;
  border-bottom: 1px solid transparent;
  transition: opacity var(--duration-hover) var(--ease-out),
    border-color var(--duration-hover) var(--ease-out);
}

.vc-nav__link:hover {
  opacity: 1;
  color: inherit;
  border-bottom-color: currentColor;
}

.vc-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

/* Dropdown ---------------------------------------------------------------- */

.vc-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--duration-hover) var(--ease-out),
    transform var(--duration-hover) var(--ease-out),
    visibility var(--duration-hover);
}

.vc-nav__item[data-open="true"] .vc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vc-dropdown__panel {
  position: absolute;
  top: 100%;
  left: -28px;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-float);
  border-radius: var(--radius-none);
}

.vc-dropdown__panel--single {
  width: 330px;
  padding: 14px 0 8px;
  display: flex;
  flex-direction: column;
}

.vc-dropdown__panel--double {
  width: 620px;
  padding: 18px 0 10px;
}

.vc-dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 14px;
}

.vc-dropdown__link {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  color: var(--text-primary);
  border-bottom: none;
  font-size: var(--size-body-s);
  line-height: 1;
  white-space: nowrap;
  transition: background var(--duration-hover) var(--ease-out);
}

.vc-dropdown__grid .vc-dropdown__link {
  height: 44px;
  padding: 0 14px;
}

.vc-dropdown__link:hover {
  background: var(--state-hover-wash);
  color: var(--text-primary);
}

.vc-dropdown__all {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  margin-top: 8px;
  border-top: 1px solid var(--border-hairline);
  border-bottom: none;
  color: var(--text-secondary);
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.vc-dropdown__panel--double .vc-dropdown__all {
  height: 44px;
  margin: 10px 28px 0;
  padding: 14px 0 0;
}

.vc-dropdown__all:hover {
  color: var(--text-primary);
}

/* Mobile drawer trigger — hidden on desktop, see the media queries. */
.vc-header__burger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

/* ==========================================================================
   2. Hero — full-bleed image, type sitting on a soft scrim
   ========================================================================== */

.vc-hero {
  position: relative;
  height: var(--hero-h);
  overflow: hidden;
}

.vc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% 40%; /* keeps the two people right of the type */
  animation: vcKenBurns var(--duration-ken) linear both;
}

/* Two scrims, not one: the top protects the header, the bottom protects the
   headline and both CTAs. */
.vc-hero__scrim-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 280px;
  background: var(--scrim-hero-top);
}

.vc-hero__scrim-bottom {
  position: absolute;
  inset: auto 0 0 0;
  height: 62%;
  background: var(--scrim-hero-bottom);
}

.vc-hero__inner {
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad) 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: vcRise var(--duration-entrance) var(--ease-out) both;
}

.vc-hero__eyebrow {
  margin: 0 0 26px;
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-inverse-strong);
}

.vc-hero__title {
  margin: 0 0 26px;
  font-size: var(--size-h1);
  line-height: 1.15;
  letter-spacing: var(--tracking-h1);
  color: var(--text-inverse);
  max-width: 17ch;
}

.vc-hero__intro {
  margin: 0;
  font-size: var(--size-lead);
  line-height: 1.65;
  color: var(--text-inverse-strong);
  max-width: var(--measure-body);
}

.vc-hero__actions {
  margin-top: 38px;
}

/* ==========================================================================
   3. Trust bar — white card lifted over the hero's bottom edge
   ========================================================================== */

.vc-trust {
  position: relative;
  z-index: 10;
  max-width: var(--container);
  margin: -96px auto 0;
  padding: 0 var(--container-pad);
}

.vc-trust__card {
  position: relative;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-raised);
}

/* The beeldmerk as a whisper, the only decorative use of the mark. */
.vc-trust__watermark {
  position: absolute;
  right: -34px;
  top: -46px;
  height: 300px;
  width: auto;
  opacity: 0.05;
  pointer-events: none;
}

.vc-trust__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vc-trust__cell {
  padding: 46px 44px 44px;
  transition: background var(--duration-base) var(--ease-out);
}

.vc-trust__cell:first-child {
  padding-left: 48px;
}

.vc-trust__cell:last-child {
  padding-right: 48px;
}

.vc-trust__cell + .vc-trust__cell {
  border-left: 1px solid var(--border-subtle);
}

.vc-trust__cell:hover {
  background: var(--surface-wash);
}

.vc-trust__figure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 14px;
}

.vc-trust__value {
  font-family: var(--font-display);
  font-size: var(--size-stat);
  line-height: 0.95;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.vc-trust__unit {
  font-family: var(--font-display);
  font-size: var(--size-stat-unit);
  line-height: 1;
  color: var(--text-secondary);
}

.vc-trust__body {
  margin: 0;
  font-size: var(--size-body-s);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 34ch;
}

/* ==========================================================================
   4. Kliniek — asymmetric intro, two person cards, four facts
   ========================================================================== */

.vc-split {
  display: grid;
  gap: var(--gap-columns);
  align-items: center;
}

.vc-split--clinic {
  grid-template-columns: 0.95fr 1.05fr;
}

.vc-split--process {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.vc-split--indications {
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
}

.vc-split--expectations {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.vc-split--contact {
  grid-template-columns: 1fr 0.8fr;
  gap: 96px;
}

.vc-clinic__title {
  margin: 20px 0 28px;
}

.vc-clinic__body {
  margin: 0 0 20px;
}

.vc-clinic__body:last-of-type {
  margin-bottom: 36px;
}

.vc-clinic__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
}

.vc-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 88px;
}

/* White on sand-50: contrast with the section, same hairline as every card. */
.vc-person {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 28px;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  padding: var(--pad-card-tight);
  transition: transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.vc-person:hover {
  transform: translateY(var(--lift));
  box-shadow: var(--shadow-card-hover);
}

.vc-person__portrait {
  width: 112px;
  height: 112px;
  object-fit: cover;
  object-position: center 20%;
}

.vc-person__name {
  margin: 0 0 6px;
  font-size: var(--size-h4);
}

.vc-person__role {
  margin: 0 0 14px;
}

.vc-person__body {
  margin: 0;
  font-size: var(--size-body-s);
  line-height: 1.7;
  color: var(--text-secondary);
}

.vc-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 88px;
  border-top: 1px solid var(--border-subtle);
}

.vc-facts__cell {
  padding: 32px;
}

.vc-facts__cell:first-child {
  padding: 32px 32px 0 0;
}

.vc-facts__cell:last-child {
  padding: 32px 0 0 32px;
}

.vc-facts__cell + .vc-facts__cell {
  border-left: 1px solid var(--border-subtle);
}

.vc-facts__label {
  margin: 0 0 12px;
}

.vc-facts__value {
  margin: 0;
  font-size: var(--size-body-s);
  line-height: 1.7;
  color: var(--text-primary);
}

/* ==========================================================================
   5. Behandelingen — four cards, 2 x 2 on desktop
   ========================================================================== */

.vc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 56px;
}

.vc-section__head .vc-h2 {
  margin: 20px 0 0;
  max-width: 22ch;
}

.vc-section__head p {
  margin: 0;
  max-width: 44ch;
  color: var(--text-secondary);
}

/* auto-fit, so a fifth treatment needs no layout change. minmax(440px)
   keeps the measure readable — four across would give 15 characters a line. */
.vc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: var(--gap-cards);
}

.vc-treatment {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vc-treatment__kicker {
  margin: 0 0 16px;
}

.vc-treatment__title {
  margin: 0 0 16px;
}

.vc-treatment__body {
  margin: 0 0 24px;
  font-size: var(--size-body);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* margin-top:auto pins the footer to the bottom, so cards of different copy
   length still align their rules. */
.vc-treatment__label {
  margin: auto 0 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.vc-treatment__helps {
  margin: 0;
  font-size: var(--size-body-s);
  line-height: 1.7;
  color: var(--text-primary);
}

.vc-section__foot {
  margin-top: 48px;
}

/* ==========================================================================
   6. Werkwijze — numbered hairline steps
   ========================================================================== */

.vc-process__intro {
  margin: 0 0 40px;
  max-width: var(--measure-narrow);
  color: var(--text-secondary);
}

.vc-process__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

.vc-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
}

.vc-step:first-child {
  padding: 0 0 36px;
  border-top: 0;
}

.vc-step:last-of-type {
  padding: 36px 0 0;
}

.vc-step__n {
  padding-top: 8px;
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  line-height: 1.4;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--text-secondary);
}

.vc-step__title {
  margin: 0 0 12px;
}

.vc-step__body {
  margin: 0;
  font-size: var(--size-body);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: var(--measure-step);
}

.vc-process__actions {
  margin-top: 48px;
  gap: 20px;
}

/* ==========================================================================
   7. Statement band — the quiet centre of the page
   ========================================================================== */

.vc-band {
  position: relative;
  height: var(--band-h);
  overflow: hidden;
}

.vc-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scaleX(-1); /* mirrored: the gaze reads into the quote */
}

.vc-band__scrim {
  position: absolute;
  inset: 0;
  background: var(--scrim-band);
}

.vc-band__inner {
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vc-band__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--size-statement);
  line-height: 1.35;
  color: var(--text-inverse);
  max-width: 24ch;
}

.vc-band__attribution {
  margin: 32px 0 0;
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  line-height: 1.4;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-inverse-muted);
}

/* ==========================================================================
   8. Indicaties — linked rows, then capsules for pages that do not exist yet
   ========================================================================== */

.vc-indications__intro {
  margin: 0 0 20px;
  max-width: var(--measure-narrow);
  color: var(--text-secondary);
}

.vc-indications__note {
  margin: 0 0 36px;
  font-size: var(--size-body);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: var(--measure-narrow);
}

.vc-rows {
  border-top: 1px solid var(--border-subtle);
}

.vc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: background var(--duration-hover) var(--ease-out),
    padding var(--duration-hover) var(--ease-out);
}

.vc-row:hover {
  background: var(--surface-wash);
  padding-left: 20px; /* the row leans into the pointer */
  color: var(--text-primary);
}

.vc-row__title {
  margin: 0 0 8px;
  font-size: var(--size-h3);
}

.vc-row__body {
  margin: 0;
  font-size: var(--size-body);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: var(--measure-row);
}

.vc-chips {
  margin-top: 56px;
}

.vc-chips__label {
  margin: 0 0 20px;
}

.vc-chips__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Deliberately NOT a link and NOT carrying an arrow: these indications have
   no page yet, so the design must not promise a click. */
.vc-chip {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 24px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: var(--size-body-s);
  line-height: 1;
  white-space: nowrap;
}

/* When a page does ship, the chip becomes a link — add this class and it
   picks up the interaction without changing shape. */
a.vc-chip {
  transition: background var(--duration-hover) var(--ease-out),
    border-color var(--duration-hover) var(--ease-out);
}

a.vc-chip:hover {
  background: var(--state-hover-wash);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

/* ==========================================================================
   9. Verwachtingen — three promises, image, testimonial slider
   ========================================================================== */

.vc-expect__title {
  margin: 20px 0 40px;
  max-width: 22ch;
}

.vc-promises {
  border-top: 1px solid var(--border-subtle);
}

.vc-promises p {
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--size-body);
  line-height: var(--leading-body);
  color: var(--text-primary);
  max-width: var(--measure-body);
}

.vc-promises p:last-child {
  border-bottom: 0;
}

.vc-expect__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 45%;
}

.vc-slider {
  margin-top: 32px;
}

/* Fixed height: a longer quote must not change the height of the page. */
.vc-slider__card {
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  padding: 36px;
  height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vc-slider__slide {
  opacity: 1;
  transform: none;
  transition: opacity var(--duration-fade) var(--ease-out),
    transform var(--duration-fade) var(--ease-out);
}

.vc-slider__slide[data-fading="true"] {
  opacity: 0;
  transform: translateY(8px);
}

.vc-slider__quote {
  margin: 0 0 20px;
  font-size: var(--size-quote);
  line-height: 1.7;
  color: var(--text-primary);
}

.vc-slider__meta {
  margin: 0;
}

.vc-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.vc-slider__dots,
.vc-slider__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--border-default);
  cursor: pointer;
  transition: width var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.vc-slider__dot[aria-current="true"] {
  width: 26px;
  background: var(--brand-dark);
}

.vc-slider__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--duration-hover) var(--ease-out),
    border-color var(--duration-hover) var(--ease-out);
}

.vc-slider__arrow:hover {
  background: var(--state-hover-wash);
  border-color: var(--border-strong);
}

.vc-slider__disclaimer {
  margin: 16px 0 0;
  font-size: var(--size-meta);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Editorial fallback for when no consented testimonial exists yet. */
.vc-slider__empty {
  margin-top: 32px;
  padding: var(--pad-card-tight);
  border: 1px dashed var(--border-default);
  background: rgb(255 255 255 / 0.5);
}

.vc-slider__empty p:last-child {
  margin: 0;
  font-size: var(--size-body-s);
  line-height: 1.7;
  color: var(--text-primary);
}

/* ==========================================================================
   10. Contact — the one dark moment on the page
   ========================================================================== */

.vc-contact .vc-h2 {
  margin: 20px 0 24px;
  color: var(--text-inverse);
  max-width: 20ch;
}

.vc-contact__intro {
  margin: 0 0 40px;
  color: var(--text-inverse-muted);
  max-width: 48ch;
}

.vc-contact__details {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.vc-contact__label {
  margin: 0 0 14px;
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  line-height: 1.4;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-inverse-label);
}

.vc-contact__address {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--size-address);
  line-height: 1.4;
  color: var(--text-inverse);
}

.vc-contact__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-contact__links a {
  display: inline-block;
  width: fit-content;
  font-size: var(--size-lead);
  line-height: 1.5;
  color: var(--text-inverse);
  border-bottom: none;
  transition: color var(--duration-hover) var(--ease-out);
}

.vc-contact__links a:hover {
  color: rgb(255 255 255 / 0.7);
}

.vc-contact__hours {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-inverse-body);
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.vc-footer {
  background: var(--surface-footer);
  padding: 96px 0 40px;
}

.vc-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 56px;
}

.vc-footer__logo {
  height: 76px;
  width: auto;
}

.vc-footer__address {
  margin: 24px 0 0;
  font-size: var(--size-body-s);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: 30ch;
}

.vc-footer__contact {
  margin: 16px 0 0;
  font-size: var(--size-body-s);
  line-height: var(--leading-body);
}

.vc-footer__contact a {
  color: var(--text-primary);
}

.vc-footer__hours-label {
  margin: 28px 0 12px;
}

.vc-footer__hours {
  display: grid;
  grid-template-columns: auto auto;
  gap: 6px 24px;
  justify-content: start;
  font-size: var(--size-body-s);
  line-height: 1.6;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.vc-footer__hours .vc-footer__closed {
  color: var(--text-secondary);
}

.vc-footer__col-label {
  margin: 0 0 20px;
}

.vc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: var(--size-body-s);
  line-height: 1.5;
}

.vc-footer__links a {
  color: var(--text-primary);
  border-bottom: none;
  white-space: nowrap;
}

.vc-footer__links a:hover {
  color: var(--text-secondary);
}

.vc-footer__links a.vc-footer__all {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: var(--size-label);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.vc-footer__links a.vc-footer__all:hover {
  color: var(--text-primary);
}

.vc-footer__bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-size: var(--size-meta);
  line-height: 1.6;
  color: var(--text-secondary);
}

.vc-footer__credits,
.vc-footer__legal {
  display: flex;
  white-space: nowrap;
}

.vc-footer__credits {
  gap: 28px;
}

.vc-footer__legal {
  gap: 32px;
}

.vc-footer__legal a {
  color: var(--text-secondary);
  border-bottom: none;
}

.vc-footer__legal a:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   12. Reveal — set by Reveal.tsx, animated by these rules
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-rise));
  transition: opacity var(--duration-reveal) var(--ease-out),
    transform var(--duration-reveal) var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal="img"] {
  transform: scale(1.05);
  transition: opacity var(--duration-reveal-img) var(--ease-out),
    transform var(--duration-reveal-img-scale) var(--ease-out);
}

[data-reveal][data-shown="true"] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   13. Responsive
   --------------------------------------------------------------------------
   The prototype was authored desktop-only (fixed 1300px of content). The
   rules below are the intended adaptation and should be reviewed against
   the mobile design before launch. Structure is unchanged: same order, same
   type roles, only the grids collapse and the scale steps down.
   ========================================================================== */

@media (max-width: 1439px) {
  :root {
    --container-pad: 48px;
    --gap-columns: 56px;
  }

  .vc-nav {
    gap: 24px;
  }

  .vc-cards {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }
}

@media (max-width: 1023px) {
  :root {
    --section-y: 96px;
    --header-h: 112px;
    --header-h-scrolled: 84px;
    --hero-h: 720px;
    --size-h1: 46px;
    --size-h2: 36px;
    --size-statement: 30px;
  }

  /* Nav collapses to a drawer; the two buttons stay in the bar. */
  .vc-nav {
    display: none;
  }

  .vc-header__burger {
    display: flex;
  }

  .vc-header__actions {
    margin-left: auto;
  }

  .vc-split--clinic,
  .vc-split--process,
  .vc-split--indications,
  .vc-split--expectations,
  .vc-split--contact {
    grid-template-columns: 1fr;
  }

  .vc-trust__grid,
  .vc-people,
  .vc-facts {
    grid-template-columns: 1fr 1fr;
  }

  .vc-facts__cell,
  .vc-facts__cell:first-child,
  .vc-facts__cell:last-child {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .vc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --container-pad: 20px;
    --section-y: 64px;
    --hero-h: 620px;
    --band-h: 460px;
    --size-h1: 34px;
    --size-h2: 28px;
    --size-h3: 22px;
    --size-h4: 21px;
    --size-lead: 18px;
    --size-body-l: 17px;
    --size-statement: 24px;
    --size-address: 22px;
    --size-stat: 44px;
    --pad-card: 24px;
  }

  .vc-hero__inner {
    padding-bottom: 56px;
  }

  .vc-hero__actions,
  .vc-actions,
  .vc-process__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-trust {
    margin-top: -48px;
  }

  .vc-trust__grid,
  .vc-people,
  .vc-facts,
  .vc-footer__grid,
  .vc-cards {
    grid-template-columns: 1fr;
  }

  .vc-trust__cell,
  .vc-trust__cell:first-child,
  .vc-trust__cell:last-child {
    padding: 24px 20px;
  }

  .vc-trust__cell + .vc-trust__cell {
    border-left: 0;
    border-top: 1px solid var(--border-subtle);
  }

  .vc-person {
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .vc-person__portrait {
    width: 72px;
    height: 72px;
  }

  .vc-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .vc-slider__card {
    height: auto;
    min-height: 300px;
    padding: 24px;
  }

  .vc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .vc-footer__credits,
  .vc-footer__legal {
    flex-direction: column;
    gap: 10px;
    white-space: normal;
  }
}
