:root {
      --cream: #f7f2ec;
      --sand: #e8ddd1;
      --blush: #dccbc2;
      --taupe: #b8a89a;
      --cocoa: #8b6f5a;
      --brown: #5c4033;
      --espresso: #4a352b;
      --ink: #2d2522;
      --white: #fffdf9;
      --champagne: #c9a25e;
      --champagne-soft: #e3c894;
      --gold-line: rgba(201, 162, 94, .5);
      --hairline: rgba(74, 53, 43, .12);
      --r-sm: 14px;
      --r-md: 20px;
      --r-lg: 28px;
      --r-xl: 36px;
      --shadow-sm: 0 8px 24px rgba(74, 53, 43, .08);
      --shadow-md: 0 16px 48px rgba(74, 53, 43, .12);
      --shadow-lg: 0 24px 70px rgba(74, 53, 43, .16);
      --shadow: var(--shadow-lg);
      --section-y: clamp(72px, 9vw, 126px);
      --display: "Bodoni Moda", Georgia, serif;
      --body: "Jost", "Avenir Next", sans-serif;
      --max: 1180px;
      --max-tariffs: 1400px;
      --nav-height: 112px;
      --nav-logo-height: 108px;
      --footer-line-gap: 10px;
      --focus-ring: 0 0 0 2px var(--cream), 0 0 0 4px var(--champagne);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: var(--body);
      font-size: 17px;
      line-height: 1.65;
    }

    body.modal-open {
      overflow: hidden;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    :focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .button:focus-visible,
    .menu a:focus-visible,
    .mobile-menu a:focus-visible,
    .category-trigger:focus-visible,
    .team-spotlight-card:focus-visible,
    .service-tile:focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

    .announcement {
      display: flex;
      justify-content: center;
      gap: clamp(18px, 4vw, 64px);
      padding: 10px 18px;
      color: var(--cream);
      background: var(--espresso);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .announcement--location {
      display: block;
      overflow: hidden;
      padding: 12px 0;
      border-bottom: 1px solid rgba(201, 162, 94, .22);
      text-transform: none;
      letter-spacing: normal;
      font-size: 13px;
      font-weight: 500;
      line-height: 1;
    }

    .announcement-marquee {
      overflow: hidden;
      width: 100%;
    }

    .announcement-track {
      display: flex;
      width: max-content;
      animation: announcement-scroll var(--marquee-duration, 40s) linear infinite;
      will-change: transform;
    }

    .announcement-group {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
    }

    .announcement-text {
      margin: 0;
      padding-right: 4rem;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .announcement--location a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: .18em;
    }

    @keyframes announcement-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(var(--marquee-shift, -50%));
      }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid var(--hairline);
      background: rgba(247, 242, 236, .94);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      min-height: var(--nav-height);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-block;
      line-height: 0;
      text-decoration: none;
    }

    .brand-logo {
      display: block;
      width: auto;
      height: var(--nav-logo-height);
      max-width: min(260px, 50vw);
      object-fit: contain;
    }

    .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(16px, 2.8vw, 34px);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .menu a {
      position: relative;
      padding: 8px 0;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, var(--champagne), var(--champagne-soft));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .24s ease;
    }

    .menu a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 13px 24px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--brown);
      color: var(--cream);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      line-height: 1;
      text-transform: uppercase;
      box-shadow: var(--shadow-sm);
      transition:
        transform .22s ease,
        background .22s ease,
        color .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      background: var(--cocoa);
      box-shadow: var(--shadow-md);
    }

    .nav-cta {
      min-height: 40px;
      padding: 10px 20px;
    }

    .nav-cta:hover,
    .nav > .button.nav-cta:hover {
      background: var(--cocoa);
    }

    .button.light {
      border-color: rgba(247, 242, 236, .58);
      background: rgba(247, 242, 236, .14);
      color: var(--cream);
      box-shadow: none;
    }

    .button.light:hover {
      border-color: var(--gold-line);
      background: rgba(247, 242, 236, .22);
      color: var(--cream);
    }

    .button.ghost {
      border-color: rgba(74, 53, 43, .28);
      background: transparent;
      color: var(--espresso);
      box-shadow: none;
    }

    .button.ghost:hover {
      border-color: var(--gold-line);
      background: rgba(255, 253, 249, .5);
      color: var(--brown);
    }

    .button.light--surface {
      border-color: rgba(74, 53, 43, .28);
      background: var(--white);
      color: var(--espresso);
      box-shadow: var(--shadow-sm);
    }

    .button.light--surface:hover {
      border-color: var(--gold-line);
      background: var(--cream);
      color: var(--brown);
    }

    .mobile-trigger {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: var(--sand);
      color: var(--espresso);
      font-size: 22px;
    }

    .mobile-menu {
      display: none;
      padding: 10px 20px 24px;
      border-top: 1px solid rgba(74, 53, 43, .12);
      background: var(--cream);
    }

    .mobile-menu a {
      display: block;
      padding: 16px 0;
      border-bottom: 1px solid rgba(74, 53, 43, .12);
      color: var(--espresso);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .14em;
      text-align: center;
      text-transform: uppercase;
    }

    .mobile-menu.is-open {
      display: block;
    }

    .menu a[aria-current="page"],
    .mobile-menu a[aria-current="page"] {
      color: var(--brown);
    }

    .page-hero {
      padding: clamp(78px, 10vw, 140px) 0 clamp(42px, 6vw, 80px);
      background:
        radial-gradient(circle at 18% 20%, rgba(220, 203, 194, .7), transparent 32%),
        linear-gradient(135deg, var(--cream), var(--sand));
    }

    .page-hero .container {
      max-width: 980px;
    }

    .page-hero p:last-child {
      max-width: 720px;
      color: rgba(45, 37, 34, .72);
      font-size: clamp(18px, 2vw, 23px);
    }

    .page-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .steps-flow {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      max-width: min(620px, 100%);
      margin-inline: auto;
    }

    .policy-card > span {
      display: block;
      margin-bottom: 12px;
      color: var(--champagne);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .14em;
    }

    .steps-flow--animate .steps-flow__step {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .steps-flow--animate .steps-flow__step.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .steps-flow__connector {
      position: relative;
      width: 2px;
      height: clamp(36px, 6vw, 60px);
      margin-inline: auto;
      flex-shrink: 0;
    }

    .steps-flow__connector::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--taupe) 0%, var(--cocoa) 55%, var(--taupe) 100%);
      transform: scaleY(1);
      transform-origin: top center;
      transition: transform .75s cubic-bezier(.33, 1, .68, 1);
    }

    .steps-flow__connector::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -4px;
      width: 8px;
      height: 8px;
      margin-left: -4px;
      border-radius: 50%;
      background: var(--cocoa);
      opacity: 1;
      transform: scale(1);
      transition: opacity .35s ease .5s, transform .35s ease .5s;
    }

    .steps-flow--animate .steps-flow__connector::before {
      transform: scaleY(0);
    }

    .steps-flow--animate .steps-flow__connector::after {
      opacity: 0;
      transform: scale(0);
      transition: opacity .35s ease .5s, transform .35s ease .5s;
    }

    .steps-flow--animate .steps-flow__connector.is-visible::before {
      transform: scaleY(1);
    }

    .steps-flow--animate .steps-flow__connector.is-visible::after {
      opacity: 1;
      transform: scale(1);
    }

    @media (prefers-reduced-motion: reduce) {
      .steps-flow--animate .steps-flow__step {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .steps-flow--animate .steps-flow__connector::before {
        transform: scaleY(1);
        transition: none;
      }

      .steps-flow--animate .steps-flow__connector::after {
        opacity: 1;
        transform: scale(1);
        transition: none;
      }
    }

    .split-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: clamp(28px, 6vw, 78px);
      align-items: center;
    }

    .text-panel,
    .policy-card {
      padding: clamp(26px, 4vw, 44px);
      border-radius: var(--r-lg);
      border: 1px solid var(--hairline);
      background: rgba(255, 253, 249, .72);
      box-shadow: var(--shadow-md);
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }

    .policy-card:hover,
    .text-panel:hover {
      transform: translateY(-2px);
      border-color: rgba(201, 162, 94, .28);
      box-shadow: var(--shadow-lg);
    }

    .soft-image {
      min-height: 420px;
      border-radius: var(--r-xl);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    .result-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .gallery-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      border-radius: var(--r-xl);
      border: 1px solid var(--hairline);
      box-shadow: var(--shadow-md);
      background: var(--sand);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .gallery-card.large {
      grid-column: span 2;
    }

    .gallery-card.tall {
      min-height: 520px;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      filter: saturate(.9) contrast(.95);
    }

    .gallery-card span {
      position: absolute;
      left: 22px;
      bottom: 22px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(74, 53, 43, .74);
      color: var(--cream);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
    }

    .gallery-card h3 {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 74px;
      max-width: 520px;
      color: var(--cream);
      font-size: clamp(26px, 3.5vw, 48px);
      text-shadow: 0 18px 38px rgba(0, 0, 0, .38);
    }

    .service-card.page-link,
    .service-card.category-trigger {
      color: var(--cream);
    }

    .service-card.category-trigger {
      border: none;
      cursor: pointer;
      text-align: left;
      font: inherit;
      width: 100%;
    }

    .category-modal {
      position: fixed;
      inset: 0;
      z-index: 40;
      display: grid;
      place-items: center;
      padding: clamp(18px, 4vw, 40px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s ease, visibility .25s ease;
    }

    .category-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    .category-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(45, 37, 34, .58);
      backdrop-filter: blur(6px);
    }

    .category-modal-dialog {
      position: relative;
      z-index: 1;
      width: min(720px, 100%);
      max-height: min(86vh, 860px);
      overflow: auto;
      padding: clamp(28px, 5vw, 42px);
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .category-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: var(--sand);
      color: var(--ink);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background .2s ease;
    }

    .category-modal-close:hover {
      background: var(--blush);
    }

    .category-modal-body h2 {
      margin: 0 0 24px;
      padding-right: 48px;
      font-size: clamp(34px, 5vw, 48px);
    }

    .category-modal-item + .category-modal-item {
      margin-top: 22px;
      padding-top: 22px;
      border-top: 1px solid rgba(74, 53, 43, .12);
    }

    .category-modal-item h3 {
      margin: 0 0 8px;
      font-size: 22px;
    }

    .category-modal-item p {
      margin: 0;
      color: rgba(45, 37, 34, .78);
      font-size: 16px;
      line-height: 1.65;
    }

    .category-modal-subitems {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .category-modal-subitems li + li {
      margin-top: 12px;
    }

    .category-modal-subitems strong {
      display: block;
      margin-bottom: 4px;
      font-size: 15px;
    }

    .category-modal-subitems p {
      margin: 0;
      color: rgba(45, 37, 34, .78);
      font-size: 15px;
      line-height: 1.6;
    }

    .category-modal-note {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 16px;
      background: var(--sand);
    }

    .category-modal-note strong {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .category-modal-note ul {
      margin: 0;
      padding-left: 18px;
      color: rgba(45, 37, 34, .78);
    }

    .category-modal-note li + li {
      margin-top: 6px;
    }

    .info-list a {
      text-decoration: underline;
      text-underline-offset: .18em;
    }

    .comparison-section {
      background: var(--white);
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: start;
    }

    .comparison-card {
      overflow: hidden;
      border: 1px solid var(--hairline);
      border-radius: var(--r-xl);
      background: var(--cream);
      box-shadow: var(--shadow-md);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .comparison-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .comparison-card:first-child {
      grid-column: span 2;
      display: grid;
      grid-template-columns: 1fr .72fr;
      align-items: stretch;
    }

    .comparison-media {
      --position: 50%;
      position: relative;
      overflow: hidden;
      min-height: 620px;
      background: var(--sand);
      cursor: ew-resize;
      touch-action: none;
      user-select: none;
    }

    .comparison-card:not(:first-child) .comparison-media {
      min-height: 520px;
    }

    .comparison-media img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      filter: saturate(.95) contrast(.96);
      pointer-events: none;
    }

    .comparison-before {
      position: absolute;
      inset: 0;
    }

    .comparison-after {
      position: absolute;
      inset: 0;
      clip-path: inset(0 0 0 var(--position));
    }

    .comparison-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--position);
      z-index: 3;
      width: 2px;
      background: rgba(255, 253, 249, .94);
      box-shadow: 0 0 0 1px rgba(74, 53, 43, .12), 0 18px 44px rgba(45, 37, 34, .35);
      transform: translateX(-50%);
      pointer-events: none;
    }

    .comparison-handle::after {
      content: "‹ ›";
      position: absolute;
      top: 50%;
      left: 50%;
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border: 2px solid rgba(255, 253, 249, .95);
      border-radius: 999px;
      background: rgba(92, 64, 51, .78);
      color: var(--cream);
      font-family: var(--display);
      font-size: 27px;
      line-height: 1;
      transform: translate(-50%, -50%);
      backdrop-filter: blur(12px);
    }

    .comparison-label {
      position: absolute;
      top: 18px;
      z-index: 4;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(74, 53, 43, .78);
      color: var(--cream);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      pointer-events: none;
    }

    .comparison-label.before {
      left: 18px;
    }

    .comparison-label.after {
      right: 18px;
    }

    .comparison-range {
      position: absolute;
      inset: 0;
      z-index: 5;
      width: 100%;
      height: 100%;
      margin: 0;
      opacity: 0;
      cursor: ew-resize;
    }

    .comparison-copy {
      padding: clamp(24px, 4vw, 46px);
      background:
        linear-gradient(180deg, rgba(255, 253, 249, .82), rgba(232, 221, 209, .62));
    }

    .comparison-copy span,
    .moment-card span {
      display: inline-flex;
      margin-bottom: 13px;
      color: var(--brown);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .comparison-copy h3 {
      margin: 0 0 12px;
      font-size: clamp(34px, 4vw, 58px);
      line-height: .98;
    }

    .comparison-copy p {
      margin: 0;
      color: rgba(45, 37, 34, .68);
    }

    .result-moments {
      background: var(--sand);
    }

    .moment-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .moment-card {
      position: relative;
      overflow: hidden;
      min-height: 390px;
      border-radius: var(--r-lg);
      border: 1px solid var(--hairline);
      background: var(--brown);
      box-shadow: var(--shadow-md);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .moment-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .moment-card.wide {
      grid-column: span 2;
    }

    .moment-card img {
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      filter: saturate(.92) contrast(.96);
      transition: transform .35s ease;
    }

    .moment-card:hover img {
      transform: scale(1.035);
    }

    .moment-card span {
      position: absolute;
      left: 20px;
      bottom: 20px;
      margin: 0;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(247, 242, 236, .88);
      color: var(--espresso);
      backdrop-filter: blur(12px);
    }

    .trust-section .text-panel {
      border: 1px solid rgba(247, 242, 236, .16);
      background: rgba(247, 242, 236, .08);
      color: var(--cream);
    }

    .trust-section .text-panel p:not(.eyebrow) {
      color: rgba(247, 242, 236, .74);
    }

    .hero-mobile-visual {
      display: none;
    }

    .hero {
      min-height: calc(100svh - 120px);
      display: grid;
      align-items: end;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 0;
      color: var(--cream);
      background:
        linear-gradient(180deg, rgba(45, 37, 34, .24), rgba(45, 37, 34, .72)),
        url("images/Team/hero-team.avif?v=20260619") center 38% / cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: .04;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      z-index: 0;
      background: linear-gradient(0deg, rgba(45, 37, 34, .78), transparent);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      padding: clamp(58px, 9vw, 120px) 0 clamp(44px, 6vw, 78px);
      display: block;
      max-width: 920px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-top: 28px;
    }

    .eyebrow {
      position: relative;
      margin: 0 0 18px;
      padding-bottom: 14px;
      color: var(--champagne);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .24em;
      text-transform: uppercase;
      opacity: .95;
    }

    .eyebrow::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 2.5rem;
      height: 1px;
      background: linear-gradient(90deg, var(--champagne), transparent);
    }

    .hero .eyebrow,
    .results .eyebrow,
    .trust-section .eyebrow {
      color: var(--champagne-soft);
    }

    .hero .eyebrow::after,
    .results .eyebrow::after,
    .trust-section .eyebrow::after {
      background: linear-gradient(90deg, var(--champagne-soft), transparent);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: var(--display);
      font-weight: 600;
      line-height: .96;
      letter-spacing: -.025em;
    }

    h1 {
      max-width: 980px;
      font-size: clamp(44px, 6.8vw, 88px);
    }

    .hero h1 {
      font-size: clamp(44px, 6.8vw, 88px);
    }

    h2 {
      font-size: clamp(36px, 5.5vw, 64px);
    }

    h3 {
      font-size: clamp(24px, 2.8vw, 40px);
    }

    .hero-copy {
      max-width: 530px;
      margin: 26px 0 0;
      color: rgba(247, 242, 236, .88);
      font-size: clamp(18px, 2.1vw, 24px);
      font-weight: 300;
      line-height: 1.45;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-card {
      padding: 24px;
      border: 1px solid rgba(247, 242, 236, .3);
      border-radius: 26px;
      background: rgba(74, 53, 43, .42);
      backdrop-filter: blur(18px);
      margin-bottom: calc(24px + 4.75rem + 16px);
    }

    .hero-card strong {
      display: block;
      font-family: var(--display);
      font-size: 34px;
      line-height: 1;
    }

    .hero-card p {
      margin: 10px 0 0;
      color: rgba(247, 242, 236, .82);
      font-size: 14px;
      line-height: 1.5;
    }

    section {
      padding: var(--section-y) 0;
    }

    /* First content section after any hero matches homepage rhythm */
    .hero + section,
    .page-hero + section {
      background: var(--cream);
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(270px, .58fr);
      gap: clamp(28px, 7vw, 100px);
      align-items: end;
      margin-bottom: clamp(34px, 6vw, 70px);
    }

    .section-head p {
      margin: 0;
      color: rgba(45, 37, 34, .72);
      font-size: 18px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
    }

    .service-card {
      min-height: 320px;
      height: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: 22px;
      border-radius: var(--r-lg);
      border: 1px solid rgba(201, 162, 94, .18);
      background: var(--sand);
      box-shadow: var(--shadow-md);
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold-line);
      box-shadow: var(--shadow-lg);
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 25%, rgba(45, 37, 34, .74));
      z-index: 1;
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.86) contrast(.94);
      transition: transform .6s ease;
    }

    .service-card:hover img {
      transform: scale(1.06);
    }

    .service-card .content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 148px;
      color: var(--cream);
    }

    .service-card span {
      display: inline-flex;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      width: fit-content;
      margin-bottom: 8px;
      padding: 4px 10px;
      border: 1px solid rgba(201, 162, 94, .35);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      opacity: .92;
    }

    .service-card h3 {
      flex-shrink: 0;
      margin: 0;
      font-size: clamp(22px, 1.65vw, 30px);
      line-height: 1.08;
      min-height: calc(2 * 1.08em);
      overflow-wrap: break-word;
      word-break: normal;
    }

    .service-card p {
      margin: auto 0 0;
      font-size: 14px;
      line-height: 1.42;
      opacity: .86;
    }

    .story {
      background: var(--sand);
    }

    .story-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: clamp(34px, 7vw, 96px);
      align-items: center;
    }

    .image-stack {
      position: relative;
      min-height: 570px;
      margin-top: -36px;
    }

    .image-stack img {
      position: absolute;
      object-fit: cover;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
    }

    .image-stack img:first-child {
      width: 74%;
      height: 78%;
      left: 0;
      top: -28px;
    }

    .image-stack img:last-child {
      width: 58%;
      height: 48%;
      right: 0;
      bottom: 0;
      border: 12px solid var(--sand);
    }

    .story-copy p {
      max-width: 680px;
      margin: 24px 0 0;
      color: rgba(45, 37, 34, .74);
      font-size: 19px;
      line-height: 1.55;
    }

    .story-copy h3 {
      margin: 28px 0 0;
      font-size: clamp(24px, 3.2vw, 34px);
      line-height: 1.08;
    }

    .story-copy a:not(.button) {
      color: var(--brown);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .story-copy a:not(.button):hover {
      color: var(--espresso);
    }

    .story-closing {
      font-weight: 600;
      color: var(--ink);
    }

    .story-actions {
      margin-top: 28px;
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 34px;
    }

    .fact {
      padding: 22px;
      border-radius: var(--r-md);
      border: 1px solid var(--hairline);
      background: rgba(247, 242, 236, .66);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .fact:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .fact strong {
      display: block;
      font-family: var(--display);
      font-size: 34px;
      line-height: 1;
      color: var(--espresso);
    }

    .fact span {
      display: block;
      margin-top: 8px;
      color: rgba(45, 37, 34, .68);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .tariffs {
      background: var(--cream);
    }

    .tariff-wrap {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: clamp(28px, 6vw, 86px);
      align-items: start;
    }

    .tabs {
      position: sticky;
      top: calc(var(--nav-height) + 28px);
      display: grid;
      gap: 8px;
      padding-top: 20px;
    }

    .tabs a {
      padding: 13px 16px;
      border: 1px solid rgba(74, 53, 43, .16);
      border-radius: 999px;
      color: var(--espresso);
      background: rgba(255, 253, 249, .44);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .tabs a[aria-current="true"] {
      background: var(--brown);
      color: var(--cream);
    }

    .price-panel {
      display: grid;
      gap: 56px;
    }

    .price-group {
      padding-bottom: 6px;
    }

    .price-group h3 {
      margin-bottom: 18px;
      color: var(--espresso);
      font-size: clamp(30px, 4vw, 52px);
    }

    .price-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      padding: 19px 0;
      border-bottom: 1px solid rgba(74, 53, 43, .18);
    }

    .price-row strong {
      display: block;
      font-size: 18px;
      font-weight: 500;
    }

    .price-row small {
      display: block;
      max-width: 620px;
      margin-top: 5px;
      color: rgba(45, 37, 34, .62);
      font-size: 13px;
      line-height: 1.45;
    }

    .price {
      color: var(--espresso);
      font-family: var(--display);
      font-size: 24px;
      font-weight: 600;
      white-space: nowrap;
    }

    .team-services-intro {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(16px, 2vw, 24px);
      align-items: stretch;
    }

    .tariffs-loading,
    .tariffs-error {
      margin: 0;
      color: rgba(45, 37, 34, .68);
      font-size: 17px;
    }

    .tariffs-error {
      display: grid;
      gap: 18px;
      max-width: 520px;
    }

    .results {
      background: var(--espresso);
      color: var(--cream);
    }

    .results .section-head p {
      color: rgba(247, 242, 236, .72);
    }

    .results-grid {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 22px;
      align-items: stretch;
    }

    .result-card {
      overflow: hidden;
      border-radius: var(--r-xl);
      border: 1px solid var(--hairline);
      background: var(--cream);
      color: var(--ink);
      min-height: 0;
      box-shadow: var(--shadow-md);
    }

    .result-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .results-grid--reviews {
      grid-template-columns: .92fr 1.08fr;
    }

    .reviews-panel {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: clamp(24px, 4vw, 36px);
      border: 1px solid rgba(201, 162, 94, .22);
      border-radius: var(--r-xl);
      background: rgba(247, 242, 236, .08);
      box-shadow: var(--shadow-sm);
    }

    .reviews-panel .eyebrow {
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .reviews-panel .eyebrow::after {
      display: none;
    }

    .salonized-reviews {
      min-height: 120px;
    }

    .reviews-slider {
      display: grid;
      gap: 16px;
    }

    .reviews-slider__viewport {
      overflow: hidden;
      border-radius: var(--r-md);
    }

    .reviews-slider__track {
      display: flex;
      align-items: stretch;
      transition: transform .45s ease;
      will-change: transform;
    }

    .reviews-slider__slide {
      flex: 0 0 100%;
      min-width: 100%;
      display: flex;
    }

    .reviews-slider__controls {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 12px;
    }

    .reviews-slider__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      padding: 0;
      border: 1px solid rgba(201, 162, 94, .35);
      border-radius: 999px;
      background: rgba(247, 242, 236, .12);
      color: var(--cream);
      font-family: var(--display);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      transition: border-color .25s ease, background-color .25s ease, color .25s ease;
    }

    .reviews-slider__btn:hover {
      border-color: var(--champagne);
      background: rgba(247, 242, 236, .2);
      color: var(--champagne-soft);
    }

    .reviews-slider__dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .reviews-slider__dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(247, 242, 236, .28);
      cursor: pointer;
      transition: transform .25s ease, background-color .25s ease;
    }

    .reviews-slider__dot.is-active {
      background: var(--champagne);
      transform: scale(1.2);
    }

    .reviews-panel .review-card {
      display: flex;
      flex-direction: column;
      width: 100%;
      min-height: 100%;
      padding: 18px 20px;
      border-radius: var(--r-md);
      background: #fff !important;
      color: var(--ink);
      border: 1px solid rgba(92, 64, 51, .12);
      box-shadow: var(--shadow-sm);
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .reviews-panel .review-card:hover {
      border-color: rgba(92, 64, 51, .24);
      box-shadow: var(--shadow-md);
    }

    .reviews-panel .review-card blockquote {
      flex: 1 1 auto;
      margin: 10px 0 0;
      font-family: var(--body);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
      color: var(--ink);
    }

    .reviews-panel .review-card .stars {
      letter-spacing: .16em;
      color: var(--brown) !important;
    }

    .reviews-panel .review-author {
      margin: 12px 0 0;
      margin-top: auto;
      padding-top: 12px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--brown);
    }

    .reviews-panel .review-author span {
      color: var(--cocoa);
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
    }

    .reviews-panel .reviews-fallback {
      margin: 0;
      color: rgba(247, 242, 236, .82);
      font-size: 15px;
    }

    .reviews-panel .reviews-fallback a {
      color: var(--champagne-soft);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .review-card {
      padding: 18px 20px;
      border-radius: var(--r-md);
      background: rgba(247, 242, 236, .08);
      border: 1px solid rgba(201, 162, 94, .16);
      transition: border-color .25s ease;
    }

    .review-card:hover {
      border-color: var(--gold-line);
    }

    .review-card blockquote {
      margin: 10px 0 0;
      font-family: var(--body);
      font-size: 15px;
      font-weight: 400;
      line-height: 1.55;
    }

    .review-author {
      margin: 12px 0 0;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .review-author span {
      color: rgba(247, 242, 236, .62);
      font-weight: 500;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .text-panel .social-links {
      margin-top: 16px;
      margin-bottom: 28px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(74, 53, 43, .08);
      color: var(--espresso);
      transition: background .2s ease, transform .2s ease, color .2s ease;
    }

    .social-links a:hover {
      background: rgba(74, 53, 43, .16);
      transform: translateY(-2px);
    }

    .social-links svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
      flex-shrink: 0;
      shape-rendering: geometricPrecision;
    }

    footer .social-links a {
      background: rgba(74, 53, 43, .08);
      color: var(--espresso);
    }

    footer .social-links a:hover {
      background: rgba(74, 53, 43, .16);
    }

    footer .footer-column .social-links {
      margin-top: 0;
    }

    .stars {
      letter-spacing: .16em;
      color: var(--champagne);
    }

    .quote-card blockquote {
      margin: 24px 0;
      font-family: var(--display);
      font-size: clamp(32px, 4.4vw, 58px);
      line-height: 1.05;
    }

    .team {
      background: var(--sand);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .member {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: var(--r-lg);
      border: 1px solid var(--hairline);
      background: var(--cream);
      box-shadow: var(--shadow-md);
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    .member:hover {
      transform: translateY(-4px);
      border-color: var(--gold-line);
      box-shadow: var(--shadow-lg);
    }

    .member img {
      height: 430px;
      object-fit: cover;
      object-position: center top;
    }

    .member-content {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: clamp(24px, 3vw, 32px);
    }

    .member-content h3 {
      margin: 0 0 10px;
      color: var(--espresso);
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.05;
    }

    .member-role {
      margin: 0 0 18px;
      color: var(--cocoa);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .member-bio {
      margin: 0;
      flex: 1;
      color: rgba(45, 37, 34, .78);
      font-size: 15px;
      line-height: 1.65;
    }

    .member-favorites {
      margin: 22px 0 0;
      padding-top: 18px;
      border-top: 1px solid rgba(74, 53, 43, .12);
      color: rgba(45, 37, 34, .74);
      font-size: 14px;
      line-height: 1.55;
    }

    .member-favorites span {
      display: block;
      margin-bottom: 6px;
      color: var(--espresso);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .team-manifesto {
      background:
        radial-gradient(circle at 82% 12%, rgba(220, 203, 194, .45), transparent 28%),
        linear-gradient(180deg, var(--cream), rgba(247, 242, 236, .94));
    }

    .manifesto-intro {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .manifesto-intro h2 {
      margin-bottom: clamp(24px, 4vw, 36px);
    }

    .manifesto-lead p {
      margin: 0;
      color: rgba(45, 37, 34, .74);
      font-size: clamp(17px, 1.8vw, 19px);
      line-height: 1.6;
    }

    .manifesto-lead p + p {
      margin-top: 18px;
    }

    .manifesto-visual {
      margin: clamp(42px, 6vw, 72px) auto 0;
      max-width: 980px;
      overflow: hidden;
      border-radius: 34px;
      box-shadow: var(--shadow);
    }

    .manifesto-visual img {
      aspect-ratio: 21 / 9;
      max-height: 420px;
      object-fit: cover;
      object-position: center;
    }

    .manifesto-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: clamp(42px, 6vw, 72px);
    }

    .manifesto-card {
      display: flex;
      flex-direction: column;
      padding: clamp(28px, 3.5vw, 38px);
      border-radius: var(--r-lg);
      border: 1px solid var(--hairline);
      background: rgba(255, 253, 249, .88);
      box-shadow: var(--shadow-md);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .manifesto-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .manifesto-card h3 {
      margin: 0 0 16px;
      color: var(--espresso);
      font-size: clamp(22px, 2.4vw, 28px);
      line-height: 1.12;
    }

    .manifesto-card p {
      margin: 0;
      color: rgba(45, 37, 34, .76);
      font-size: 15px;
      line-height: 1.65;
    }

    .manifesto-outro {
      max-width: 640px;
      margin: clamp(48px, 7vw, 80px) auto 0;
      text-align: center;
    }

    .manifesto-outro p {
      margin: 0;
      color: rgba(45, 37, 34, .74);
      font-size: 17px;
      line-height: 1.6;
    }

    .manifesto-signoff {
      margin-top: 28px;
      color: var(--espresso);
      font-family: var(--display);
      font-size: clamp(22px, 2.8vw, 30px);
      font-weight: 600;
      line-height: 1.2;
    }

    .visit {
      padding-bottom: 160px;
      background:
        linear-gradient(90deg, rgba(247, 242, 236, .92), rgba(247, 242, 236, .58)),
        url("images/salon/reception.avif?v=20260619") center / cover;
    }

    .visit-card {
      max-width: 720px;
      padding: clamp(34px, 6vw, 70px);
      border-radius: var(--r-xl);
      border: 1px solid var(--hairline);
      background: rgba(255, 253, 249, .82);
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(16px);
    }

    .info-list {
      display: grid;
      gap: 18px;
      margin: 28px 0 0;
    }

    .info-list div {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(74, 53, 43, .16);
    }

    .info-list strong {
      color: var(--espresso);
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    footer {
      padding: 54px 0;
      color: var(--ink);
      background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
      border-top: 1px solid var(--hairline);
    }

    .footer-grid {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .footer-grid p {
      margin: 8px 0 0;
      color: rgba(45, 37, 34, .72);
    }

    .footer-full {
      grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, .7fr)) minmax(220px, .9fr);
      gap: 28px;
      align-items: start;
    }

    .footer-brand .brand-logo {
      height: 127px;
      max-width: min(340px, 100%);
    }

    .footer-note {
      max-width: 34ch;
    }

    .footer-column {
      display: grid;
      gap: var(--footer-line-gap);
      align-content: start;
    }

    .footer-column strong {
      color: var(--espresso);
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .footer-column > a:not(.button),
    .footer-column p {
      display: block;
      margin: 0;
      color: rgba(45, 37, 34, .68);
    }

    .footer-column > a:not(.button) {
      line-height: 1.45;
    }

    .footer-column p {
      line-height: calc(1em + var(--footer-line-gap));
    }

    .footer-column > a:not(.button):hover {
      color: var(--brown);
    }

    .footer-column-cta {
      justify-items: start;
    }

    .footer-column-cta .button {
      width: auto;
    }

    footer .button.light {
      border-color: transparent;
      background: var(--brown);
      color: var(--cream);
      box-shadow: var(--shadow-sm);
    }

    footer .button.light:hover {
      border-color: transparent;
      background: var(--cocoa);
      color: var(--cream);
    }

    .footer-credits {
      width: min(var(--max), calc(100% - 40px));
      margin: 28px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(74, 53, 43, .12);
      text-align: center;
    }

    .footer-credits p {
      margin: 0;
      font-size: 12px;
      letter-spacing: .06em;
      color: rgba(45, 37, 34, .58);
    }

    .footer-credits a {
      color: rgba(45, 37, 34, .72);
      text-decoration: none;
      transition: color .2s ease;
    }

    .footer-credits a:hover {
      color: var(--brown);
    }

    .booking-section {
      padding: clamp(48px, 8vw, 96px) 0 clamp(80px, 10vw, 120px);
      background: var(--cream);
    }

    .booking-shell {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      padding: clamp(20px, 4vw, 36px);
      background: var(--white);
      border-radius: 28px;
      border: 1px solid rgba(74, 53, 43, .08);
      box-shadow: var(--shadow);
    }

    .booking-shell__intro {
      margin-bottom: clamp(20px, 4vw, 32px);
      text-align: center;
    }

    .booking-shell__intro h2 {
      font-size: clamp(32px, 5vw, 48px);
    }

    .booking-shell__intro p {
      max-width: 52ch;
      margin: 12px auto 0;
      color: rgba(45, 37, 34, .72);
      font-size: clamp(17px, 2vw, 20px);
      line-height: 1.5;
    }

    .salonized-booking--inline {
      min-height: 700px;
    }

    .salonized-booking--inline iframe {
      display: block;
      border-radius: 18px;
    }

    .salonized-booking-launcher {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    iframe[src*="widget.salonized.com/button"] {
      display: none !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    .sticky-cta {
      position: fixed;
      right: max(20px, calc((100vw - var(--max)) / 2));
      bottom: 24px;
      z-index: 30;
      border-radius: var(--r-md);
      border: 1px solid rgba(201, 162, 94, .35);
      background: var(--brown);
      color: var(--cream);
      padding: 18px 26px;
      font-family: var(--display);
      font-size: 24px;
      font-weight: 700;
      box-shadow: var(--shadow-md);
      transition: opacity .2s ease, visibility .2s ease, transform .22s ease, box-shadow .22s ease;
    }

    .sticky-cta:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    body.booking-widget-open .sticky-cta {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    @media (max-width: 980px) {
      .menu,
      .nav > .button {
        display: none;
      }

      .site-header {
        width: 100%;
        box-sizing: border-box;
        padding-inline: 14px;
      }

      .nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        min-height: 0;
        padding-block: 10px;
        grid-template-columns: none;
      }

      .site-header .nav {
        display: flex;
      }

      .brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 52px);
      }

      .brand-logo {
        height: clamp(76px, 22vw, 96px);
        max-width: 100%;
      }

      .mobile-trigger {
        display: inline-grid;
        flex: 0 0 44px;
        margin-left: auto;
        place-items: center;
      }

      .hero {
        display: block;
        position: relative;
        min-height: 0;
        overflow: hidden;
        background: transparent;
        color: var(--cream);
        isolation: isolate;
      }

      .hero::after {
        display: none;
      }

      .hero::before {
        display: none;
      }

      .hero-inner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        max-width: none;
        max-height: 100%;
        margin: 0;
        overflow: hidden;
        padding: clamp(20px, 5vw, 32px) clamp(14px, 4vw, 20px) clamp(24px, 6vw, 40px);
        background: none;
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero .eyebrow {
        color: var(--champagne-soft);
        text-shadow: 0 1px 16px rgba(0, 0, 0, .55);
      }

      .hero .eyebrow::after {
        background: linear-gradient(90deg, var(--champagne-soft), transparent);
      }

      .hero h1 {
        color: var(--white);
        text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
      }

      .hero-copy {
        max-width: none;
        margin-top: 16px;
        color: rgba(255, 253, 249, .96);
        font-size: clamp(16px, 4.2vw, 18px);
        line-height: 1.4;
        text-shadow: 0 1px 18px rgba(0, 0, 0, .5);
      }

      .hero-badges {
        display: none;
      }

      .hero-actions {
        margin-top: 20px;
      }

      .hero-mobile-visual {
        display: block;
        position: relative;
        z-index: 0;
        width: 100%;
        margin: 0;
        line-height: 0;
      }

      .hero-mobile-visual img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        vertical-align: top;
      }

      .hero .button.light {
        border-color: rgba(247, 242, 236, .45);
        background: rgba(247, 242, 236, .14);
        color: var(--cream);
      }

      .hero .button.light:hover {
        background: rgba(247, 242, 236, .24);
        color: var(--cream);
      }

      .hero-inner,
      .section-head,
      .story-grid,
      .tariff-wrap,
      .results-grid,
      .results-grid--reviews,
      .comparison-grid,
      .result-gallery,
      .page-grid,
      .split-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        max-width: 360px;
      }

      .gallery-card.large {
        grid-column: auto;
      }

      .comparison-card:first-child {
        grid-column: auto;
        display: block;
      }

      .moment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .services-grid,
      .team-grid,
      .manifesto-grid {
        grid-template-columns: 1fr;
      }

      .team-services-intro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-card {
        min-height: 390px;
      }

      .image-stack {
        min-height: 380px;
        margin-top: 0;
      }

      .tabs {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 24px 0 12px;
      }

      .tabs a {
        white-space: nowrap;
      }

      .footer-full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .result-card {
        min-height: 320px;
        max-height: 480px;
      }

      .result-card img {
        height: 100%;
        min-height: 320px;
      }

      .tariffs--immersive .tariff-wrap,
      .tariffs--immersive .tariff-wrap:has(#member-page-nav) {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        grid-template-rows: none;
        width: min(100% - 28px, var(--max-tariffs));
      }

      .tariffs--immersive .tabs--team,
      .tariffs--immersive .price-panel--immersive,
      .tariffs--immersive .member-page-nav {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        min-width: 0;
      }

      .tariffs--immersive .member-page-nav {
        display: none;
      }

      .behandelingen-team-showcase {
        display: none;
      }

      .price-panel--immersive,
      .member-pages,
      .member-panel,
      .category-viewport,
      .category-pages {
        width: 100%;
        min-width: 0;
      }

      .tabs--dock {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 14px;
        order: -1;
        overflow: visible;
        padding: 0 0 18px;
        margin-bottom: 4px;
        width: 100%;
        max-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
      }

      .tabs--dock .team-tab {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 56px;
        height: 56px;
        padding: 3px;
        border-radius: 50%;
        border: 2px solid rgba(74, 53, 43, .12);
        background: rgba(255, 253, 249, .92);
        white-space: nowrap;
      }

      .tabs--dock .team-tab .tabs__label {
        display: none;
      }

      .tabs--dock .team-tab .tabs__avatar {
        width: 46px;
        height: 46px;
        border: none;
      }

      .tabs--dock .team-tab[aria-current="true"] {
        border-color: var(--brown);
        background: var(--brown);
        box-shadow: 0 8px 24px rgba(74, 53, 43, .24);
        transform: none;
      }

      .tabs--dock .team-tab[aria-current="true"] .tabs__avatar {
        border: 2px solid rgba(255, 253, 249, .65);
      }

      .tabs--dock .team-tab:hover {
        transform: none;
        border-color: rgba(74, 53, 43, .28);
      }
    }

    @media (max-width: 620px) {
      body {
        font-size: 16px;
      }

      .nav {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 8px;
        padding-block: 8px;
      }

      .hero-inner {
        width: 100%;
        max-width: none;
        padding-bottom: clamp(28px, 8vw, 48px);
      }

      .container,
      .footer-grid {
        width: min(100% - 28px, var(--max));
      }

      .brand-logo {
        height: 84px;
        max-width: calc(100vw - 72px);
      }

      .footer-brand .brand-logo {
        height: 116px;
        max-width: min(320px, 100%);
      }

      h1 {
        font-size: clamp(44px, 14vw, 72px);
      }

      section {
        padding: 72px 0;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .facts {
        grid-template-columns: 1fr;
      }

      .price-row {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .price {
        font-size: 22px;
      }

      .member img {
        height: 380px;
      }

      .manifesto-visual img {
        aspect-ratio: 4 / 3;
        max-height: none;
      }

      .info-list div {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .sticky-cta {
        right: 14px;
        left: 14px;
        bottom: 14px;
        text-align: center;
      }

      .hero-card {
        margin-bottom: calc(14px + 4.75rem + 16px);
      }

      .footer-full {
        grid-template-columns: 1fr;
      }

      .footer-column-cta .button {
        width: 100%;
      }

      .comparison-media,
      .comparison-card:not(:first-child) .comparison-media {
        min-height: 430px;
      }

      .comparison-handle::after {
        width: 50px;
        height: 50px;
        font-size: 23px;
      }

      .comparison-copy {
        padding: 26px;
      }

      .moment-grid {
        grid-template-columns: 1fr;
      }

      .moment-card,
      .moment-card.wide {
        grid-column: auto;
        min-height: 380px;
      }

      .announcement--location {
        font-size: 12px;
        line-height: 1.15;
        padding: 10px 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .announcement-track {
        animation: none;
        width: 100%;
        justify-content: center;
      }

      .announcement-group[aria-hidden="true"],
      .announcement-text[aria-hidden="true"] {
        display: none;
      }

      .announcement-text {
        padding-right: 0;
        white-space: normal;
        text-align: center;
        max-width: min(980px, calc(100% - 40px));
        margin-inline: auto;
      }
    }

    @media (max-width: 620px) and (prefers-reduced-motion: reduce) {
      .announcement-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 24px);
        font-size: 11px;
      }
    }

    /* Scroll reveal — site-wide */
    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity .7s cubic-bezier(.22, 1, .36, 1),
        transform .7s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .page-hero--behandelingen {
      position: relative;
      overflow: hidden;
      padding: clamp(96px, 12vw, 168px) 0 clamp(72px, 8vw, 120px);
      background:
        radial-gradient(ellipse 80% 60% at 85% 15%, rgba(220, 203, 194, .55), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(184, 168, 154, .35), transparent 50%),
        linear-gradient(160deg, #faf6f1 0%, var(--sand) 48%, #efe4d8 100%);
    }

    .behandelingen-hero-glow,
    .behandelingen-hero-grain,
    .behandelingen-tariffs-glow {
      pointer-events: none;
    }

    .behandelingen-hero-glow {
      position: absolute;
      inset: -20% -10%;
      background:
        radial-gradient(circle at 30% 40%, rgba(92, 64, 51, .12), transparent 42%),
        radial-gradient(circle at 70% 20%, rgba(255, 253, 249, .8), transparent 35%);
      animation: behandelingenGlow 14s ease-in-out infinite alternate;
    }

    .behandelingen-hero-grain {
      position: absolute;
      inset: 0;
      opacity: .04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    @keyframes behandelingenGlow {
      from { transform: translate3d(0, 0, 0) scale(1); }
      to { transform: translate3d(2%, -2%, 0) scale(1.04); }
    }

    .behandelingen-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, .82fr);
      gap: clamp(40px, 7vw, 96px);
      align-items: center;
      max-width: var(--max);
    }

    .behandelingen-hero-copy h1 {
      max-width: 11ch;
      font-size: clamp(42px, 6.5vw, 86px);
      line-height: .98;
      letter-spacing: -.02em;
    }

    .behandelingen-hero-copy h1 em {
      font-style: italic;
      color: var(--brown);
    }

    .behandelingen-hero-copy p:last-of-type {
      max-width: 38rem;
      margin-bottom: 28px;
      font-size: clamp(17px, 1.8vw, 21px);
      line-height: 1.6;
    }

    .behandelingen-hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .live-badge,
    .hero-stat {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .live-badge {
      color: var(--cream);
      background: linear-gradient(135deg, var(--brown), #3d2a22);
      box-shadow: 0 12px 32px rgba(74, 53, 43, .28);
    }

    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #7dffa8;
      box-shadow: 0 0 12px rgba(125, 255, 168, .8);
      animation: livePulse 2s ease-in-out infinite;
    }

    @keyframes livePulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .65; transform: scale(.88); }
    }

    .hero-stat {
      color: var(--espresso);
      background: rgba(255, 253, 249, .72);
      border: 1px solid rgba(74, 53, 43, .14);
      backdrop-filter: blur(8px);
    }

    .hero .hero-stat,
    .hero-badges .hero-stat {
      color: var(--cream);
      background: rgba(74, 53, 43, .42);
      border-color: rgba(201, 162, 94, .28);
    }

    .behandelingen-hero-visual {
      position: relative;
      min-height: clamp(340px, 42vw, 520px);
      margin: 0;
    }

    .behandelingen-hero-visual img {
      position: absolute;
      border-radius: 28px;
      object-fit: cover;
      box-shadow: 0 28px 80px rgba(74, 53, 43, .22);
      transition: transform .8s cubic-bezier(.22, 1, .36, 1);
    }

    .behandelingen-hero-visual img:nth-child(1) {
      inset: 8% 18% 22% 0;
      z-index: 3;
    }

    .behandelingen-hero-visual img:nth-child(2) {
      inset: 0 0 34% 28%;
      z-index: 2;
      transform: rotate(3deg);
    }

    .behandelingen-hero-visual img:nth-child(3) {
      inset: 34% 0 0 42%;
      z-index: 1;
      transform: rotate(-4deg);
    }

    .page-hero--behandelingen:hover .behandelingen-hero-visual img:nth-child(1) {
      transform: translateY(-6px);
    }

    .behandelingen-team-showcase {
      position: relative;
      padding: clamp(56px, 8vw, 110px) 0 clamp(24px, 4vw, 48px);
      background: var(--cream);
    }

    .behandelingen-section-head {
      max-width: 640px;
      margin-bottom: clamp(32px, 5vw, 56px);
    }

    .behandelingen-section-head h2 {
      margin: 0 0 14px;
      font-size: clamp(34px, 4.5vw, 58px);
      line-height: 1.02;
    }

    .behandelingen-section-head p:last-child {
      margin: 0;
      color: rgba(45, 37, 34, .68);
      font-size: 18px;
    }

    .team-spotlight-card {
      --member-accent: var(--brown);
      position: relative;
      display: grid;
      grid-template-rows: 1.15fr auto;
      overflow: hidden;
      min-height: 420px;
      border-radius: 32px;
      text-decoration: none;
      color: inherit;
      background: var(--white);
      border: 1px solid rgba(74, 53, 43, .1);
      box-shadow:
        0 4px 24px rgba(74, 53, 43, .06),
        0 24px 64px rgba(74, 53, 43, .1);
      transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        box-shadow .45s ease,
        border-color .45s ease;
    }

    .team-spotlight-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(145deg, rgba(255, 253, 249, .2), var(--member-accent));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity .45s ease;
      pointer-events: none;
    }

    .team-spotlight-card:hover,
    .team-spotlight-card.is-active {
      transform: translateY(-10px);
      border-color: rgba(74, 53, 43, .18);
      box-shadow:
        0 8px 32px rgba(74, 53, 43, .1),
        0 36px 90px rgba(74, 53, 43, .18);
    }

    .team-spotlight-card:hover::before,
    .team-spotlight-card.is-active::before {
      opacity: 1;
    }

    .team-spotlight-card__media {
      position: relative;
      overflow: hidden;
      min-height: 240px;
    }

    .team-spotlight-card__media img {
      width: 100%;
      height: 100%;
      min-height: 240px;
      object-fit: cover;
      object-position: center 18%;
      transition: transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .team-spotlight-card:hover .team-spotlight-card__media img {
      transform: scale(1.06);
    }

    .team-spotlight-card__shine {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(45, 37, 34, .55) 100%);
    }

    .team-spotlight-card__body {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 24px 24px 28px;
    }

    .team-spotlight-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .team-spotlight-card__role,
    .team-spotlight-card__count {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .team-spotlight-card__role {
      color: var(--member-accent);
    }

    .team-spotlight-card__count {
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--espresso);
      background: rgba(232, 221, 209, .65);
    }

    .team-spotlight-card__body h3 {
      margin: 0;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.05;
    }

    .team-spotlight-card__body p {
      margin: 0;
      color: rgba(45, 37, 34, .68);
      font-size: 15px;
      line-height: 1.5;
    }

    .team-spotlight-card__cta {
      margin-top: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--brown);
    }

    .tariffs--immersive {
      position: relative;
      overflow: hidden;
      padding: clamp(48px, 7vw, 96px) 0 clamp(80px, 10vw, 140px);
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(220, 203, 194, .4), transparent 60%),
        linear-gradient(180deg, #f3ece4 0%, var(--cream) 100%);
    }

    .behandelingen-tariffs-glow {
      position: absolute;
      top: -120px;
      right: -80px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(92, 64, 51, .08), transparent 68%);
    }

    .tariffs--immersive .tariff-wrap {
      position: relative;
      z-index: 1;
      width: min(var(--max-tariffs), calc(100% - 32px));
      grid-template-columns: 220px minmax(0, 1fr);
      gap: clamp(24px, 4vw, 56px);
    }

    .tariffs--immersive .tariff-wrap:has(#member-page-nav) {
      grid-template-columns: 220px minmax(0, 1fr);
      grid-template-rows: auto auto;
    }

    .tariffs--immersive .price-panel--immersive {
      grid-column: 2;
      grid-row: 1;
    }

    .member-page-nav {
      grid-column: 2;
      grid-row: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 20px;
      padding: 14px 18px;
      border-radius: 20px;
      background: rgba(255, 253, 249, .78);
      border: 1px solid rgba(74, 53, 43, .1);
      backdrop-filter: blur(12px);
    }

    .member-page-nav__btn {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      padding: 0;
      border: 1px solid rgba(74, 53, 43, .16);
      border-radius: 50%;
      background: rgba(255, 253, 249, .92);
      color: var(--espresso);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background .25s ease, transform .25s ease, opacity .25s ease;
    }

    .member-page-nav__btn:hover:not(:disabled) {
      background: var(--brown);
      color: var(--cream);
      transform: translateY(-2px);
    }

    .member-page-nav__btn:disabled {
      opacity: .35;
      cursor: not-allowed;
    }

    .member-page-nav__indicator {
      margin: 0;
      color: rgba(45, 37, 34, .68);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-align: center;
    }

    .member-pages {
      position: relative;
      perspective: 1500px;
      transform-style: preserve-3d;
      transition: height .58s cubic-bezier(.22, 1, .36, 1);
      overflow: hidden;
    }

    .member-pages.is-turning {
      overflow: hidden;
    }

    .member-panel {
      --member-accent: var(--brown);
      padding: clamp(28px, 4vw, 44px);
      border-radius: 36px;
      background: rgba(255, 253, 249, .82);
      border: 1px solid rgba(74, 53, 43, .1);
      box-shadow:
        0 4px 24px rgba(74, 53, 43, .05),
        0 28px 72px rgba(74, 53, 43, .1);
      backdrop-filter: blur(12px);
      backface-visibility: hidden;
      will-change: transform, opacity;
    }

    .member-pages:not(.is-turning) .member-panel.is-active {
      position: relative;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: none;
    }

    .member-pages:not(.is-turning) .member-panel:not(.is-active) {
      position: absolute;
      inset: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: rotateY(10deg) translateX(4%);
    }

    .member-pages.is-turning .member-panel {
      position: absolute;
      inset: 0;
      width: 100%;
    }

    .member-panel.is-leaving-forward {
      z-index: 2;
      pointer-events: none;
      animation: pageTurnLeaveForward .68s cubic-bezier(.45, 0, .2, 1) forwards;
    }

    .member-panel.is-entering-forward {
      z-index: 3;
      pointer-events: none;
      animation: pageTurnEnterForward .68s cubic-bezier(.45, 0, .2, 1) forwards;
    }

    .member-panel.is-leaving-back {
      z-index: 2;
      pointer-events: none;
      animation: pageTurnLeaveBack .68s cubic-bezier(.45, 0, .2, 1) forwards;
    }

    .member-panel.is-entering-back {
      z-index: 3;
      pointer-events: none;
      animation: pageTurnEnterBack .68s cubic-bezier(.45, 0, .2, 1) forwards;
    }

    @keyframes pageTurnLeaveForward {
      0% {
        opacity: 1;
        transform: rotateY(0deg) translateX(0) scale(1);
        filter: brightness(1);
        box-shadow: 0 28px 72px rgba(74, 53, 43, .1);
      }
      100% {
        opacity: 0;
        transform: rotateY(-22deg) translateX(-10%) scale(.97);
        filter: brightness(.9);
        box-shadow: -18px 18px 40px rgba(74, 53, 43, .08);
      }
    }

    @keyframes pageTurnEnterForward {
      0% {
        opacity: 0;
        transform: rotateY(22deg) translateX(10%) scale(.97);
        filter: brightness(.9);
        box-shadow: 18px 18px 40px rgba(74, 53, 43, .08);
      }
      100% {
        opacity: 1;
        transform: rotateY(0deg) translateX(0) scale(1);
        filter: brightness(1);
        box-shadow: 0 28px 72px rgba(74, 53, 43, .1);
      }
    }

    @keyframes pageTurnLeaveBack {
      0% {
        opacity: 1;
        transform: rotateY(0deg) translateX(0) scale(1);
        filter: brightness(1);
      }
      100% {
        opacity: 0;
        transform: rotateY(22deg) translateX(10%) scale(.97);
        filter: brightness(.9);
      }
    }

    @keyframes pageTurnEnterBack {
      0% {
        opacity: 0;
        transform: rotateY(-22deg) translateX(-10%) scale(.97);
        filter: brightness(.9);
      }
      100% {
        opacity: 1;
        transform: rotateY(0deg) translateX(0) scale(1);
        filter: brightness(1);
      }
    }

    .team-spotlight-card {
      width: 100%;
      padding: 0;
      border: none;
      text-align: left;
      font: inherit;
      cursor: pointer;
    }

    .tabs--dock .team-tab {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: center;
      width: 100%;
      padding: 12px 14px;
      border: 1px solid transparent;
      border-radius: 18px;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
      transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
    }

    .tabs--dock .team-tab:hover {
      background: rgba(232, 221, 209, .55);
      transform: translateX(4px);
    }

    .tabs--dock .team-tab[aria-current="true"] {
      background: linear-gradient(135deg, var(--brown), #3f2d25);
      color: var(--cream);
      border-color: transparent;
      box-shadow: 0 12px 28px rgba(74, 53, 43, .24);
    }

    .member-price-group {
      scroll-margin-top: calc(var(--nav-height) + 48px);
    }

    .member-panel + .member-panel {
      margin-top: 0;
    }

    .tabs--dock {
      top: calc(var(--nav-height) + 20px);
      padding: 14px;
      border-radius: 24px;
      background: rgba(255, 253, 249, .78);
      border: 1px solid rgba(74, 53, 43, .12);
      backdrop-filter: blur(16px);
      box-shadow: 0 20px 50px rgba(74, 53, 43, .1);
    }

    .tabs__avatar {
      overflow: hidden;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid rgba(255, 253, 249, .5);
    }

    .tabs__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tabs__label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .price-panel--immersive {
      gap: clamp(40px, 6vw, 72px);
    }

    .member-price-group {
      scroll-margin-top: calc(var(--nav-height) + 48px);
    }

    .member-header {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: clamp(18px, 3vw, 28px);
      align-items: center;
      margin-bottom: clamp(28px, 4vw, 44px);
      padding-bottom: clamp(24px, 3vw, 36px);
      border-bottom: 1px solid rgba(74, 53, 43, .1);
    }

    .member-header__avatar {
      overflow: hidden;
      width: clamp(88px, 10vw, 112px);
      height: clamp(88px, 10vw, 112px);
      border-radius: 50%;
      border: 3px solid rgba(255, 253, 249, .9);
      box-shadow:
        0 0 0 2px var(--member-accent),
        0 16px 40px rgba(74, 53, 43, .18);
    }

    .member-header__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .member-header__eyebrow {
      margin: 0 0 6px;
      color: var(--member-accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .member-header h3 {
      margin: 0;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.02;
    }

    .member-header .member-role {
      margin: 8px 0 0;
      color: rgba(45, 37, 34, .58);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .member-panel__categories,
    .member-categories {
      display: grid;
      gap: clamp(18px, 3vw, 24px);
      overflow: visible;
    }

    .category-picker {
      display: grid;
      gap: 12px;
    }

    .category-select {
      display: none;
      width: 100%;
      min-height: 48px;
      padding: 12px 44px 12px 16px;
      border: 1px solid rgba(74, 53, 43, .16);
      border-radius: 16px;
      background: rgba(255, 253, 249, .92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a352b' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E") no-repeat right 16px center;
      color: var(--espresso);
      font: inherit;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      appearance: none;
      cursor: pointer;
    }

    .category-select:focus-visible {
      outline: none;
      box-shadow: var(--focus-ring);
    }

    .category-tabs {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      overflow: visible;
    }

    .category-tab {
      flex: 0 0 auto;
      padding: 10px 16px;
      border: 1px solid rgba(74, 53, 43, .14);
      border-radius: 999px;
      background: rgba(255, 253, 249, .72);
      color: var(--espresso);
      font: inherit;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .11em;
      text-transform: uppercase;
      white-space: nowrap;
      text-align: center;
      line-height: 1.2;
      cursor: pointer;
      transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
    }

    .category-tab:hover {
      background: rgba(232, 221, 209, .75);
      transform: translateY(-1px);
    }

    .category-tab[aria-selected="true"] {
      background: var(--brown);
      color: var(--cream);
      border-color: transparent;
      box-shadow: 0 18px 46px rgba(74, 53, 43, .28);
    }

    .category-tab[aria-selected="true"]:hover {
      background: var(--cocoa);
      color: var(--cream);
    }

    .category-pages {
      position: relative;
      overflow: hidden;
      padding: clamp(20px, 3vw, 28px);
      border-radius: 24px;
      background: rgba(247, 242, 236, .65);
      border: 1px solid rgba(74, 53, 43, .08);
      isolation: isolate;
    }

    .category-pages--measure {
      transition: none;
    }

    .category-viewport {
      position: relative;
      overflow: hidden;
      width: 100%;
      container-type: inline-size;
      container-name: category-viewport;
    }

    .category-track {
      display: flex;
      width: max-content;
      height: 100%;
      transition: transform .68s cubic-bezier(.22, 1, .36, 1);
      will-change: transform;
    }

    .category-track.is-instant {
      transition: none;
    }

    .category-panel {
      display: flex;
      flex: 0 0 100%;
      flex-direction: column;
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      min-height: 0;
      height: 100%;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: none;
      overflow: hidden;
      box-sizing: border-box;
    }

    @supports (width: 1cqi) {
      .category-panel {
        flex: 0 0 100cqi;
        width: 100cqi;
        min-width: 100cqi;
        max-width: 100cqi;
      }
    }

    .category-panel__actions {
      display: flex;
      flex: 0 0 auto;
      justify-content: flex-end;
      margin-bottom: 16px;
    }

    .service-tile-scroll {
      flex: 0 0 auto;
      width: 100%;
      height: var(--services-viewport-height, auto);
      max-height: var(--services-viewport-height, none);
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior: contain;
      touch-action: pan-y;
      padding-right: 4px;
      -webkit-overflow-scrolling: touch;
    }

    .sparklezz-scrollbar {
      scrollbar-width: thin;
      scrollbar-color: rgba(92, 64, 51, .45) rgba(232, 221, 209, .55);
    }

    .sparklezz-scrollbar::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    .sparklezz-scrollbar::-webkit-scrollbar-track {
      margin: 4px 0;
      background: rgba(232, 221, 209, .55);
      border-radius: 999px;
    }

    .sparklezz-scrollbar::-webkit-scrollbar-thumb {
      background: rgba(92, 64, 51, .42);
      border: 2px solid rgba(232, 221, 209, .55);
      border-radius: 999px;
      background-clip: padding-box;
    }

    .sparklezz-scrollbar::-webkit-scrollbar-thumb:hover {
      background: var(--brown);
      background-clip: padding-box;
    }

    .category-info-link {
      flex-shrink: 0;
      padding: 9px 16px;
      border: 1px solid rgba(74, 53, 43, .16);
      border-radius: 999px;
      background: rgba(255, 253, 249, .9);
      color: var(--espresso);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s ease, color .25s ease, transform .25s ease;
    }

    .category-info-link:hover {
      background: var(--brown);
      color: var(--cream);
      transform: translateY(-2px);
    }

    .service-tile-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .service-tile {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: start;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(255, 253, 249, .92);
      border: 1px solid rgba(74, 53, 43, .08);
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        border-color .3s ease;
    }

    .service-tile:focus-visible {
      outline: 2px solid var(--brown);
      outline-offset: 3px;
    }

    .service-tile:hover {
      transform: translateY(-3px);
      border-color: rgba(74, 53, 43, .16);
      box-shadow: 0 14px 36px rgba(74, 53, 43, .1);
    }

    .service-tile--static {
      cursor: default;
    }

    @media (hover: hover) {
      .service-tile--static:hover {
        transform: none;
        border-color: rgba(74, 53, 43, .08);
        box-shadow: none;
      }
    }

    .service-tile__main h5 {
      margin: 0 0 8px;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.35;
    }

    .service-tile__meta {
      margin: 0;
    }

    .service-tile__duration {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 999px;
      color: var(--espresso);
      background: rgba(232, 221, 209, .75);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .service-tile__desc {
      margin: 10px 0 0;
      color: rgba(45, 37, 34, .62);
      font-size: 13px;
      line-height: 1.45;
    }

    .service-tile__cta {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 12px;
      color: var(--brown);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .02em;
    }

    .service-tile__price {
      color: var(--espresso);
      font-family: var(--display);
      font-size: clamp(22px, 2.2vw, 28px);
      font-weight: 600;
      white-space: nowrap;
      line-height: 1;
    }

    .tariffs-loading--pulse {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .tariffs-loading--pulse::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--brown);
      animation: livePulse 1.2s ease-in-out infinite;
    }

    .tariffs-error--immersive {
      padding: 32px;
      border-radius: 24px;
      background: rgba(255, 253, 249, .9);
      border: 1px solid rgba(74, 53, 43, .12);
      box-shadow: var(--shadow);
    }

    @media (max-width: 980px) {
      .behandelingen-hero-inner {
        grid-template-columns: 1fr;
      }

      .behandelingen-hero-visual {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(110px, 1fr));
        gap: 10px;
        min-height: 240px;
        max-width: 100%;
        width: 100%;
        justify-self: stretch;
        overflow: hidden;
      }

      .behandelingen-hero-visual img {
        position: relative;
        inset: auto !important;
        width: 100%;
        height: 100%;
        min-height: 0;
        transform: none !important;
      }

      .behandelingen-hero-visual img:nth-child(1) {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
      }

      .behandelingen-hero-visual img:nth-child(2) {
        grid-column: 5 / 7;
        grid-row: 1;
      }

      .behandelingen-hero-visual img:nth-child(3) {
        grid-column: 5 / 7;
        grid-row: 2;
      }

      .behandelingen-hero-copy h1 {
        max-width: none;
      }

      .team-spotlight-card {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
      }

      .team-spotlight-card__media {
        min-height: 0;
      }

      .team-spotlight-card__media img {
        min-height: 140px;
        aspect-ratio: 4 / 3;
      }

      .team-spotlight-card__body {
        padding: 16px;
      }

      .team-spotlight-card__body p,
      .team-spotlight-card__cta {
        display: none;
      }

      .team-spotlight-card h3 {
        font-size: clamp(20px, 4.5vw, 28px);
      }

      .service-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .tariffs--immersive .tariff-wrap,
      .tariffs--immersive .tariff-wrap:has(#member-page-nav) {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        grid-template-rows: none;
        width: min(100% - 28px, var(--max-tariffs));
      }

      .behandelingen-team-showcase {
        display: none;
      }

      .tariffs--immersive .tabs--team,
      .tariffs--immersive .price-panel--immersive,
      .tariffs--immersive .member-page-nav {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        min-width: 0;
      }

      .tariffs--immersive .member-page-nav {
        display: none;
      }

      .price-panel--immersive,
      .member-pages,
      .member-panel,
      .category-viewport,
      .category-pages {
        width: 100%;
        min-width: 0;
      }

      .tabs--dock {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 14px;
        order: -1;
        overflow: visible;
        padding: 0 0 18px;
        margin-bottom: 4px;
        width: 100%;
        max-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
      }

      .tabs--dock .team-tab {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 56px;
        height: 56px;
        padding: 3px;
        border-radius: 50%;
        border: 2px solid rgba(74, 53, 43, .12);
        background: rgba(255, 253, 249, .92);
        white-space: nowrap;
      }

      .tabs--dock .team-tab .tabs__label {
        display: none;
      }

      .tabs--dock .team-tab .tabs__avatar {
        width: 46px;
        height: 46px;
        border: none;
      }

      .tabs--dock .team-tab[aria-current="true"] {
        border-color: var(--brown);
        background: var(--brown);
        box-shadow: 0 8px 24px rgba(74, 53, 43, .24);
        transform: none;
      }

      .tabs--dock .team-tab[aria-current="true"] .tabs__avatar {
        border: 2px solid rgba(255, 253, 249, .65);
      }

      .tabs--dock .team-tab:hover {
        transform: none;
        border-color: rgba(74, 53, 43, .28);
      }

      .category-tabs {
        display: none;
      }

      .category-select {
        display: block;
      }

      .category-viewport {
        overflow: visible;
      }

      .category-track {
        display: block;
        width: 100% !important;
        transform: none !important;
        transition: none;
      }

      .category-panel {
        display: none;
        flex: none;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
      }

      .category-panel.is-active {
        display: flex;
      }

      .category-pages {
        height: auto !important;
        min-height: 0 !important;
      }
    }

    @media (max-width: 620px) {
      .behandelingen-hero-visual {
        min-height: 220px;
        grid-template-rows: repeat(2, minmax(96px, 1fr));
      }

      .image-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        min-height: 0;
      }

      .image-stack img {
        position: relative;
        width: 100% !important;
        height: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        aspect-ratio: 4 / 5;
        border-width: 6px;
      }

      .image-stack img:first-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
      }

      .member-header {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
      }

      .member-panel {
        padding: 22px 18px;
        border-radius: 28px;
      }

      .category-tab:hover,
      .tabs--dock .team-tab:hover,
      .member-page-nav__btn:hover:not(:disabled) {
        transform: none;
      }

      .category-track {
        transition: none;
      }

      .service-tile {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 12px;
      }

      .service-tile__main h5 {
        font-size: 14px;
      }

      .service-tile__duration {
        font-size: 9px;
      }

      .service-tile__price {
        justify-self: start;
        font-size: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .behandelingen-hero-glow,
      .live-dot,
      .tariffs-loading--pulse::before {
        animation: none;
      }

      .team-spotlight-card:hover,
      .service-tile:hover,
      .tabs--dock .team-tab:hover,
      .member-page-nav__btn:hover:not(:disabled) {
        transform: none;
      }
    }
