﻿:root {
      --gold: #c8a33b;
      --gold-dark: #a88422;
      --text: #222;
      --muted: #6b6b6b;
      --bg: #f6f6f4;
      --white: #ffffff;
      --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      --radius: 18px;
      --container: 1220px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.5;
    }

    .landing-flash-stack {
      position: fixed;
      top: 96px;
      right: 18px;
      z-index: 80;
      display: grid;
      gap: 10px;
      width: min(420px, calc(100vw - 36px));
    }

    .landing-flash {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(200,163,59,.36);
      box-shadow: var(--shadow);
      color: #1d1d1d;
      font-weight: 700;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(0,0,0,.07);
    }

    .topbar-inner {
      min-height: 86px;
      display: grid;
      grid-template-columns: 220px 1fr;
      align-items: center;
      gap: 24px;
    }

    .brand { display: flex; align-items: center; gap: 12px; }
    .brand img { width: 72px; height: 50px; object-fit: contain; border-radius: 8px; }
    .brand-text { font-size: 13px; color: #7c6a2d; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

    .topbar-menu {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 24px;
    }

    .topbar-menu-toggle {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      gap: 5px;
      flex-direction: column;
      justify-self: end;
      border: 1px solid rgba(32,29,22,.12);
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(24,22,16,.08);
    }

    .topbar-menu-toggle span {
      width: 21px;
      height: 2px;
      border-radius: 999px;
      background: #171717;
      transition: transform .22s ease, opacity .22s ease;
    }

    .topbar.is-menu-open .topbar-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .topbar.is-menu-open .topbar-menu-toggle span:nth-child(2) { opacity: 0; }
    .topbar.is-menu-open .topbar-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (min-width: 1101px) {
      .topbar-menu-toggle { display: none !important; }
    }

    .contact-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items: center;
      color: #525252;
      font-size: 15px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      white-space: nowrap;
    }

    .line { width: 34px; height: 1px; background: var(--gold); opacity: .75; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: .25s ease;
      font-size: 15px;
      font-weight: 700;
    }

    .btn-primary { background: var(--gold); color: #111; box-shadow: 0 8px 22px rgba(200,163,59,.22); }
    .btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
    .btn-outline { background: transparent; border-color: rgba(0,0,0,.15); }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
    .btn-outline-light { color: #fff; border-color: rgba(255,255,255,.35); }
    .btn-outline-light:hover { color: #fff; border-color: var(--gold); }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #141414;
}
    .hero::before {
      content: "";
      position: absolute;
      inset: -18px;
      background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.54) 38%, rgba(0,0,0,.30) 100%),
        var(--hero-image, url('../../img/hero-reference.jpg')) var(--hero-image-x, 50%) var(--hero-image-y, 50%) / cover no-repeat;
      filter: blur(4px);
      transform: scale(calc(var(--hero-image-zoom, 1) + .03));
      transform-origin: var(--hero-image-x, 50%) var(--hero-image-y, 50%);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8,8,8,.22) 0%, rgba(8,8,8,.12) 36%, rgba(8,8,8,.28) 100%);
      pointer-events: none;
    }
    .hero .container {
      position: relative;
      z-index: 1;
    }
    .hero-content {
      max-width: 720px;
      padding: 88px 0 110px;
      position: relative;
      z-index: 1;
    }
    h1 {
      margin: 0 0 18px;
      max-width: 760px;
      font-size: 68px;
      line-height: .98;
      font-weight: 900;
      letter-spacing: 0;
      text-shadow: 0 10px 30px rgba(0,0,0,.34);
    }
    h1::after {
      content: "";
      display: block;
      width: 118px;
      height: 4px;
      margin-top: 24px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), rgba(200,163,59,0));
      box-shadow: 0 8px 18px rgba(200,163,59,.28);
    }

    .hero p {
      margin: 0 0 30px;
      font-size: 23px;
      max-width: 620px;
      color: rgba(255,255,255,.92);
      text-shadow: 0 8px 24px rgba(0,0,0,.28);
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-card {
      position: absolute;
      right: 32px;
      bottom: 36px;
      width: min(390px, calc(100% - 32px));
      background: rgba(255,255,255,.94);
      color: var(--text);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .hero-card h3, .callback h3 { margin: 0 0 10px; font-size: 28px; }
    .hero-card p, .callback p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }

    .form-grid { display: grid; gap: 12px; }
    .input {
      width: 100%;
      height: 52px;
      padding: 0 16px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.1);
      background: #fff;
      font-size: 15px;
      outline: none;
    }
    textarea.input { height: 110px; padding: 14px 16px; resize: vertical; }
    .input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,163,59,.12); }

    section { padding: 88px 0; }
    .section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 34px; }
    .section-head h2 {
      position: relative;
      margin: 0;
      padding-bottom: 17px;
      font-size: 54px;
      line-height: 1;
      color: #171717;
      font-weight: 900;
      letter-spacing: 0;
      white-space: normal;
    }
    .section-head h2::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 108px;
      height: 4px;
      border-radius: 999px;
      background: var(--gold);
    }
    .section-head h2::after {
      content: "";
      position: absolute;
      left: 122px;
      bottom: 1px;
      width: 38px;
      height: 2px;
      border-radius: 999px;
      background: rgba(200,163,59,.34);
    }
    .section-head p { margin: 0; max-width: 640px; color: var(--muted); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: .25s ease;
      display: grid;
      grid-template-rows: 270px 1fr;
      height: 100%;
    }
    .service-card:hover { transform: translateY(-4px); }
    .service-card-image {
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: #e7e2d8;
    }
    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--service-image-x, 50%) var(--service-image-y, 50%);
      transform: scale(var(--service-image-zoom, 1));
      transform-origin: var(--service-image-x, 50%) var(--service-image-y, 50%);
      transition: transform .35s ease, object-position .35s ease;
    }
    .service-card-body { padding: 20px 22px 24px; }
    .service-card h3 {
      position: relative;
      margin: 0 0 12px;
      padding-left: 15px;
      font-size: 24px;
      line-height: 1.18;
      font-weight: 900;
    }
    .service-card h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: .22em;
      width: 4px;
      height: 1.1em;
      border-radius: 999px;
      background: var(--gold);
    }
    .service-card p { margin: 0; color: var(--muted); }
    .service-price-link {
      justify-self: start;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      margin-top: 14px;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--gold-dark);
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 5px;
    }
    .service-price-link span {
      font-size: 20px;
      line-height: 1;
    }
    .service-price-panel {
      grid-column: 1 / -1;
      display: grid;
      gap: 16px;
      padding: 22px;
      border-top: 1px solid rgba(32, 29, 22, .08);
      background: #fffaf0;
    }
    .service-price-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .service-price-head strong {
      font-size: 20px;
      font-weight: 900;
    }
    .service-price-head button {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(32,29,22,.16);
      border-radius: 50%;
      background: #fff;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }
    .service-price-filters {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .service-price-filters label {
      display: grid;
      gap: 6px;
      color: #3b352b;
      font-size: 13px;
      font-weight: 800;
    }
    .service-price-filters select,
    .service-price-filters input,
    .service-price-picker select {
      width: 100%;
      min-height: 44px;
      border: 1px solid rgba(32,29,22,.14);
      border-radius: 12px;
      background: #fff;
      padding: 0 12px;
      font: inherit;
    }
    .service-price-picker {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
    }
    .service-price-empty {
      color: #7a5a00;
      font-weight: 700;
    }
    .service-price-cart {
      display: grid;
      gap: 10px;
      padding: 14px;
      border: 1px solid rgba(32,29,22,.1);
      border-radius: 14px;
      background: #fff;
    }
    .service-price-cart-title,
    .service-price-total {
      font-weight: 900;
    }
    .service-price-cart-row {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 10px;
      align-items: center;
      padding: 9px 0;
      border-top: 1px solid rgba(32,29,22,.08);
    }
    .service-price-cart-row button {
      border: 0;
      background: transparent;
      color: #8a1f1f;
      cursor: pointer;
      font-weight: 800;
    }

    .price-page {
      background: #f6f6f4;
    }
    .price-hero {
      padding: 72px 0 46px;
      background: linear-gradient(180deg, #fff, #f4efe4);
    }
    .price-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
      gap: 34px;
      align-items: center;
    }
    .price-hero h1 {
      margin-bottom: 16px;
      color: #171717;
      font-size: clamp(40px, 6vw, 62px);
      text-shadow: none;
    }
    .price-hero p {
      max-width: 680px;
      margin: 0;
      color: #494949;
      font-size: 19px;
    }
    .price-from-large {
      display: inline-flex;
      align-items: center;
      min-height: 46px;
      margin-top: 24px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--gold);
      color: #111;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(200,163,59,.22);
    }
    .price-hero-image {
      overflow: hidden;
      aspect-ratio: 1.25 / 1;
      border-radius: 22px;
      box-shadow: var(--shadow);
      background: #e7e2d8;
    }
    .price-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .price-picker-section {
      position: relative;
      overflow: hidden;
      padding: 64px 0 96px;
      background:
        linear-gradient(115deg, rgba(12,12,12,.88), rgba(42,32,12,.70)),
        var(--price-section-image, url('../../img/hero-reference.jpg')) center / cover no-repeat;
    }
    .price-picker-section::before {
      content: "";
      position: absolute;
      inset: -20px;
      background: inherit;
      filter: blur(6px);
      transform: scale(1.04);
    }
    .price-picker-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42)),
        radial-gradient(circle at 18% 20%, rgba(200,163,59,.24), transparent 32%);
    }
    .price-picker-section .container {
      position: relative;
      z-index: 1;
    }
    .price-page-panel {
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 20px;
      background: rgba(255,250,240,.94);
      box-shadow: 0 28px 80px rgba(0,0,0,.32);
      backdrop-filter: blur(12px);
    }
    .price-table-wrap {
      overflow-x: auto;
      border: 1px solid rgba(32,29,22,.1);
      border-radius: 14px;
      background: #fff;
    }
    .price-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 720px;
    }
    .price-table th,
    .price-table td {
      padding: 13px 14px;
      border-bottom: 1px solid rgba(32,29,22,.08);
      text-align: left;
      vertical-align: top;
    }
    .price-table th {
      background: #fbf6eb;
      color: #312a1d;
      font-size: 13px;
      font-weight: 900;
    }
    .price-table tr:last-child td {
      border-bottom: 0;
    }

    .about { background: #fff; }
    .about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: stretch; }
    .about-photo {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      min-height: 480px;
      background: #e7e2d8;
      box-shadow: var(--shadow);
    }
    .about-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--about-image, url('../../img/about.png?v=20260527')) var(--about-image-x, 50%) var(--about-image-y, 50%) / cover no-repeat;
      transform: scale(var(--about-image-zoom, 1));
      transform-origin: var(--about-image-x, 50%) var(--about-image-y, 50%);
      transition: transform .35s ease, background-position .35s ease;
    }
    .about-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.25));
      pointer-events: none;
    }
    .about-card {
      background: linear-gradient(180deg, #fff, #fbf7ed);
      border-radius: 24px;
      padding: 34px;
      box-shadow: var(--shadow);
    }
    .about-card h2 {
      position: relative;
      margin: 0 0 22px;
      padding-bottom: 16px;
      font-size: 46px;
      line-height: 1;
      color: #171717;
      font-weight: 900;
      letter-spacing: 0;
    }
    .about-card h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 92px;
      height: 4px;
      border-radius: 999px;
      background: var(--gold);
    }
    .about-card p { margin: 0 0 16px; color: #444; }
    .about-list { display: grid; gap: 12px; margin-top: 24px; }
    .about-item { display: flex; gap: 12px; align-items: flex-start; }
    .bullet {
      width: 26px; height: 26px; flex: 0 0 26px;
      border-radius: 50%; background: rgba(200,163,59,.18);
      border: 1px solid rgba(200,163,59,.45);
      display: grid; place-items: center; color: var(--gold-dark); font-weight: 700;
      margin-top: 1px;
    }

    .masters-section {
      background: linear-gradient(180deg, #f6f6f4 0%, #fff 44%, #f6f6f4 100%);
    }
    .masters-head {
      align-items: flex-end;
    }
    .masters-head > div:first-child {
      display: grid;
      gap: 12px;
    }
    .masters-controls {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: flex-end;
      flex: 0 0 auto;
    }
    .masters-arrow {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(32, 29, 22, .14);
      border-radius: 50%;
      background: rgba(255,255,255,.78);
      color: #1f1f1f;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: 0 10px 24px rgba(24, 22, 16, .08);
      transition: background .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, opacity .28s ease;
    }
    .masters-arrow span {
      display: block;
      margin-top: -2px;
      font-size: 30px;
      line-height: 1;
      font-family: Georgia, 'Times New Roman', serif;
    }
    .masters-arrow:hover {
      border-color: rgba(200,163,59,.62);
      background: rgba(200,163,59,.95);
      color: #141414;
      transform: translateY(-2px);
    }
    .masters-arrow:disabled {
      opacity: .38;
      cursor: default;
      transform: none;
      background: #fff;
      border-color: rgba(32, 29, 22, .12);
      color: #1f1f1f;
    }
    .masters-slider {
      position: relative;
      overflow: hidden;
      padding: 4px 0 0;
      touch-action: pan-y;
    }
    .masters-track {
      display: flex;
      gap: 24px;
      overflow: visible;
      padding: 6px 0 16px;
      margin: 0;
      transform: translate3d(0, 0, 0);
      transition-property: transform;
      transition-duration: 1450ms;
      transition-timing-function: cubic-bezier(.19, 1, .22, 1);
      will-change: transform;
      touch-action: pan-y;
    }
    .masters-track:focus {
      outline: 2px solid rgba(200,163,59,.4);
      outline-offset: 4px;
      border-radius: 14px;
    }
    .master-card {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: 0;
      background: #fff;
      border: 1px solid rgba(32, 29, 22, .07);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 14px 32px rgba(24, 22, 16, .09);
      display: flex;
      flex-direction: column;
      opacity: .92;
      transform: translateY(0) scale(.995);
      transition: opacity .55s ease, transform .55s ease, box-shadow .55s ease, border-color .55s ease;
    }
    .master-card.is-current,
    .master-card:hover {
      opacity: 1;
      border-color: rgba(200,163,59,.28);
      transform: translateY(-4px) scale(1);
      box-shadow: 0 20px 44px rgba(24, 22, 16, .13);
    }
    .master-photo {
      height: 310px;
      overflow: hidden;
      background: #eeeeeb;
      position: relative;
    }
    .master-photo::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 34%;
      background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.26));
    }
    .master-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--master-photo-x, 50%) var(--master-photo-y, 22%);
      transform: scale(var(--master-photo-zoom, 1));
      transform-origin: var(--master-photo-x, 50%) var(--master-photo-y, 22%);
      transition: transform 1200ms cubic-bezier(.19, 1, .22, 1), object-position 420ms ease;
    }
    .master-card.is-current .master-photo img,
    .master-card:hover .master-photo img {
      filter: saturate(1.03) contrast(1.02);
    }
    .master-body { padding: 22px; flex: 1; }
    .master-body h3 {
      margin: 0 0 9px;
      font-size: 24px;
      line-height: 1.16;
      font-weight: 900;
      color: #171717;
    }
    .role {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 3px 10px;
      border: 1px solid rgba(200,163,59,.38);
      border-radius: 999px;
      background: rgba(200,163,59,.1);
      color: var(--gold-dark);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .master-body p { margin: 0; color: var(--muted); }
    .masters-slider-footer {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 14px;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }
    .masters-progress {
      flex: 1;
      height: 2px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(32, 29, 22, .14);
    }
    .masters-progress span {
      display: block;
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: var(--gold);
      transition: width .85s cubic-bezier(.19, 1, .22, 1);
    }
    .masters-position {
      min-width: 54px;
      color: #242424;
      font-size: 13px;
      font-weight: 800;
      text-align: center;
      white-space: nowrap;
    }
    .masters-dots {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: flex-end;
    }
    .masters-dot {
      width: 7px;
      height: 7px;
      border: 0;
      border-radius: 999px;
      background: rgba(32, 29, 22, .18);
      cursor: pointer;
      padding: 0;
      transition: width .35s ease, background .35s ease, transform .35s ease;
    }
    .masters-dot:hover {
      background: rgba(200,163,59,.72);
      transform: translateY(-1px);
    }
    .masters-dot.is-active {
      width: 24px;
      background: var(--gold);
    }


    .reviews {
      background: #f3f1ec;
    }
    .reviews-bar {
      display: grid;
      grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(175px, 1fr));
      overflow: hidden;
      margin-top: 30px;
      border: 1px solid rgba(32, 29, 22, .1);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 12px 28px rgba(24, 22, 16, .08);
    }
    .reviews-lead {
      display: grid;
      align-content: center;
      gap: 10px;
      padding: 25px 26px;
      color: var(--white);
      background: #181817;
    }
    .reviews-lead span {
      color: #dec267;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .reviews-lead strong {
      max-width: 230px;
      font-size: 20px;
      line-height: 1.25;
      font-weight: 900;
    }
    .review-platform {
      display: grid;
      align-content: center;
      gap: 7px;
      padding: 22px 20px;
      border-left: 1px solid rgba(32, 29, 22, .1);
      transition: background-color .18s ease, color .18s ease;
    }
    .review-platform:hover {
      background: #fbf8ef;
    }
    .review-source {
      color: #3f3b33;
      font-size: 15px;
      font-weight: 700;
    }
    .reviews-note {
      margin-top: 16px;
      color: #7a7a7a;
      font-size: 13px;
    }
    .review-rating {
      display: flex;
      align-items: center;
      gap: 9px;
      color: #171717;
      font-size: 29px;
      font-weight: 700;
      line-height: 1;
    }
    .review-rating small {
      color: var(--gold-dark);
      font-size: 18px;
      letter-spacing: 0;
    }
    .review-count {
      color: var(--muted);
      font-size: 13px;
    }


    .map-section {
      padding: 0 0 96px;
      background: linear-gradient(180deg, #f7f8fa 0%, #eef2f6 100%);
    }
    .map-wrap {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 28px;
      align-items: stretch;
    }
    .map-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(16,24,40,.06);
    }
    .map-card h3 {
      position: relative;
      margin: 0 0 18px;
      padding-bottom: 14px;
      font-size: 30px;
      line-height: 1.1;
      font-weight: 900;
      color: #171717;
    }
    .map-card h3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 70px;
      height: 3px;
      border-radius: 999px;
      background: var(--gold);
    }
    .map-card p { color: var(--muted); margin: 0 0 14px; }
    .map-list { display: grid; gap: 12px; margin: 24px 0; }
    .map-list div {
      display: flex; gap: 10px; align-items: flex-start;
      color: #1d2733;
    }
    .map-embed {
      overflow: hidden;
      border-radius: var(--radius-lg);
      min-height: 420px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(16,24,40,.06);
      background: #dfe6ee;
    }
    .map-embed iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
      display: block;
      filter: grayscale(.08) contrast(1.02);
    }

    .callback {
      background: linear-gradient(120deg, #111 0%, #1c1c1c 42%, #2b220f 100%);
      color: #fff;
    }
    .callback-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 30px;
      align-items: center;
    }
    .callback-points { display: grid; gap: 14px; margin-top: 26px; }
    .callback-point { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.9); }
    .callback-form {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 24px;
      padding: 28px;
      backdrop-filter: blur(10px);
    }
    .callback-form .input { background: rgba(255,255,255,.96); }
    .consent-check {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      align-items: flex-start;
      color: rgba(255,255,255,.82);
      font-size: 13px;
      line-height: 1.45;
    }
    .consent-check input {
      width: 18px;
      height: 18px;
      margin: 1px 0 0;
      accent-color: var(--gold);
    }
    .consent-check a {
      color: #f2d779;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .callback-success-card {
      display: grid;
      gap: 14px;
      align-content: center;
      min-height: 310px;
      background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
    }
    .callback h3 {
      position: relative;
      padding-bottom: 14px;
      color: #fff;
      font-size: 31px;
      line-height: 1.12;
      font-weight: 900;
    }
    .callback h3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 78px;
      height: 3px;
      border-radius: 999px;
      background: var(--gold);
    }
    .callback-success-card h3 { color: #fff; }
    .callback-success-card p { color: rgba(255,255,255,.84); }
    .callback-success-mark {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--gold);
      color: #111;
      font-size: 30px;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(200,163,59,.28);
    }

    .callback-modal {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: none;
      place-items: center;
      padding: 24px;
    }
    .callback-modal.is-open { display: grid; }
    .callback-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10,10,10,.68);
      backdrop-filter: blur(6px);
    }
    .callback-modal-card {
      position: relative;
      width: min(520px, 100%);
      display: grid;
      gap: 16px;
      padding: 34px;
      border: 1px solid rgba(200,163,59,.36);
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,232,.98));
      color: #171717;
      box-shadow: 0 28px 80px rgba(0,0,0,.32);
    }
    .callback-modal-card h3 {
      margin: 0;
      font-size: 30px;
      line-height: 1.15;
    }
    .callback-modal-card p {
      margin: 0;
      color: #4f4f4f;
      font-size: 17px;
      line-height: 1.55;
    }
    .callback-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(17,17,17,.12);
      border-radius: 50%;
      background: #fff;
      color: #111;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .footer {
      background: #0f0f0f;
      color: rgba(255,255,255,.86);
      padding: 36px 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 24px;
      align-items: start;
    }
    .footer h4 {
      position: relative;
      margin: 0 0 16px;
      padding-bottom: 10px;
      color: #fff;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 900;
    }
    .footer h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 42px;
      height: 2px;
      border-radius: 999px;
      background: var(--gold);
    }
    .footer p, .footer a { margin: 0 0 8px; color: rgba(255,255,255,.74); }
    .footer .brand img { width: 84px; height: 58px; }
    .footer-brand-text { color:#e3c66a; }
    .footer-note { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.6); font-size: 14px; }

    .legal-body {
      background:
        linear-gradient(90deg, rgba(12,12,12,.78), rgba(39,30,12,.52)),
        var(--hero-image, url('../../img/hero-reference.jpg')) center / cover fixed no-repeat;
    }
    .legal-page {
      min-height: 100vh;
      padding: 48px 16px;
    }
    .legal-document {
      width: min(960px, 100%);
      margin: 0 auto;
      padding: clamp(24px, 4vw, 46px);
      border: 1px solid rgba(200,163,59,.28);
      border-radius: 24px;
      background: rgba(255,255,255,.97);
      box-shadow: 0 28px 80px rgba(0,0,0,.28);
    }
    .legal-back {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      margin-bottom: 22px;
      padding: 0 14px;
      border: 1px solid rgba(32,29,22,.12);
      border-radius: 999px;
      background: #fffaf1;
      color: #2a241a;
      font-weight: 700;
    }
    .legal-kicker,
    .legal-updated {
      margin: 0 0 10px;
      color: var(--gold-dark);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .legal-document h1 {
      margin: 0 0 12px;
      max-width: 780px;
      color: #171717;
      font-size: clamp(34px, 6vw, 58px);
      line-height: 1.04;
      text-shadow: none;
    }
    .legal-document h1::after {
      width: 104px;
      height: 4px;
      margin-top: 18px;
      background: var(--gold);
      box-shadow: none;
    }
    .legal-document section {
      padding: 26px 0 0;
    }
    .legal-document h2 {
      margin: 0 0 10px;
      font-size: 23px;
      line-height: 1.25;
    }
    .legal-document p,
    .legal-document li {
      color: #3f3f3f;
      font-size: 16px;
      line-height: 1.65;
    }
    .legal-document p {
      margin: 0 0 10px;
    }
    .legal-document ul {
      margin: 0;
      padding-left: 20px;
    }
    .legal-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(32,29,22,.1);
    }

    @media (max-width: 1100px) {
      .topbar-inner {
        position: relative;
        min-height: 70px;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        padding: 10px 54px 10px 0;
      }
      .topbar-menu-toggle {
        position: absolute;
        top: 50%;
        right: 0;
        z-index: 5;
        display: inline-flex !important;
        grid-column: auto;
        grid-row: auto;
        transform: translateY(-50%);
        background: #fff;
        transition: top .28s ease, transform .28s ease, border-color .28s ease, box-shadow .28s ease;
      }
      .topbar.is-menu-open .topbar-menu-toggle {
        top: 20px;
        transform: none;
        border-color: rgba(200,163,59,.34);
        box-shadow: 0 12px 28px rgba(24,22,16,.12);
      }
      .topbar-inner > .brand {
        grid-column: 1;
        grid-row: 1;
      }
      .topbar-menu {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        transform: translateY(-8px);
        visibility: hidden;
        transition:
          max-height .36s cubic-bezier(.22, 1, .36, 1),
          opacity .24s ease,
          transform .32s cubic-bezier(.22, 1, .36, 1),
          padding .32s ease,
          visibility 0s linear .36s;
      }
      .topbar.is-menu-open .topbar-menu {
        max-height: 360px;
        padding: 10px 0;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        transition:
          max-height .42s cubic-bezier(.22, 1, .36, 1),
          opacity .28s ease .04s,
          transform .34s cubic-bezier(.22, 1, .36, 1),
          padding .34s ease,
          visibility 0s;
      }
      .topbar-inner > .contact-strip,
      .topbar-inner > .btn {
        grid-column: 1;
        display: none;
        opacity: 0;
        transform: translateY(-8px);
      }
      .topbar.is-menu-open .topbar-inner > .contact-strip {
        display: grid;
        opacity: 1;
        transform: translateY(0);
        animation: topbarMenuFade .34s cubic-bezier(.22, 1, .36, 1);
      }
      .topbar.is-menu-open .topbar-inner > .btn {
        display: inline-flex;
        opacity: 1;
        transform: translateY(0);
        animation: topbarMenuFade .34s cubic-bezier(.22, 1, .36, 1);
      }
      @keyframes topbarMenuFade {
        from {
          opacity: 0;
          transform: translateY(-8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .contact-strip { grid-template-columns: 1fr; justify-items: start; gap: 14px; }
      .contact-item { justify-content: flex-start; white-space: normal; }
      .hero { min-height: auto; padding-bottom: 330px; }
      .hero-card { left: 16px; right: 16px; width: auto; }
      .callback-wrap, .footer-grid, .map-wrap { grid-template-columns: 1fr; }
      .master-card { flex-basis: calc((100% - 24px) / 2); }
    }

    @media (max-width: 820px) {
      section { padding: 72px 0; }
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }
      .service-card {
        border-radius: var(--radius);
        grid-template-rows: 210px 1fr;
      }
      .service-card-body { padding: 18px 18px 20px; }
      .service-card h3 {
        margin-bottom: 10px;
        padding-left: 13px;
        font-size: 21px;
        line-height: 1.18;
      }
      .service-card h3::before {
        width: 4px;
      }
      .service-card p {
        font-size: 14px;
        line-height: 1.45;
      }
      .service-price-link {
        min-height: 34px;
        margin-top: 12px;
        font-size: 14px;
      }
      .price-hero-grid {
        grid-template-columns: 1fr;
      }
      .service-price-filters,
      .service-price-picker {
        grid-template-columns: 1fr;
      }
      .hero-content { padding: 60px 0 40px; }
      h1 { font-size: 52px; }
      .hero p { font-size: 20px; }
      .section-head { align-items: start; flex-direction: column; }
      .section-head h2 {
        font-size: 42px;
        padding-bottom: 15px;
      }
      .masters-head {
        align-items: stretch;
        gap: 18px;
      }
      .masters-controls {
        justify-content: flex-start;
      }
      .master-card {
        flex-basis: min(82vw, 430px);
      }
      .masters-slider-footer {
        flex-wrap: wrap;
      }
      .masters-dots {
        justify-content: flex-start;
        width: 100%;
      }
      .reviews-bar { grid-template-columns: 1fr; }
      .reviews-lead strong { max-width: none; }
      .review-platform {
        padding: 18px 22px;
        border-top: 1px solid rgba(32, 29, 22, .1);
        border-left: 0;
      }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 20px, var(--container)); }
      .topbar-inner { min-height: 66px; }
      .brand { min-width: 0; }
      .brand img { width: 52px; height: 38px; }
      .brand-text { font-size: 10px; line-height: 1.25; }
      .topbar-menu .btn { width: 100%; }
      .hero { padding-bottom: 360px; }
      h1 { font-size: 40px; }
      h1::after {
        width: 86px;
        margin-top: 18px;
      }
      .hero p { font-size: 17px; }
      .hero-card { padding: 22px; border-radius: 20px; }
      .section-head h2 { font-size: 36px; }
      .section-head h2::before { width: 82px; }
      .section-head h2::after {
        left: 94px;
        width: 28px;
      }
      .services-grid { gap: 12px; }
      .service-card {
        grid-template-rows: 150px 1fr;
      }
      .service-card:hover { transform: none; }
      .service-card-body { padding: 12px; }
      .service-card h3 {
        margin-bottom: 8px;
        padding-left: 10px;
        font-size: 15px;
        line-height: 1.15;
        text-align: left;
      }
      .service-card h3::before { display: block; width: 3px; }
      .service-card p {
        display: block;
        font-size: 12px;
        line-height: 1.35;
      }
      .service-price-link {
        display: inline-flex;
        min-height: 28px;
        margin-top: 8px;
        font-size: 12px;
      }
      .master-body h3 { font-size: 22px; }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .about-photo {
        min-height: 360px;
        border-radius: 20px;
      }
      .about-card {
        padding: 22px;
        border-radius: 20px;
      }
      .about-card h2 {
        margin-bottom: 18px;
        padding-bottom: 14px;
        font-size: 36px;
      }
      .about-card h2::after { width: 92px; height: 4px; }
      .about-card p {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.5;
      }
      .about-list {
        gap: 12px;
        margin-top: 24px;
      }
      .about-item {
        gap: 12px;
        font-size: 15px;
        line-height: 1.45;
      }
      .bullet {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
        font-size: 14px;
      }
      .callback h3,
      .map-card h3 {
        font-size: 26px;
      }
      .hero .btn,
      .callback .btn,
      .map-section .btn { width: 100%; }
      .hero-actions { flex-direction: column; }
      .masters-controls {
        width: 100%;
      }
      .masters-arrow {
        flex: 0 0 42px;
      }
      .masters-slider-footer {
        gap: 12px;
      }
    }


