    :root {
      --hero-bg: #41464B;
      --price-col-min: 250px;
      --price-col-max: 340px;
      --page-bg: #F6F4EF;
      --page-bg-soft: rgba(217, 210, 195, 0.34);
      --text: #41464B;
      --price-text: #7B8F7A;
      --price-muted: rgba(65, 70, 75, 0.68);
      --price-surface: #F6F4EF;
      --price-surface-lift: #F7F8F3;
      --price-surface-strong: #F6F4EF;
      --muted: var(--price-muted);
      --line: rgba(123, 143, 122, 0.18);
      --line-strong: rgba(123, 143, 122, 0.28);
      --accent: #7B8F7A;
      --accent-soft: rgba(65, 70, 75, 0.68);
      --topbar-height: 88px;
      --hero-text: #F6F4EF;
      --hero-line: rgba(246, 244, 239, 0.16);
      --hero-pill: rgba(246, 244, 239, 0.08);
      --hero-overlay: none;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      font-family: "Manrope", Arial, sans-serif;
      background: var(--page-bg);
    }

    a {
      color: inherit;
    }

    .site-hero {
      position: relative;
      min-height: 100svh;
      color: var(--hero-text);
      background: var(--hero-bg) url("/uploads/hero-desktop-poster.jpg") center / cover no-repeat;
      overflow: clip;
    }

    .site-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--hero-overlay);
      z-index: 1;
      pointer-events: none;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      background: var(--hero-bg);
      filter: none;
      transform: none;
    }

    .hero-video::-webkit-media-controls,
    .hero-video::-webkit-media-controls-enclosure,
    .hero-video::-webkit-media-controls-panel,
    .hero-video::-webkit-media-controls-start-playback-button {
      display: none !important;
      -webkit-appearance: none;
      opacity: 0;
      pointer-events: none;
    }

    .hero-shell {
      position: relative;
      z-index: 2;
      max-width: 1760px;
      min-height: 100svh;
      margin: 0 auto;
      padding: 0 42px 42px;
      pointer-events: none;
    }

    .site-header-mount,
    .site-header-mount * {
      pointer-events: auto;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(18px, 2vw, 28px);
      flex-wrap: nowrap;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      width: 100%;
      padding: 28px 42px 30px;
      background: rgba(246, 244, 239, 0.76);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(65, 70, 75, 0.08);
    }

    .menu {
      display: flex;
      flex-wrap: nowrap;
      gap: clamp(14px, 2.1vw, 52px);
      align-items: center;
      flex: 1 1 auto;
      min-width: 0;
    }

    .topbar-booking {
      margin-left: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 0 0 auto;
      padding-left: clamp(14px, 2vw, 32px);
    }

    .burger {
      display: none;
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--accent);
      padding: 0;
      margin-left: auto;
      font-family: "Tenor Sans", sans-serif;
      font-size: 1rem;
      letter-spacing: 0.12em;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
    }

    .burger-box {
      display: inline-flex;
      flex-direction: column;
      gap: 5px;
      width: 24px;
      margin-left: 12px;
      vertical-align: middle;
    }

    .burger-box span {
      display: block;
      width: 24px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
    }

    .mobile-menu {
      position: absolute;
      top: calc(100% + 14px);
      right: 42px;
      width: min(320px, calc(100vw - 32px));
      padding: 16px 18px 18px;
      background: rgba(246, 244, 239, 0.96);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(65, 70, 75, 0.08);
      border-radius: 18px;
      box-shadow: 0 16px 40px rgba(65, 70, 75, 0.14);
      z-index: 6;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition:
        opacity 140ms ease,
        transform 140ms ease,
        visibility 0s linear 140ms;
    }

    .mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition-delay: 0s;
    }

    .mobile-menu-inner {
      display: grid;
      gap: 12px;
      justify-items: start;
    }

    .mobile-menu .menu-link {
      font-size: 1.08rem;
    }

    .menu-link {
      color: var(--text);
      text-decoration: none;
      font-family: "Tenor Sans", sans-serif;
      font-size: clamp(0.92rem, 1.45vw, 1.8rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1;
      text-transform: uppercase;
      opacity: 0.92;
      white-space: nowrap;
    }

    .menu-link.is-active,
    .menu-link:hover {
      opacity: 1;
    }

    .hero-brand {
      position: absolute;
      inset: 0 42px;
      display: flex;
      align-items: center;
      pointer-events: none;
    }

    .hero-brand img {
      width: min(38vw, 470px);
      margin-left: clamp(56px, 12vw, 180px);
      height: auto;
      display: block;
      filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.18));
      pointer-events: none;
    }

    .page {
      width: 100%;
      max-width: 1760px;
      margin: 0 auto;
      padding: 8px 42px 64px;
      background: var(--page-bg);
    }

    .price-control {
      display: grid;
      gap: 0;
      padding: 26px 0 34px;
      border-bottom: 1px solid var(--line);
    }

    .price-control-head {
      max-width: 760px;
    }

    .price-control-kicker {
      margin: 0 0 8px;
      color: var(--accent-soft);
      font-family: "Manrope", Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .price-control-title {
      margin: 0;
      color: var(--accent);
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(2rem, 2.7vw, 3rem);
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.04;
      text-transform: uppercase;
    }

    .service-nav {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(8px, 1vw, 14px);
    }

    .service-nav-button {
      appearance: none;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      align-items: center;
      gap: 14px;
      width: 100%;
      min-width: 0;
      min-height: 74px;
      border: 1px solid rgba(123, 143, 122, 0.24);
      border-radius: 8px;
      background: var(--price-surface-lift);
      color: var(--accent);
      padding: 14px 16px;
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(0.92rem, 1vw, 1.04rem);
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.18;
      text-align: left;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
    }

    .service-nav-icon {
      display: block;
      width: 38px;
      height: 38px;
      background: currentColor;
      opacity: 0.82;
      mask: var(--service-icon-url) center / contain no-repeat;
      -webkit-mask: var(--service-icon-url) center / contain no-repeat;
    }

    .service-nav-word {
      display: block;
      width: min(100%, 230px);
      height: clamp(30px, 3.1vw, 44px);
      background: currentColor;
      mask: var(--service-word-url) left center / contain no-repeat;
      -webkit-mask: var(--service-word-url) left center / contain no-repeat;
    }

    .service-nav-label {
      min-width: 0;
    }

    .service-nav-button.has-no-icon {
      grid-template-columns: 1fr;
    }

    .service-nav-button.has-no-icon .service-nav-word {
      justify-self: center;
      mask-position: center;
      -webkit-mask-position: center;
    }

    .service-nav-button:hover,
    .service-nav-button.is-active {
      border-color: var(--accent);
      background: var(--accent);
      color: var(--price-surface-strong);
    }

    .price-sections {
      min-height: 420px;
    }

    .tier-panel {
      width: 100%;
      max-width: var(--price-col-max);
      justify-self: end;
    }

    .tier-panel-title {
      margin: 0 0 12px;
      color: var(--accent-soft);
      font-family: "Manrope", Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-align: right;
      text-transform: uppercase;
    }

    .tier-switch {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 4px;
      width: 100%;
      padding: 4px;
      border: 1px solid rgba(123, 143, 122, 0.2);
      border-radius: 8px;
      background: var(--price-surface-lift);
    }

    .tier-button {
      position: relative;
      z-index: 1;
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--price-muted);
      min-height: 38px;
      flex: 1 1 0;
      padding: 9px 14px;
      border-radius: 6px;
      font-family: "Manrope", Arial, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 140ms ease, color 140ms ease;
      text-align: center;
    }

    .tier-button.is-active {
      background: var(--accent);
      color: var(--price-surface-strong);
    }

    .tier-button.is-unavailable {
      color: rgba(65, 70, 75, 0.34);
      cursor: default;
    }

    .section {
      padding-top: 34px;
      border-top: 0;
    }

    .section:first-child {
      padding-top: 34px;
      border-top: 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(var(--price-col-min), var(--price-col-max));
      gap: 24px;
      align-items: center;
      margin: 0 0 22px;
    }

    .section-word-wrap {
      margin: 0;
      max-width: 820px;
    }

    .section-word {
      display: block;
      width: min(100%, 560px);
      aspect-ratio: 1324.1 / 257.8;
      background: var(--accent);
      mask: var(--word-url) center / contain no-repeat;
      -webkit-mask: var(--word-url) center / contain no-repeat;
    }

    .section-title {
      margin: 0 0 18px;
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(1.75rem, 2.6vw, 2.65rem);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--accent);
    }

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

    .section-kicker {
      margin: 0 0 8px;
      color: var(--accent-soft);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section-note {
      max-width: 980px;
      margin: 0 0 12px;
      color: var(--price-muted);
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(0.95rem, 1vw, 1.04rem);
      line-height: 1.45;
      letter-spacing: 0;
      text-transform: none;
    }

    .section-points {
      display: grid;
      gap: 6px;
      margin: 0 0 20px;
      padding: 0;
      list-style: none;
      color: var(--price-muted);
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(0.9rem, 0.95vw, 0.98rem);
      line-height: 1.42;
      letter-spacing: 0;
      text-transform: none;
    }

    .section-points li {
      position: relative;
      padding-left: 16px;
    }

    .section-points li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent-soft);
    }

    .list {
      display: grid;
      gap: 10px;
    }

    .item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(var(--price-col-min), var(--price-col-max));
      gap: 24px;
      align-items: start;
      padding: 18px 20px;
      border: 1px solid rgba(123, 143, 122, 0.2);
      border-radius: 8px;
      background: var(--price-surface-lift);
    }

    .item:first-child {
      padding-top: 18px;
    }

    .item-copy {
      min-width: 0;
    }

    .item-title {
      margin: 0;
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(1.04rem, 1.18vw, 1.28rem);
      font-weight: 650;
      line-height: 1.24;
      letter-spacing: 0;
      text-transform: uppercase;
      color: var(--price-text);
    }

    .item-desc {
      max-width: 820px;
      margin: 8px 0 0;
      color: var(--price-muted);
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(0.9rem, 0.95vw, 1rem);
      line-height: 1.42;
      letter-spacing: 0;
      text-transform: none;
    }

    .extras {
      margin-top: 18px;
      padding-top: 2px;
    }

    .extras-title {
      margin: 0 0 12px;
      color: var(--accent-soft);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .item.is-extra .item-title {
      font-size: clamp(1rem, 1.06vw, 1.16rem);
    }

    .item.is-extra .item-desc {
      font-size: clamp(0.88rem, 0.92vw, 0.96rem);
    }

    .prices {
      justify-self: end;
      width: 100%;
      text-align: right;
      min-height: 0;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
    }

    .price-main {
      margin: 0;
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(1.06rem, 1.18vw, 1.34rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0;
      white-space: nowrap;
      color: var(--accent);
    }

    .price-lines {
      display: grid;
      gap: 8px;
      justify-items: end;
      width: 100%;
    }

    .price-line {
      display: grid;
      gap: 0;
      min-height: 0;
      align-content: start;
    }

    .price-line[data-tier] {
      display: none;
    }

    .page.tier-start .price-line[data-tier="start"],
    .page.tier-master .price-line[data-tier="master"],
    .page.tier-top .price-line[data-tier="top"] {
      display: grid;
    }

    body[data-page="services"].has-price-masters .site-footer {
      margin-top: 0;
    }

    .page.has-price-masters {
      padding-bottom: 0;
    }

    .price-masters-mount[hidden] {
      display: none;
    }

    .price-masters {
      margin: 34px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: max-content minmax(0, 1fr);
      gap: clamp(18px, 1.8vw, 34px);
      align-items: end;
    }

    .price-masters-label {
      align-self: end;
      margin: 0 0 clamp(26px, 3.2vw, 48px);
      color: var(--accent);
      font-family: "Tenor Sans", sans-serif;
      font-size: clamp(1.25rem, 1.55vw, 1.9rem);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .price-masters-grid {
      display: flex;
      justify-content: flex-start;
      gap: clamp(0px, 0.35vw, 8px);
      align-items: end;
    }

    .price-master-card {
      position: relative;
      flex: 0 1 240px;
      min-width: 0;
      display: grid;
      align-content: end;
      justify-items: center;
      text-align: center;
    }

    .price-master-card + .price-master-card {
      margin-left: clamp(-34px, -1.8vw, -14px);
    }

    .price-master-card:nth-child(1) {
      z-index: 5;
    }

    .price-master-card:nth-child(2) {
      z-index: 4;
    }

    .price-master-card:nth-child(3) {
      z-index: 3;
    }

    .price-master-card:nth-child(4) {
      z-index: 2;
    }

    .price-master-card:nth-child(5) {
      z-index: 1;
    }

    .price-master-photo-wrap {
      position: relative;
      width: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
    }

    .price-master-photo {
      display: block;
      width: auto;
      max-width: min(100%, 230px);
      height: auto;
      max-height: clamp(180px, 15.5vw, 260px);
      object-fit: contain;
      object-position: center bottom;
      filter: drop-shadow(0 18px 24px rgba(65, 70, 75, 0.12));
    }

    .price-master-bubble {
      position: absolute;
      left: 50%;
      bottom: calc(clamp(26px, 2.4vw, 42px) - 20px);
      z-index: 2;
      max-width: min(88%, 210px);
      transform: translateX(calc(-50% + 20px)) rotate(-1.5deg);
      padding: 9px 14px 10px;
      border: 1px solid rgba(65, 70, 75, 0.13);
      border-radius: 999px;
      background: rgba(246, 244, 239, 0.92);
      box-shadow:
        0 14px 34px rgba(65, 70, 75, 0.12),
        0 2px 8px rgba(65, 70, 75, 0.08);
      color: var(--accent);
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(0.72rem, 0.8vw, 0.9rem);
      font-weight: 750;
      line-height: 1.08;
      letter-spacing: 0.04em;
      text-align: center;
      text-transform: uppercase;
      white-space: normal;
    }

    .price-master-card:nth-child(even) .price-master-bubble {
      transform: translateX(calc(-50% + 20px)) rotate(1.5deg);
    }

    @media (max-width: 1180px) {
      :root {
        --topbar-height: 74px;
      }

      .hero-shell,
      .page {
        padding-left: 24px;
        padding-right: 24px;
      }

      .topbar {
        padding: 22px 24px 24px;
      }

      .menu {
        gap: clamp(12px, 1.65vw, 28px);
      }

      .menu-link {
        font-size: clamp(0.82rem, 1.22vw, 1.28rem);
      }

      .hero-brand {
        inset: 0 24px;
      }

      .hero-brand img {
        width: min(46vw, 430px);
        margin-left: clamp(24px, 9vw, 110px);
      }

      .tier-panel {
        width: min(100%, 420px);
      }

      .price-masters-grid {
        gap: 4px;
      }

      .price-master-card {
        flex-basis: 210px;
      }

      .price-master-card + .price-master-card {
        margin-left: -14px;
      }
    }

    @media (max-width: 980px) {
      .topbar {
        align-items: center;
        gap: 14px;
      }

      .menu {
        display: none;
      }

      .topbar-booking {
        display: flex;
        margin-left: 0;
        padding-left: 12px;
        justify-content: flex-start;
        flex: 1 1 auto;
        min-width: 0;
        order: -1;
      }

      .topbar-booking .menu-link {
        font-size: 1.06rem;
      }

      .burger {
        display: inline-flex;
        align-items: center;
        order: 0;
        margin-left: auto;
        flex: 0 0 auto;
        font-size: 1.06rem;
      }

      .hero-brand {
        inset: 0 24px;
        justify-content: center;
      }

      .hero-brand img {
        margin-left: 0;
      }

      .section-head {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .tier-panel {
        justify-self: start;
        margin-bottom: 0;
      }

      .tier-panel-title {
        text-align: left;
      }

      .tier-switch {
        justify-content: flex-start;
      }

      .price-masters-grid {
        gap: 6px;
      }

      .price-master-card {
        flex-basis: 180px;
      }

      .price-master-card + .price-master-card {
        margin-left: -8px;
      }
    }

    @media (max-width: 760px) {
      :root {
        --topbar-height: 52px;
      }

      .site-hero {
        background-image: url("/uploads/hero-mobile-poster.jpg");
      }

      .hero-shell,
      .page {
        padding-left: 16px;
        padding-right: 16px;
      }

      .page {
        padding-bottom: 44px;
      }

      .topbar {
        padding: 16px 16px 18px;
        align-items: center;
        gap: 12px;
      }

      .mobile-menu {
        top: calc(100% + 10px);
        right: 16px;
        width: min(300px, calc(100vw - 24px));
        padding: 14px 16px 16px;
      }

      .menu-link {
        font-size: 1.06rem;
      }

      .topbar-booking {
        margin-left: 0;
        padding-left: 12px;
      }

      .burger {
        font-size: 1.06rem;
      }

      .hero-brand img {
        width: min(72vw, 320px);
        margin-left: 0;
      }

      .price-control {
        gap: 0;
        padding: 18px 0 24px;
      }

      .price-control-kicker {
        margin-bottom: 6px;
        font-size: 0.72rem;
      }

      .price-control-title {
        font-size: clamp(1.55rem, 9vw, 2.35rem);
      }

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

      .service-nav-button {
        min-height: 56px;
        grid-template-columns: 1fr;
        padding: 12px 10px;
        justify-content: center;
      }

      .service-nav-icon {
        display: none;
      }

      .service-nav-word {
        width: min(100%, 150px);
        height: 32px;
        mask-position: center;
        -webkit-mask-position: center;
      }

      .section {
        padding-top: 24px;
      }

      .section:first-child {
        padding-top: 24px;
      }

      .tier-panel-title {
        text-align: center;
        font-size: 0.72rem;
        margin-bottom: 10px;
      }

      .item {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 14px 12px;
      }

      .item-title {
        font-size: 0.95rem;
        line-height: 1.22;
      }

      .item-desc,
      .section-note,
      .hero-side p {
        font-size: 0.86rem;
        line-height: 1.4;
      }

      .section-kicker,
      .section-points,
      .extras-title {
        font-size: 0.72rem;
      }

      .price-main {
        font-size: 0.98rem;
        line-height: 1.22;
      }

      .section-word {
        width: 100%;
      }

      .tier-panel {
        width: 100%;
        max-width: 420px;
        justify-self: center;
        margin-bottom: 0;
      }

      .tier-switch {
        justify-content: center;
        gap: 4px;
      }

      .tier-button {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 0.88rem;
      }

      .price-masters {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .price-masters-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
      }

      .price-masters-label {
        justify-self: start;
        margin-bottom: 0;
        font-size: 1.2rem;
      }

      .price-master-card {
        flex-basis: auto;
      }

      .price-master-card + .price-master-card {
        margin-left: 0;
      }

      .price-master-card:nth-child(n + 4) {
        display: none;
      }

      .price-master-photo-wrap {
        width: 100%;
      }

      .price-master-photo {
        max-height: clamp(128px, 38vw, 170px);
      }

      .price-master-bubble {
        bottom: 18px;
        max-width: 92%;
        padding: 7px 10px 8px;
        font-size: 0.62rem;
        letter-spacing: 0.03em;
      }
    }
