    .service-hero {
      padding: 128px 0 120px;
      border-bottom: 1px solid var(--line);
    }

    .service-hero-layout {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      align-items: end;
      gap: 10vw;
    }

    .page-title {
      margin: 0;
      font-size: inherit;
      font-weight: 400;
      letter-spacing: -.05em;
      line-height: .96;
    }

    .page-title em {
      display: block;
      color: var(--wine);
      font-family: var(--serif);
      font-size: clamp(54px, 5.6vw, 84px);
      font-weight: 400;
    }

    .page-title span {
      display: block;
      margin-top: 7px;
      font-size: clamp(50px, 5.2vw, 78px);
      font-weight: 300;
    }

    .hero-copy {
      max-width: 560px;
      padding-bottom: 8px;
    }

    .hero-copy > p {
      margin: 0;
      color: var(--copy);
      font-family: var(--serif);
      font-size: clamp(19px, 1.65vw, 23px);
      line-height: 1.75;
    }

    .hero-actions {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
    }

    .service-pricing-layout {
      display: grid;
      grid-template-columns: minmax(180px, .36fr) minmax(0, 1.64fr);
      gap: clamp(48px, 7vw, 96px);
      align-items: start;
    }

    .service-pricing-content {
      position: relative;
      z-index: 0;
      min-width: 0;
    }

    .service-pricing-layout > .service-index {
      z-index: 1;
      margin-block-start: 126px;
      padding-top: 0;
      background: transparent;
    }

    .service-pricing-content .price-section > .shell {
      width: 100%;
    }

    .service-pricing-content .price-carousel-viewport {
      padding-inline: 0;
      scroll-padding-inline: 0;
    }

    .price-guide-section {
      background: var(--mist);
      box-shadow: 0 0 0 100vmax var(--mist);
      clip-path: inset(0 -100vmax);
    }

    .price-carousel-frame {
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .price-carousel-viewport {
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      padding: 8px max(40px, calc((100vw - 1180px) / 2)) 28px;
      scroll-behavior: smooth;
      scroll-padding-inline: max(40px, calc((100vw - 1180px) / 2));
      scroll-snap-type: inline mandatory;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .price-carousel-viewport::-webkit-scrollbar {
      display: none;
    }

    .price-carousel-track {
      width: max-content;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .price-carousel-slide {
      position: relative;
      width: clamp(395px, calc((100vh - 48px) * .5625), 460px);
      margin: 0;
      flex: 0 0 auto;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    .price-guide-open {
      width: 100%;
      padding: 0;
      border: 0;
      display: block;
      background: #f8f8f7;
      box-shadow: 0 10px 28px rgba(38, 34, 31, .1);
      cursor: zoom-in;
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .price-guide-open:hover {
      box-shadow: 0 14px 34px rgba(38, 34, 31, .15);
      transform: translateY(-3px);
    }

    .price-carousel-slide img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      aspect-ratio: auto;
      object-fit: contain;
    }

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

    .price-guide-dialog {
      width: min(92vw, calc((100dvh - 24px) * .5625), 720px);
      max-width: none;
      max-height: calc(100dvh - 24px);
      padding: 0;
      overflow: visible;
      border: 0;
      background: transparent;
    }

    .price-guide-dialog::backdrop {
      background: rgb(22 20 19 / 82%);
      backdrop-filter: blur(3px);
    }

    .price-guide-dialog__stage {
      position: relative;
      width: 100%;
      display: grid;
      place-items: center;
    }

    .price-guide-dialog__image {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      max-height: calc(100dvh - 24px);
      object-fit: contain;
      box-shadow: 0 24px 72px rgb(0 0 0 / 32%);
    }

    .price-guide-dialog__close {
      position: absolute;
      z-index: 2;
      top: 12px;
      right: 12px;
      min-height: 40px;
      padding: 0 15px;
      border: 1px solid rgb(135 83 77 / 28%);
      border-radius: 999px;
      background: rgb(255 255 255 / 94%);
      color: var(--wine);
      cursor: pointer;
      font: 650 10px/1 var(--sans);
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    body:has(.price-guide-dialog[open]) {
      overflow: hidden;
    }

    .price-carousel-controls {
      position: sticky;
      z-index: 3;
      top: calc(100dvh - 70px);
      order: -1;
      width: max-content;
      height: 54px;
      left: calc(50vw - 59px);
      margin: 0 0 -54px;
      display: flex;
      align-items: center;
      gap: 10px;
      pointer-events: none;
    }

    .price-carousel-button {
      width: 54px;
      height: 54px;
      padding: 0;
      border: 1px solid rgba(135, 83, 77, .3);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, .94);
      color: var(--wine);
      box-shadow: 0 8px 22px rgba(38, 34, 31, .13);
      cursor: pointer;
      opacity: .52;
      pointer-events: auto;
      transition: opacity .2s ease, transform .2s ease;
    }

    .price-carousel-button:hover:not(:disabled),
    .price-carousel-button:focus-visible:not(:disabled) {
      opacity: 1;
      transform: scale(1.05);
    }

    .price-carousel-button:disabled {
      opacity: .18;
      pointer-events: none;
    }

    .price-carousel-button .dashicons {
      width: 28px;
      height: 28px;
      font-family: "Dashicons";
      font-size: 28px;
      font-style: normal;
      font-weight: 400;
      line-height: 1;
      text-align: center;
    }

    .dashicons-arrow-left-alt2::before {
      content: "\f341";
    }

    .dashicons-arrow-right-alt2::before {
      content: "\f345";
    }

    .price-section {
      padding: 126px 0 136px;
    }

    .full-price-section {
      background: var(--paper);
    }

    .price-head {
      margin-bottom: 58px;
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      align-items: end;
      gap: 9vw;
    }

    .section-title {
      margin: 0;
      font-size: inherit;
      font-weight: 400;
      letter-spacing: -.045em;
      line-height: .98;
    }

    .section-title em {
      display: block;
      color: var(--wine);
      font-family: var(--serif);
      font-size: clamp(43px, 4.7vw, 68px);
      font-weight: 400;
    }

    #full-price-list .section-title em {
      white-space: nowrap;
    }

    .section-title span {
      display: block;
      margin-top: 6px;
      font-size: clamp(40px, 4.4vw, 64px);
      font-weight: 300;
    }

    .price-intro {
      max-width: 520px;
      margin: 0 0 5px;
      color: var(--copy);
      font-size: 15px;
      line-height: 1.85;
    }

    .comparison-section {
      border-top: 1px solid var(--line);
      background: #f8f4f2;
      box-shadow: 0 0 0 100vmax #f8f4f2;
      clip-path: inset(0 -100vmax);
    }

    .comparison-head {
      align-items: start;
    }

    .comparison-more-link {
      display: block;
      width: max-content;
      margin-top: 20px;
      padding-bottom: 3px;
      border-bottom: 1px solid currentColor;
      color: var(--wine);
      font-family: var(--serif);
      font-style: italic;
      line-height: 1.25;
    }

    .service-comparison-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(14px, 2vw, 24px);
    }

    .comparison-card {
      min-width: 0;
      min-height: 430px;
      padding: clamp(24px, 2.4vw, 34px);
      border-top: 3px solid var(--wine);
      background: var(--paper);
      box-shadow: 0 14px 34px rgba(38, 34, 31, .09);
      display: flex;
      flex-direction: column;
    }

    .comparison-card__header {
      min-height: 124px;
    }

    .comparison-card h3 {
      margin: 0 0 12px;
      color: var(--wine);
      font-family: var(--serif);
      font-size: clamp(26px, 2.3vw, 34px);
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.025em;
      line-height: 1.02;
    }

    .comparison-card__header p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .comparison-cure {
      min-height: 70px;
      margin-bottom: 28px;
      padding: 13px 15px 12px;
      border-radius: 5px;
      background: var(--wine);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .comparison-cure strong {
      font-size: 18px;
      font-weight: 650;
      letter-spacing: -.01em;
      line-height: 1.1;
    }

    .comparison-cure span {
      margin-top: 6px;
      color: rgba(255, 255, 255, .82);
      font-size: 10px;
      line-height: 1.35;
    }

    .comparison-card ul {
      margin: 0;
      padding-left: 18px;
      color: var(--copy);
      list-style: circle;
    }

    .comparison-card li {
      margin: 0 0 18px;
      padding-left: 3px;
      font-size: 12px;
      line-height: 1.5;
    }

    .comparison-card li::marker {
      color: var(--wine);
    }

    .comparison-card li span,
    .comparison-card li small {
      display: block;
    }

    .comparison-card li small {
      margin-top: 2px;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.45;
    }

    .booking-band {
      padding: 118px 0 112px;
      background: var(--night);
      color: #fff;
    }

    .booking-layout {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: end;
      gap: 10vw;
    }

    .booking-band .eyebrow {
      color: #c58e87;
    }

    .booking-title {
      margin: 0;
      font-size: inherit;
      font-weight: 400;
      letter-spacing: -.045em;
      line-height: .98;
    }

    .booking-title em {
      display: block;
      color: #c58e87;
      font-family: var(--serif);
      font-size: clamp(48px, 5.1vw, 74px);
      font-weight: 400;
    }

    .booking-title span {
      display: block;
      margin-top: 5px;
      font-size: clamp(43px, 4.7vw, 68px);
      font-weight: 300;
    }

    .booking-copy {
      max-width: 480px;
      padding-bottom: 8px;
    }

    .booking-copy p {
      margin: 0 0 30px;
      color: #ddd8d4;
      font-size: 15px;
      line-height: 1.85;
    }

    .booking-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
    }

    .booking-band .text-link {
      color: #e0aca5;
    }

    @media (max-width: 980px) {
      .service-comparison-grid {
        grid-template-columns: 1fr;
      }

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

      .comparison-card__header {
        min-height: 0;
        margin-bottom: 24px;
      }

    }

    @media (max-width: 800px) {
      .service-pricing-layout {
        display: block;
      }
    }

    @media (max-width: 700px) {
      .service-hero {
        padding: 92px 0 88px;
      }

      .service-hero-layout,
      .price-head,
      .booking-layout {
        display: block;
      }

      .hero-copy {
        margin-top: 52px;
      }

      .price-section {
        padding: 94px 0 104px;
      }

      .service-pricing-content .price-carousel-viewport {
        padding-inline: 18px;
        scroll-padding-inline: 18px;
      }

      .price-carousel-track {
        gap: 14px;
      }

      .price-carousel-slide {
        width: min(82vw, 330px);
      }

      .price-carousel-button {
        width: 46px;
        height: 46px;
      }

      .price-carousel-controls {
        top: calc(100dvh - 62px);
        height: 46px;
        left: calc(50vw - 51px);
        margin-bottom: -46px;
      }

      .price-head {
        margin-bottom: 44px;
      }

      .price-intro {
        margin-top: 32px;
      }

      .service-comparison-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .comparison-card {
        padding: 26px 24px;
      }

      .booking-band {
        padding: 96px 0 92px;
      }

      .booking-copy {
        margin-top: 48px;
      }

      .booking-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
      }

    }

    .service-catalog {
      margin-top: clamp(54px, 6vw, 84px);
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }

    .service-catalog--full {
      margin-top: 0;
      padding-top: 0;
      border-top: 0;
    }

    .service-catalog h3 {
      margin: 0;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(26px, 2.6vw, 38px);
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.025em;
      line-height: 1.15;
    }

    .catalog-note {
      max-width: 620px;
      margin: 12px 0 36px;
      color: var(--muted);
      font-size: 13px;
    }

    .service-catalog-grid {
      column-count: 2;
      column-gap: clamp(32px, 6vw, 80px);
    }

    .catalog-group {
      margin: 0 0 42px;
      break-inside: avoid;
    }

    .catalog-group:nth-child(4) {
      break-before: column;
    }

    .catalog-group h4 {
      margin: 0 0 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
      color: var(--wine);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .13em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .catalog-row {
      min-height: 38px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(216, 213, 209, .72);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: baseline;
      gap: 20px;
      color: var(--copy);
      font-size: 14px;
      line-height: 1.55;
    }

    .catalog-row strong {
      color: var(--wine);
      font-weight: 600;
      white-space: nowrap;
    }

    .catalog-row small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 400;
    }

    .catalog-row:has(+ .catalog-detail) {
      min-height: 0;
      padding-bottom: 0;
      border-bottom: 0;
    }

    .catalog-detail {
      /* The separator closes the whole service-and-explanation group. */
      margin: 0;
      padding: 0 0 6px;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: .045em;
      line-height: 1.4;
    }

    .catalog-detail:has(+ .catalog-detail) {
      padding-bottom: 0;
    }

    .catalog-detail:not(:has(+ .catalog-detail)) {
      border-bottom: 1px solid rgba(216, 213, 209, .72);
    }

    .catalog-repair-note {
      max-width: 620px;
      margin: 4px auto 0;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
      text-align: center;
    }

    @media (max-width: 700px) {
      .service-catalog-grid {
        column-count: 1;
        column-gap: normal;
      }

      .catalog-group {
        margin-bottom: 32px;
      }

      .catalog-group:nth-child(4) {
        break-before: auto;
      }

      .catalog-row {
        gap: 12px;
        font-size: 13px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .price-carousel-viewport {
        scroll-behavior: auto;
      }

      .price-guide-open,
      .price-carousel-button {
        transition: none;
      }

    }
