    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    /* Ocean palette (имената на променливите са запазени от старата тема):
       cream/paper = светли фонове, ink = дълбоко navy,
       bordeaux = океанско синьо (primary), brass = оранжев акцент (CTA) */
    :root {
      --cream:    #F5F9FC;
      --paper:    #E9F1F8;
      --paper-2:  #DCE8F3;
      --ink:      #0C2233;
      --ink-soft: #3C5165;
      --muted:    #74879A;
      --bordeaux: #135C8D;
      --bordeaux-dark: #0C3E61;
      --brass:    #E8772E;
      --brass-dark: #A94E10;
      --line:     #CFDEEA;
    }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: 'Karla', -apple-system, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      font-size: 16px;
      font-feature-settings: "ss01", "ss02";
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    /* Typography */
    h1, h2, h3, h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.01em;
      line-height: 1.15;
    }

    .mono { font-family: 'IBM Plex Mono', monospace; font-size: 0.85em; letter-spacing: -0.02em; }
    .italic { font-style: italic; }
    em { font-style: italic; color: var(--bordeaux); font-variation-settings: "SOFT" 100; }

    a { color: inherit; text-decoration: none; }

    /* Ясен фокус за навигация с клавиатура (не се показва при мишка) */
    :focus-visible {
      outline: 3px solid var(--brass);
      outline-offset: 3px;
    }
    .contact-section :focus-visible,
    .why-us :focus-visible,
    .map-section :focus-visible,
    .lightbox :focus-visible {
      outline-color: var(--brass);
      outline-offset: 4px;
    }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

    /* ─────────────────────────────────────
       TOP STRIP
    ───────────────────────────────────── */
    .top-strip {
      background: var(--ink);
      color: var(--cream);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 8px 0;
    }
    .strip-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .strip-status::before {
      content: '●';
      color: #6FCF97;
      margin-right: 6px;
      animation: blink 2s infinite;
    }
    /* Когато майсторът е на обект — точката става оранжева и спира да мига */
    .strip-status.busy::before {
      color: var(--brass);
      animation: none;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* ─────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────── */
    nav.main-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--cream);
      border-bottom: 1px solid var(--line);
      transition: padding 0.3s ease, box-shadow 0.3s ease;
    }
    nav.main-nav.scrolled {
      box-shadow: 0 4px 20px -10px rgba(0,0,0,0.15);
    }
    nav.main-nav.scrolled .nav-inner {
      padding-top: 10px;
      padding-bottom: 10px;
    }
    nav.main-nav.scrolled .nav-logo img {
      height: 38px;
    }

    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 32px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 32px;
      align-items: center;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .nav-logo img {
      height: 48px;
      width: auto;
      display: block;
    }
    .nav-logo-text {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 1.1rem;
      line-height: 1;
      color: var(--ink);
    }
    .nav-logo-text small {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      color: var(--brass);
      font-size: 0.7rem;
      font-weight: 400;
      margin-top: 4px;
      letter-spacing: 0.1em;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 38px;
      justify-content: center;
    }
    .nav-links a {
      font-family: 'Fraunces', serif;
      font-size: 0.95rem;
      color: var(--ink);
      position: relative;
      padding: 4px 0;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--bordeaux); }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--brass);
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }

    .nav-tel {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 10px 4px 10px 18px;
      border-left: 2px solid var(--brass);
      transition: all 0.25s ease;
      color: var(--ink);
      position: relative;
    }
    .nav-tel-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--bordeaux);
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.25s ease;
    }
    .nav-tel-icon svg { width: 16px; height: 16px; fill: currentColor; }
    .nav-tel:hover .nav-tel-icon { transform: rotate(-12deg) scale(1.05); }
    .nav-tel-text {
      display: flex;
      flex-direction: column;
      gap: 0;
      line-height: 1.1;
    }
    .nav-tel-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brass-dark);
    }
    .nav-tel-num {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .nav-tel:hover .nav-tel-num { color: var(--bordeaux); }

    @media (max-width: 900px) {
      .nav-inner { grid-template-columns: auto 1fr; }
      .nav-links { display: none; }
    }
    @media (max-width: 480px) {
      .nav-inner { padding: 14px 20px; gap: 12px; }
      .nav-logo-text { display: none; }
      .nav-tel { padding: 8px 14px; }
      .nav-tel-num { font-size: 0.88rem; }
    }

    /* ─────────────────────────────────────
       HERO
    ───────────────────────────────────── */
    .hero {
      padding: 80px 32px 100px;
      position: relative;
      overflow: hidden;
    }
    /* Three.js водна сцена — скрита, докато скриптът не я включи */
    .hero-water {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      display: none;
      pointer-events: none;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-water.ready { opacity: 1; }

    .hero-inner {
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }
    .hero-content { position: relative; }

    /* ── Фигурата на майстора ── */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
    .hero-figure {
      display: block;
      width: 100%;
      max-width: 430px;
      /* Омекотени ръбове, за да се слее с фона */
      -webkit-mask-image:
        linear-gradient(to right, transparent 0%, #000 16%, #000 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 9%, #000 82%, transparent 100%);
      mask-image:
        linear-gradient(to right, transparent 0%, #000 16%, #000 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 9%, #000 82%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      will-change: transform;
    }
    /* Плаването е на вътрешния <img>, а GSAP паралаксът — на <picture>.
       Така двете анимации не се борят за един и същ transform. */
    .hero-figure img {
      width: 100%;
      height: auto;
      display: block;
      animation: heroFloat 7s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 900px) {
      .hero { padding-top: 56px; }
      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .hero-visual { display: none; }
    }

    /* ── Лента с доверие ── */
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .hero-trust-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      white-space: nowrap;
    }
    .hero-trust-item svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      fill: none;
      stroke: var(--brass);
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .hero-trust-item:first-child svg { fill: var(--brass); stroke: none; }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brass-dark);
      margin-bottom: 40px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 60px;
      height: 1px;
      background: var(--brass);
    }

    .hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.4rem, 5.2vw, 4.4rem);
      font-weight: 400;
      line-height: 1.04;
      letter-spacing: -0.025em;
      max-width: 15ch;
      margin-bottom: 32px;
      font-variation-settings: "SOFT" 30;
    }
    .hero-title em {
      font-variation-settings: "SOFT" 100;
      display: block;
    }

    .hero-sub {
      max-width: 540px;
      font-size: 1.1rem;
      color: var(--ink-soft);
      line-height: 1.7;
      margin-bottom: 48px;
    }
    .hero-sub strong {
      color: var(--ink);
      font-weight: 600;
      font-style: italic;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--ink);
      color: var(--cream);
      padding: 20px 36px;
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    /* Liquid fill: rotating rounded square rises like water on hover */
    .cta-primary::after {
      content: '';
      position: absolute;
      top: 100%;
      left: -25%;
      width: 150%;
      aspect-ratio: 1;
      background: var(--brass);
      border-radius: 42%;
      rotate: 0deg;
      animation: liquidSpin 5s linear infinite;
      transform: translateY(0);
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
    }
    .cta-primary:hover::after { transform: translateY(-80%); }
    @keyframes liquidSpin { to { rotate: 360deg; } }
    .cta-primary > * { position: relative; z-index: 1; }
    .cta-primary .mono { font-weight: 500; }

    .cta-link {
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      color: var(--ink);
      border-bottom: 1px solid var(--brass);
      padding-bottom: 4px;
      transition: color 0.2s, border-color 0.2s;
    }
    .cta-link:hover {
      color: var(--bordeaux);
      border-color: var(--bordeaux);
    }

    /* Hero seal/stamp — печат върху фигурата */
    .hero-seal {
      position: absolute;
      bottom: 4px;
      left: 0;
      width: 132px;
      height: 132px;
      opacity: 0.95;
      pointer-events: none;
      filter: drop-shadow(0 6px 18px rgba(12, 34, 51, 0.18));
      transform: rotate(-7deg);
    }
    .hero-seal svg { width: 100%; height: 100%; }

    @media (max-width: 1100px) {
      .hero-seal { width: 104px; height: 104px; }
    }
    @media (max-width: 768px) {
      .hero { padding: 48px 0 72px; }
      .cta-primary { padding: 16px 28px; font-size: 1rem; }
    }

    /* ─────────────────────────────────────
       QUOTE BREAK
    ───────────────────────────────────── */
    .quote-break {
      background: var(--bordeaux);
      color: var(--cream);
      padding: 100px 32px;
      text-align: center;
      position: relative;
    }
    .quote-break::before, .quote-break::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 1px;
      background: var(--brass);
    }
    .quote-break::before { top: 60px; }
    .quote-break::after { bottom: 60px; }

    .quote-break blockquote {
      max-width: 760px;
      margin: 0 auto;
      font-family: 'Fraunces', serif;
      font-size: clamp(1.5rem, 3.4vw, 2.4rem);
      line-height: 1.3;
      font-weight: 400;
      font-style: italic;
      font-variation-settings: "SOFT" 100;
    }
    .quote-break blockquote em {
      color: var(--brass);
      font-style: italic;
    }
    .quote-break cite {
      display: block;
      margin-top: 32px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brass);
      font-style: normal;
    }

    /* ─────────────────────────────────────
       SECTIONS - shared
    ───────────────────────────────────── */
    section.section {
      padding: 120px 32px;
    }
    section.section-alt { background: var(--paper); }

    .section-head {
      max-width: 1180px;
      margin: 0 auto 80px;
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 32px;
      align-items: baseline;
    }
    .section-num {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 400;
      color: var(--brass);
      font-style: italic;
      font-variation-settings: "SOFT" 100;
    }
    .section-head h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      margin-bottom: 16px;
      font-variation-settings: "SOFT" 30;
    }
    .section-head p {
      color: var(--ink-soft);
      font-size: 1.05rem;
      max-width: 560px;
      font-style: italic;
    }

    @media (max-width: 600px) {
      section.section { padding: 80px 0; }
      .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 50px; }
      .section-num { font-size: 1.4rem; }
    }

    /* ─────────────────────────────────────
       SERVICES
    ───────────────────────────────────── */
    .services-list {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      perspective: 1100px;
    }

    .service {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 34px 30px 28px;
      background: var(--cream);
      border: 1px solid var(--line);
      transform-style: preserve-3d;
      will-change: transform;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
    }
    /* Оранжева ивица, която се разгръща при посочване */
    .service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brass), var(--bordeaux));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .service:hover {
      border-color: rgba(232, 119, 46, 0.55);
      box-shadow: 0 18px 40px -22px rgba(12, 34, 51, 0.35);
    }
    .service:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 42px;
      height: 42px;
      color: var(--bordeaux);
      transition: color 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .service-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service:hover .service-icon {
      color: var(--brass);
      transform: translateY(-3px) scale(1.06);
    }

    /* Римската цифра остава като воден знак в ъгъла */
    .service-num {
      position: absolute;
      top: 18px;
      right: 24px;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.5rem;
      color: var(--brass);
      opacity: 0.32;
      font-variation-settings: "SOFT" 100;
      pointer-events: none;
    }

    .service-content h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.32rem;
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--ink);
      line-height: 1.25;
    }
    .service-content p {
      color: var(--ink-soft);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .service-meta {
      align-self: flex-start;
      margin-top: auto;
      padding: 6px 12px;
      border: 1px solid var(--line);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      color: var(--brass-dark);
      text-transform: uppercase;
      white-space: nowrap;
      transition: border-color 0.25s ease, background 0.25s ease;
    }
    .service:hover .service-meta {
      border-color: rgba(232, 119, 46, 0.5);
      background: rgba(232, 119, 46, 0.07);
    }

    @media (max-width: 700px) {
      .services-list { grid-template-columns: 1fr; gap: 14px; perspective: none; }
      .service { padding: 26px 22px 22px; }
      .service:active { transform: scale(0.985); }
      .service-content h3 { font-size: 1.2rem; }
    }

    /* ─────────────────────────────────────
       MAJSTOR (About)
    ───────────────────────────────────── */
    .majstor-body {
      max-width: 820px;
      margin: 0 auto;
    }

    .majstor-story p {
      font-size: 1.1rem;
      line-height: 1.75;
      margin-bottom: 24px;
      color: var(--ink-soft);
    }
    .majstor-story .lead {
      font-family: 'Fraunces', serif;
      font-size: 1.45rem;
      line-height: 1.45;
      color: var(--ink);
      font-style: italic;
      font-variation-settings: "SOFT" 100;
      margin-bottom: 32px;
    }
    .majstor-story p strong {
      color: var(--bordeaux);
      font-weight: 600;
    }

    .majstor-stats {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .majstor-stat {
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
    }
    .majstor-stat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
    .majstor-stat:nth-child(even) { padding-left: 24px; }

    .majstor-stat-num {
      font-family: 'Fraunces', serif;
      font-size: 2.5rem;
      font-weight: 400;
      color: var(--bordeaux);
      line-height: 1;
      font-variation-settings: "SOFT" 60;
    }
    .majstor-stat-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brass-dark);
      margin-top: 8px;
    }

    /* ─────────────────────────────────────
       AREAS (phonebook style)
    ───────────────────────────────────── */
    .areas-body {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .area-col h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--brass);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .area-col h3 small {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      color: var(--brass-dark);
      letter-spacing: 0.1em;
      font-weight: 400;
    }

    .area-list {
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      line-height: 2;
      color: var(--ink);
      column-count: 2;
      column-gap: 32px;
    }
    .area-list span {
      display: block;
      transition: color 0.2s, padding 0.2s;
    }
    .area-list span:hover {
      color: var(--bordeaux);
      padding-left: 6px;
    }

    @media (max-width: 800px) {
      .areas-body { grid-template-columns: 1fr; gap: 56px; }
    }
    @media (max-width: 500px) {
      .area-list { column-count: 1; }
    }

    /* ─────────────────────────────────────
       GALLERY (editorial)
    ───────────────────────────────────── */
    .gallery-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 180px;
      gap: 16px;
    }
    .gallery-item {
      overflow: hidden;
      background: var(--paper-2);
      border: 1px solid var(--line);
      position: relative;
    }
    .gallery-item picture,
    .gallery-banner picture {
      display: block;
      width: 100%;
      height: 100%;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.98) contrast(1.03);
      transition: filter 0.4s ease, transform 0.5s ease;
    }
    .gallery-item:hover img {
      filter: saturate(1.08);
      transform: scale(1.04);
    }
    .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 2; }
    .gallery-item:nth-child(3) { grid-column: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .gallery-item:nth-child(n+7) { grid-column: span 2; }

    @media (max-width: 800px) {
      .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
      .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
      .gallery-item:nth-child(n+2) { grid-column: span 2; grid-row: span 1; }
    }

    /* ─────────────────────────────────────
       TESTIMONIALS (newspaper-style)
    ───────────────────────────────────── */
    .testimonials-wrap {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }
    .testimonials-body {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 44px) / 3);
      gap: 22px;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      /* Плавността се управлява от JS, за да уважава prefers-reduced-motion */
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 34px 2px 10px;
    }
    .testimonials-body::-webkit-scrollbar { display: none; }

    .testimonial {
      scroll-snap-align: start;
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--cream);
      border: 1px solid var(--line);
      padding: 40px 26px 26px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .testimonial:hover {
      border-color: rgba(232, 119, 46, 0.45);
      box-shadow: 0 16px 36px -24px rgba(12, 34, 51, 0.4);
    }
    .testimonial::before {
      content: '"';
      position: absolute;
      top: -24px;
      left: 18px;
      font-family: 'Fraunces', serif;
      font-size: 5.5rem;
      color: var(--brass);
      line-height: 1;
      font-style: italic;
      opacity: 0.55;
    }
    .testimonial-text {
      font-family: 'Fraunces', serif;
      font-size: 1.12rem;
      line-height: 1.55;
      color: var(--ink);
      font-style: italic;
      margin-bottom: 22px;
      font-variation-settings: "SOFT" 60;
    }

    /* Стрелки и точки */
    .tst-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: var(--cream);
      color: var(--ink);
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      line-height: 1;
      padding-bottom: 4px;
      cursor: pointer;
      z-index: 3;
      transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
      box-shadow: 0 6px 18px -8px rgba(12, 34, 51, 0.3);
    }
    .tst-arrow:hover { background: var(--brass); color: #fff; border-color: var(--brass); }
    .tst-arrow[disabled] { opacity: 0.3; cursor: default; }
    .tst-prev { left: -14px; }
    .tst-next { right: -14px; }

    .tst-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 18px;
    }
    .tst-dot {
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tst-dot::after {
      content: '';
      width: 26px;
      height: 3px;
      background: var(--line);
      transition: background 0.25s ease, width 0.25s ease;
    }
    .tst-dot[aria-current="true"]::after { background: var(--brass); width: 40px; }

    @media (max-width: 1000px) {
      .testimonials-body { grid-auto-columns: calc((100% - 22px) / 2); }
      .tst-prev { left: -6px; }
      .tst-next { right: -6px; }
    }
    @media (max-width: 680px) {
      .testimonials-body { grid-auto-columns: 86%; gap: 14px; }
      .tst-arrow { display: none; }
      .testimonial { padding: 34px 20px 22px; }
      .testimonial-text { font-size: 1.05rem; }
    }
    .testimonial-author {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brass-dark);
    }
    .testimonial-author small {
      display: block;
      color: var(--muted);
      margin-top: 6px;
      font-size: 0.7rem;
    }
    .testimonial-stars {
      color: var(--brass);
      font-size: 0.9rem;
      letter-spacing: 4px;
      margin-bottom: 16px;
    }


    /* ─────────────────────────────────────
       REVIEW CTA
    ───────────────────────────────────── */
    .review-cta {
      max-width: 1100px;
      margin: 80px auto 0;
      padding: 60px 50px;
      background: var(--cream);
      border: 1px solid var(--brass);
      position: relative;
      text-align: center;
    }
    .review-cta::before,
    .review-cta::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      border-color: var(--brass);
      border-style: solid;
    }
    .review-cta::before {
      top: -1px; left: -1px;
      border-width: 1px 0 0 1px;
    }
    .review-cta::after {
      bottom: -1px; right: -1px;
      border-width: 0 1px 1px 0;
    }
    .review-cta-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brass-dark);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .review-cta-eyebrow::before,
    .review-cta-eyebrow::after {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--brass);
    }
    .review-cta h3 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 16px;
      color: var(--ink);
      font-variation-settings: "SOFT" 30;
    }
    .review-cta h3 em {
      color: var(--bordeaux);
      font-style: italic;
      font-variation-settings: "SOFT" 100;
    }
    .review-cta p {
      max-width: 540px;
      margin: 0 auto 32px;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink-soft);
      font-style: italic;
    }
    .review-google-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--ink);
      color: var(--cream);
      padding: 18px 32px;
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      font-weight: 500;
      transition: background 0.25s ease, transform 0.2s ease;
      letter-spacing: 0.01em;
    }
    .review-google-btn:hover {
      background: var(--bordeaux);
      transform: translateY(-2px);
    }
    .review-google-btn .google-mark {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      border-radius: 50%;
      color: var(--ink);
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 0.85rem;
      font-style: italic;
    }
    .review-cta-note {
      margin-top: 24px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .review-cta-stars {
      color: var(--brass);
      font-size: 1.4rem;
      letter-spacing: 6px;
      margin-bottom: 24px;
    }

    @media (max-width: 600px) {
      .review-cta { padding: 40px 24px; margin-top: 60px; }
      .review-google-btn { padding: 16px 24px; font-size: 0.95rem; gap: 10px; }
    }

    /* ─────────────────────────────────────
       CONTACT (business card)
    ───────────────────────────────────── */
    .contact-section {
      background: var(--ink);
      color: var(--cream);
      padding: 140px 32px;
      position: relative;
    }
    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--bordeaux), var(--brass), var(--bordeaux));
    }

    .contact-card {
      max-width: 880px;
      margin: 0 auto;
      border: 1px solid rgba(232, 119, 46, 0.3);
      padding: 80px 60px;
      background: rgba(255, 255, 255, 0.02);
      position: relative;
    }
    .contact-card::before, .contact-card::after,
    .contact-card-corners::before, .contact-card-corners::after {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      border-color: var(--brass);
      border-style: solid;
    }
    .contact-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
    .contact-card::after { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
    .contact-card-corners::before { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
    .contact-card-corners::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

    .contact-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brass);
      text-align: center;
      margin-bottom: 32px;
    }

    .contact-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 400;
      text-align: center;
      margin-bottom: 48px;
      color: var(--cream);
      font-variation-settings: "SOFT" 60;
    }
    .contact-title em {
      color: var(--brass);
      font-style: italic;
      font-variation-settings: "SOFT" 100;
    }

    .phone-display {
      display: block;
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem, 7vw, 4.5rem);
      font-weight: 400;
      text-align: center;
      color: var(--cream);
      margin-bottom: 56px;
      letter-spacing: -0.02em;
      font-variation-settings: "SOFT" 30;
      transition: color 0.25s;
    }
    .phone-display:hover { color: var(--brass); }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding-top: 40px;
      border-top: 1px solid rgba(232, 119, 46, 0.3);
    }
    .contact-grid-item {
      text-align: center;
    }
    .contact-grid-item small {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: 10px;
    }
    .contact-grid-item div {
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      color: var(--cream);
    }

    .contact-secondary {
      margin-top: 56px;
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .contact-secondary a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      border: 1px solid rgba(232, 119, 46, 0.4);
      font-family: 'Fraunces', serif;
      font-size: 0.95rem;
      color: var(--cream);
      transition: all 0.25s;
    }
    .contact-secondary a:hover {
      background: var(--brass);
      color: var(--ink);
      border-color: var(--brass);
    }

    @media (max-width: 700px) {
      .contact-card { padding: 50px 28px; }
      .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    }

    /* ─────────────────────────────────────
       WHY US / TRUST SIGNALS
    ───────────────────────────────────── */
    .why-us {
      padding: 120px 32px;
      background: var(--ink);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }
    /* Водна вълна на прехода от цитата към тъмната секция */
    .why-us::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 44px;
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath fill='%23135C8D' d='M0,0 L1200,0 L1200,12 C1000,36 800,2 600,17 C400,32 200,4 0,21 Z'/%3E%3C/svg%3E") repeat-x top;
      background-size: 1200px 44px;
    }

    .why-us .section-head h2 { color: var(--cream); }
    .why-us .section-head p { color: rgba(245, 249, 252, 0.7); }
    .why-us .section-num { color: var(--brass); }

    .why-grid {
      max-width: 1180px;
      margin: 60px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(232, 119, 46, 0.2);
      border: 1px solid rgba(232, 119, 46, 0.2);
    }
    .why-card {
      background: var(--ink);
      padding: 40px 32px;
      transition: background 0.3s ease;
      position: relative;
    }
    .why-card:hover {
      background: #10324A;
    }
    .why-card-num {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--brass);
      letter-spacing: 0.05em;
      margin-bottom: 18px;
    }
    .why-card-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 20px;
      color: var(--brass);
    }
    .why-card-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
    .why-card h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .why-card p {
      font-size: 0.92rem;
      line-height: 1.65;
      color: rgba(245, 249, 252, 0.7);
    }

    @media (max-width: 900px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .why-grid { grid-template-columns: 1fr; }
    }

    /* ─────────────────────────────────────
       STATS COUNTERS
    ───────────────────────────────────── */
    .stats-counters {
      max-width: 1180px;
      margin: 80px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      padding: 50px 0;
      border-top: 1px solid rgba(232, 119, 46, 0.25);
      border-bottom: 1px solid rgba(232, 119, 46, 0.25);
    }
    .stat-counter {
      text-align: center;
      padding: 0 20px;
      border-right: 1px solid rgba(232, 119, 46, 0.15);
    }
    .stat-counter:last-child { border-right: none; }

    .stat-counter-num {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 500;
      color: var(--brass);
      line-height: 1;
      font-variation-settings: "SOFT" 30;
      letter-spacing: -0.02em;
    }
    .stat-counter-num sup {
      font-size: 0.5em;
      color: var(--cream);
      vertical-align: super;
      margin-left: 2px;
    }
    .stat-counter-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245, 249, 252, 0.6);
      margin-top: 12px;
    }

    @media (max-width: 700px) {
      .stats-counters { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
      .stat-counter:nth-child(2) { border-right: none; }
    }

    /* ─────────────────────────────────────
       COST CALCULATOR
    ───────────────────────────────────── */
    .calc {
      padding: 120px 32px;
      background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
      position: relative;
      overflow: hidden;
    }
    .calc-decor {
      position: absolute;
      pointer-events: none;
      opacity: 0.06;
    }
    .calc-decor.top { top: 40px; right: 5%; width: 180px; transform: rotate(15deg); }
    .calc-decor.bottom { bottom: 40px; left: 5%; width: 160px; transform: rotate(-12deg); }

    .calc-frame {
      max-width: 880px;
      margin: 0 auto;
      background: var(--cream);
      border: 1px solid var(--line);
      padding: 56px 48px;
      position: relative;
      box-shadow: 0 12px 60px -20px rgba(19, 92, 141, 0.15);
    }
    .calc-frame::before,
    .calc-frame::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      border-color: var(--brass);
      border-style: solid;
    }
    .calc-frame::before {
      top: -1px; left: -1px;
      border-width: 1px 0 0 1px;
    }
    .calc-frame::after {
      bottom: -1px; right: -1px;
      border-width: 0 1px 1px 0;
    }

    .calc-progress {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      margin-bottom: 36px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .calc-step-dot {
      width: 28px;
      height: 28px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      color: var(--muted);
      background: var(--cream);
    }
    .calc-step-dot.active {
      background: var(--bordeaux);
      color: var(--cream);
      border-color: var(--bordeaux);
    }
    .calc-step-dot.done {
      background: var(--brass);
      color: var(--cream);
      border-color: var(--brass);
    }
    .calc-step-line {
      width: 30px;
      height: 1px;
      background: var(--line);
      position: relative;
      overflow: hidden;
    }
    .calc-step-line::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--brass);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .calc-step-line.done::after { transform: scaleX(1); }

    .calc-step {
      display: none;
    }
    /* Стъпките се плъзгат в посоката на движение — напред отдясно, назад отляво */
    .calc-step.active {
      display: block;
      animation: calcInFwd 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .calc-step.active.from-left { animation-name: calcInBack; }
    @keyframes calcInFwd {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes calcInBack {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .calc-step-dot.active { animation: dotPop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1); }
    @keyframes dotPop {
      0% { transform: scale(0.82); }
      60% { transform: scale(1.16); }
      100% { transform: scale(1); }
    }
    .calc-result-price.pulse { display: inline-block; animation: pricePulse 0.65s ease; }
    @keyframes pricePulse {
      0% { transform: scale(1); }
      38% { transform: scale(1.07); }
      100% { transform: scale(1); }
    }

    .calc-step h3 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.4rem, 2.6vw, 1.9rem);
      font-weight: 500;
      margin-bottom: 8px;
      text-align: center;
    }
    .calc-step .subtitle {
      text-align: center;
      color: var(--muted);
      font-style: italic;
      margin-bottom: 32px;
      font-size: 0.95rem;
    }

    .calc-options {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
    }
    .calc-option {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 20px 18px;
      border: 1px solid var(--line);
      background: var(--cream);
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
      text-align: left;
    }
    .calc-option:hover {
      border-color: var(--brass);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px -8px rgba(19, 92, 141, 0.15);
    }
    .calc-option.selected {
      border-color: var(--bordeaux);
      background: rgba(19, 92, 141, 0.04);
    }
    .calc-option.selected::after {
      content: '✓';
      position: absolute;
      top: 12px;
      right: 14px;
      width: 22px;
      height: 22px;
      background: var(--bordeaux);
      color: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .calc-option-title {
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
    }
    .calc-option-price {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.78rem;
      color: var(--brass-dark);
      letter-spacing: 0.05em;
    }
    .calc-option-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.4;
    }

    .calc-actions {
      margin-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .calc-btn {
      padding: 14px 28px;
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: all 0.25s ease;
    }
    .calc-btn-next {
      background: var(--ink);
      color: var(--cream);
    }
    .calc-btn-next:hover {
      background: var(--bordeaux);
    }
    .calc-btn-next:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    .calc-btn-back {
      background: transparent;
      color: var(--ink-soft);
      border-bottom: 1px solid var(--line);
      padding: 14px 4px;
    }
    .calc-btn-back:hover {
      color: var(--bordeaux);
      border-color: var(--bordeaux);
    }

    /* Result step */
    .calc-result {
      text-align: center;
      padding: 16px 0;
    }
    .calc-result-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brass-dark);
      margin-bottom: 20px;
    }
    .calc-result-price {
      font-family: 'Fraunces', serif;
      font-size: clamp(3rem, 8vw, 5rem);
      font-weight: 500;
      color: var(--bordeaux);
      line-height: 1;
      letter-spacing: -0.02em;
      font-variation-settings: "SOFT" 60;
      margin-bottom: 8px;
    }
    .calc-result-currency {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      color: var(--brass);
      font-style: italic;
      margin-left: 8px;
    }
    .calc-result-note {
      font-style: italic;
      color: var(--muted);
      font-size: 0.95rem;
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }
    .calc-result-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 32px;
    }
    .calc-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--brass);
      color: var(--cream);
      padding: 18px 32px;
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      font-weight: 500;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .calc-cta-primary:hover {
      background: var(--brass-dark);
      transform: translateY(-2px);
    }
    .calc-cta-wa {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--ink);
      padding: 18px 28px;
      border: 1px solid var(--ink);
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .calc-cta-wa:hover {
      background: #25D366;
      color: #fff;
      border-color: #25D366;
    }
    .calc-restart {
      display: inline-block;
      margin-top: 24px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 1px dotted var(--muted);
      padding-bottom: 2px;
    }
    .calc-restart:hover { color: var(--bordeaux); }

    .calc-disclaimer {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
      font-style: italic;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .calc { padding: 80px 0; }
      .calc-frame { padding: 36px 24px; margin: 0 16px; }
      .calc-options { grid-template-columns: 1fr; }
      .calc-actions { flex-direction: column-reverse; }
      .calc-btn { width: 100%; }
    }

    /* ─────────────────────────────────────
       MAP
    ───────────────────────────────────── */
    .map-section {
      padding: 0;
      position: relative;
      background: var(--ink);
    }
    .map-frame {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px 80px;
    }
    .map-header {
      padding: 80px 0 40px;
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 32px;
      align-items: baseline;
    }
    .map-header .section-num { color: var(--brass); }
    .map-header h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      color: var(--cream);
      font-variation-settings: "SOFT" 30;
      margin-bottom: 12px;
    }
    .map-header p {
      color: rgba(245,249,252,0.65);
      font-style: italic;
    }
    .map-wrap {
      position: relative;
      border: 1px solid rgba(232,119,46,0.3);
      overflow: hidden;
    }
    .map-wrap::before, .map-wrap::after {
      content: '';
      position: absolute;
      width: 18px;
      height: 18px;
      border-color: var(--brass);
      border-style: solid;
      z-index: 2;
    }
    .map-wrap::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
    .map-wrap::after { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
    .map-wrap iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
      filter: grayscale(0.4) contrast(0.95);
      transition: filter 0.4s ease;
    }
    .map-wrap:hover iframe { filter: grayscale(0) contrast(1); }
    .map-meta {
      margin-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brass);
    }
    .map-meta a {
      color: var(--cream);
      border-bottom: 1px solid var(--brass);
      padding-bottom: 2px;
      transition: color 0.2s;
    }
    .map-meta a:hover { color: var(--brass); }

    @media (max-width: 600px) {
      .map-header { grid-template-columns: 1fr; gap: 12px; padding: 60px 0 30px; }
      .map-wrap iframe { height: 320px; }
    }

    /* ─────────────────────────────────────
       FAQ
    ───────────────────────────────────── */
    .faq-list {
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      border-top: 1px solid var(--line);
      padding: 28px 0;
    }
    .faq-item:last-child { border-bottom: 1px solid var(--line); }

    .faq-item summary {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      transition: color 0.2s;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 1.6rem;
      color: var(--brass);
      font-weight: 300;
      transition: transform 0.3s;
      width: 28px;
      text-align: center;
    }
    .faq-item[open] summary::after { content: '−'; }
    .faq-item summary:hover { color: var(--bordeaux); }

    .faq-item p {
      margin-top: 16px;
      padding-left: 0;
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 720px;
    }

    /* ─────────────────────────────────────
       FOOTER
    ───────────────────────────────────── */
    footer.site-footer {
      background: var(--cream);
      border-top: 1px solid var(--line);
      padding: 60px 32px 32px;
    }
    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 40px;
      align-items: center;
    }
    .footer-mark {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.6rem;
      color: var(--bordeaux);
      font-variation-settings: "SOFT" 100;
    }
    .footer-mark sup {
      font-size: 0.6em;
      color: var(--brass);
      margin-left: 2px;
    }
    .footer-meta {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.06em;
      line-height: 1.7;
    }
    .footer-meta strong {
      color: var(--ink);
      font-weight: 500;
    }
    .footer-links {
      display: flex;
      gap: 20px;
    }
    .footer-links a {
      font-family: 'Fraunces', serif;
      font-size: 0.9rem;
      color: var(--ink-soft);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--bordeaux); }
    .footer-bottom {
      max-width: 1180px;
      margin: 40px auto 0;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      flex-wrap: wrap;
      gap: 16px;
    }

    @media (max-width: 700px) {
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
    }

    /* ─────────────────────────────────────
       FLOATING ACTION BUTTONS
    ───────────────────────────────────── */
    .float-btns {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 99;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream);
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      transition: transform 0.2s;
    }
    .float-btn:hover { transform: translateY(-3px); }
    .float-btn-wa { background: #25D366; }
    .float-btn-call {
      background: var(--brass);
      position: relative;
    }
    .float-btn-call::after {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 2px solid var(--brass);
      opacity: 0;
      animation: ring 2s infinite;
    }
    @keyframes ring {
      0% { opacity: 0.8; transform: scale(1); }
      100% { opacity: 0; transform: scale(1.4); }
    }
    .float-btn svg { width: 24px; height: 24px; fill: currentColor; }

    /* ─────────────────────────────────────
       СТРАНИЦИ ПО УСЛУГА
    ───────────────────────────────────── */
    .breadcrumb {
      max-width: 1180px;
      margin: 0 auto;
      padding: 22px 32px 0;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .breadcrumb a { color: var(--bordeaux); border-bottom: 1px solid var(--line); }
    .breadcrumb a:hover { border-color: var(--brass); }
    .breadcrumb span { margin: 0 8px; color: var(--line); }

    .page-hero {
      padding: 40px 32px 70px;
      position: relative;
      overflow: hidden;
    }
    .page-hero-inner { max-width: 900px; margin: 0 auto; }
    .page-hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4.4vw, 3.4rem);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
      font-variation-settings: "SOFT" 30;
    }
    .page-hero .lead {
      font-size: 1.12rem;
      line-height: 1.7;
      color: var(--ink-soft);
      max-width: 660px;
      margin-bottom: 30px;
    }
    .page-hero .lead strong { color: var(--ink); font-weight: 600; }

    .prose { max-width: 760px; margin: 0 auto; }
    .prose h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      font-weight: 500;
      margin: 46px 0 16px;
      line-height: 1.2;
    }
    .prose h2:first-child { margin-top: 0; }
    .prose p {
      color: var(--ink-soft);
      font-size: 1.02rem;
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .prose strong { color: var(--ink); font-weight: 600; }
    .prose ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
    .prose li {
      position: relative;
      padding-left: 26px;
      margin-bottom: 10px;
      color: var(--ink-soft);
      line-height: 1.65;
    }
    .prose li::before {
      content: '';
      position: absolute;
      left: 4px;
      top: 0.62em;
      width: 8px;
      height: 8px;
      background: var(--brass);
      transform: rotate(45deg);
    }

    /* Таблица с цени */
    .price-box {
      max-width: 760px;
      margin: 40px auto 0;
      border: 1px solid var(--line);
      background: var(--cream);
      position: relative;
    }
    .price-box::before,
    .price-box::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: var(--brass);
      border-style: solid;
    }
    .price-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
    .price-box::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
    .price-box h2 {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 500;
      padding: 26px 28px 0;
      margin: 0;
    }
    .price-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
    .price-table th {
      text-align: left;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--brass-dark);
      font-weight: 400;
      padding: 10px 28px;
      border-bottom: 1px solid var(--line);
    }
    .price-table td {
      padding: 15px 28px;
      border-bottom: 1px solid var(--line);
      color: var(--ink-soft);
      font-size: 0.97rem;
      line-height: 1.5;
    }
    .price-table td:last-child {
      text-align: right;
      white-space: nowrap;
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      color: var(--bordeaux);
      font-weight: 500;
    }
    .price-table tr:last-child td { border-bottom: none; }
    .price-note {
      padding: 18px 28px 24px;
      font-size: 0.85rem;
      font-style: italic;
      color: var(--muted);
      line-height: 1.6;
      border-top: 1px solid var(--line);
    }

    /* Блок с призив за действие */
    .page-cta {
      background: var(--ink);
      color: var(--cream);
      padding: 70px 32px;
      text-align: center;
    }
    .page-cta h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.6rem, 3.4vw, 2.4rem);
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 14px;
      font-variation-settings: "SOFT" 60;
    }
    .page-cta p {
      color: rgba(245, 249, 252, 0.72);
      max-width: 520px;
      margin: 0 auto 30px;
      font-style: italic;
      line-height: 1.7;
    }
    .page-cta .cta-primary { background: var(--brass); }
    .page-cta .cta-primary::after { background: var(--bordeaux); }

    /* Другите услуги */
    .related {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
    }
    .related a {
      display: block;
      padding: 24px 22px;
      border: 1px solid var(--line);
      background: var(--cream);
      transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }
    .related a:hover {
      border-color: rgba(232, 119, 46, 0.55);
      transform: translateY(-3px);
      box-shadow: 0 16px 34px -22px rgba(12, 34, 51, 0.4);
    }
    .related-label {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.64rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brass-dark);
      margin-bottom: 10px;
    }
    .related-title {
      display: block;
      font-family: 'Fraunces', serif;
      font-size: 1.14rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.3;
    }
    .related a:hover .related-title { color: var(--bordeaux); }

    @media (max-width: 600px) {
      .breadcrumb {
        padding: 6px 20px 0;
        font-size: 0.62rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
      }
      /* Удобна за пръст зона около връзката */
      .breadcrumb a { display: inline-flex; align-items: center; min-height: 44px; }
      .page-hero { padding: 28px 0 50px; }
      .price-table td, .price-table th { padding-left: 20px; padding-right: 20px; }
      .price-box h2 { padding: 22px 20px 0; }
      .price-note { padding: 16px 20px 20px; }
    }

    /* ─────────────────────────────────────
       SCROLL PROGRESS LINE
    ───────────────────────────────────── */
    .scroll-progress {
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 2px;
      pointer-events: none;
      z-index: 101;
    }
    .scroll-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--brass), var(--bordeaux));
      transform: scaleX(0);
      transform-origin: left;
      will-change: transform;
    }

    /* ─────────────────────────────────────
       HERO WATER DROP
    ───────────────────────────────────── */
    .hero-drop {
      position: absolute;
      top: 96px;
      right: 8%;
      width: 60px;
      height: 170px;
      pointer-events: none;
      z-index: -1;
    }
    .hero-drop .drop {
      position: absolute;
      top: 0;
      left: 50%;
      width: 11px;
      height: 15px;
      margin-left: -5.5px;
      background: var(--bordeaux);
      border-radius: 45% 45% 60% 60% / 30% 30% 70% 70%;
      opacity: 0;
      animation: dropFall 6s cubic-bezier(0.5, 0, 0.85, 0.4) infinite;
    }
    .hero-drop .ripple {
      position: absolute;
      bottom: 6px;
      left: 50%;
      width: 46px;
      height: 15px;
      margin-left: -23px;
      border: 1px solid var(--brass);
      border-radius: 50%;
      opacity: 0;
      animation: rippleOut 6s ease-out infinite;
    }
    .hero-drop .ripple.r2 { animation-delay: 0.3s; }
    @keyframes dropFall {
      0%, 52% { opacity: 0; transform: translateY(0) scaleY(0.5); }
      57% { opacity: 0.85; transform: translateY(0) scaleY(1); }
      72% { opacity: 0.85; }
      76%, 100% { opacity: 0; transform: translateY(138px) scaleY(1.25); }
    }
    @keyframes rippleOut {
      0%, 74% { opacity: 0; transform: scale(0.15); }
      78% { opacity: 0.75; }
      100% { opacity: 0; transform: scale(1.4); }
    }
    @media (max-width: 1100px) { .hero-drop { display: none; } }

    /* ─────────────────────────────────────
       MARQUEE STRIP
    ───────────────────────────────────── */
    .marquee {
      background: var(--ink);
      color: var(--cream);
      border-top: 1px solid rgba(232, 119, 46, 0.35);
      border-bottom: 1px solid rgba(232, 119, 46, 0.35);
      overflow: hidden;
      padding: 13px 0;
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 38s linear infinite;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    .marquee-group {
      display: flex;
      white-space: nowrap;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .marquee-group em {
      color: var(--brass);
      font-style: normal;
      padding: 0 18px;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ─────────────────────────────────────
       HERO TITLE SPLIT-TEXT
    ───────────────────────────────────── */
    .hero-title .w {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
      padding: 0.08em 0.04em;
      margin: -0.08em -0.04em;
    }
    .hero-title .wi {
      display: inline-block;
      will-change: transform;
    }

    /* ─────────────────────────────────────
       MAP PULSE (60-min zone)
    ───────────────────────────────────── */
    .map-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 14px;
      margin: -7px 0 0 -7px;
      border-radius: 50%;
      background: var(--brass);
      box-shadow: 0 0 0 3px rgba(232, 119, 46, 0.35);
      z-index: 2;
      pointer-events: none;
    }
    .map-pulse::before,
    .map-pulse::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1px solid var(--brass);
      animation: mapRing 3.2s ease-out infinite;
    }
    .map-pulse::after { animation-delay: 1.6s; }
    @keyframes mapRing {
      0% { transform: scale(1); opacity: 0.9; }
      100% { transform: scale(10); opacity: 0; }
    }
    .map-pulse-label {
      position: absolute;
      top: calc(50% + 20px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      pointer-events: none;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--cream);
      border: 1px solid var(--brass);
      padding: 3px 9px;
      white-space: nowrap;
    }

    /* ─────────────────────────────────────
       GALLERY BANNER (винаги първи, цял)
    ───────────────────────────────────── */
    .gallery-banner {
      max-width: 1180px;
      margin: 0 auto 16px;
      position: relative;
      border: 1px solid var(--line);
      cursor: zoom-in;
      line-height: 0;
    }
    .gallery-banner::before,
    .gallery-banner::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: var(--brass);
      border-style: solid;
      z-index: 2;
    }
    .gallery-banner::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
    .gallery-banner::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
    .gallery-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ─────────────────────────────────────
       ПРЕДИ / ПОСЛЕ — плъзгач
    ───────────────────────────────────── */
    .ba-list {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
      gap: 26px;
    }
    .ba {
      margin: 0;
      position: relative;
      border: 1px solid var(--line);
      background: var(--paper-2);
      overflow: hidden;
      touch-action: pan-y;
      cursor: ew-resize;
      --pos: 50%;
    }
    .ba:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
    .ba-frame {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }
    .ba-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }
    /* Снимката "преди" се изрязва отдясно според позицията на разделителя */
    .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }

    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--pos);
      width: 2px;
      background: var(--cream);
      box-shadow: 0 0 0 1px rgba(12, 34, 51, 0.25);
      transform: translateX(-1px);
      pointer-events: none;
      z-index: 3;
    }
    .ba-handle::after {
      content: '⇄';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--cream);
      color: var(--bordeaux);
      border: 2px solid var(--brass);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 4px 14px rgba(12, 34, 51, 0.3);
    }
    .ba-tag {
      position: absolute;
      top: 14px;
      z-index: 2;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 5px 10px;
      background: rgba(12, 34, 51, 0.72);
      color: var(--cream);
      pointer-events: none;
    }
    .ba-tag-before { left: 14px; }
    .ba-tag-after { right: 14px; }

    .ba figcaption {
      padding: 14px 18px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--ink-soft);
      background: var(--cream);
      border-top: 1px solid var(--line);
    }
    .ba-hint {
      max-width: 1180px;
      margin: 0 auto 22px;
      font-style: italic;
      color: var(--muted);
      font-size: 0.92rem;
    }

    @media (max-width: 700px) {
      .ba-list { grid-template-columns: 1fr; gap: 18px; }
      .ba-handle::after { width: 40px; height: 40px; }
    }

    /* ─────────────────────────────────────
       GALLERY LIGHTBOX
    ───────────────────────────────────── */
    .gallery-item { cursor: zoom-in; }
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(26, 20, 16, 0.93);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .lightbox.open { opacity: 1; pointer-events: auto; }
    .lightbox img {
      max-width: min(1100px, 94vw);
      max-height: 84vh;
      border: 1px solid var(--brass);
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
      transform: scale(0.94);
      transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
    }
    .lightbox.open img { transform: scale(1); }
    .lightbox-close {
      position: absolute;
      top: 22px;
      right: 26px;
      width: 44px;
      height: 44px;
      background: none;
      border: 1px solid var(--brass);
      border-radius: 50%;
      color: var(--cream);
      font-size: 1.2rem;
      font-family: 'Fraunces', serif;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      z-index: 2;
    }
    .lightbox-close:hover { background: var(--brass); color: var(--ink); }

    /* Навигация напред/назад */
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      background: rgba(245, 249, 252, 0.10);
      border: 1px solid rgba(232, 119, 46, 0.5);
      border-radius: 50%;
      color: var(--cream);
      font-size: 1.7rem;
      line-height: 1;
      font-family: 'Fraunces', serif;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 4px;
    }
    .lightbox-nav:hover { background: var(--brass); color: var(--ink); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
    .lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
    .lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

    .lightbox-figure {
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      max-width: 100%;
    }
    .lightbox-caption {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: rgba(245, 249, 252, 0.75);
      text-align: center;
      max-width: 90vw;
    }
    .lightbox-counter {
      color: var(--brass);
      white-space: nowrap;
      border: 1px solid rgba(232, 119, 46, 0.4);
      padding: 3px 9px;
    }
    .lightbox-text { text-transform: none; letter-spacing: 0.04em; }

    @media (max-width: 700px) {
      .lightbox { padding: 60px 12px; }
      .lightbox-nav { width: 46px; height: 46px; font-size: 1.4rem; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
      .lightbox-caption { flex-direction: column; gap: 8px; font-size: 0.68rem; }
    }

    /* ─────────────────────────────────────
       MOBILE CALL BAR
    ───────────────────────────────────── */
    .mobile-call-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 120;
      background: var(--brass);
      color: #fff;
      padding: 15px 20px calc(15px + env(safe-area-inset-bottom));
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
    }
    .mobile-call-bar svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      animation: bellShake 3.5s ease-in-out infinite;
    }
    @keyframes bellShake {
      0%, 86%, 100% { transform: rotate(0); }
      88% { transform: rotate(-14deg); }
      90% { transform: rotate(12deg); }
      92% { transform: rotate(-9deg); }
      94% { transform: rotate(5deg); }
      96% { transform: rotate(-2deg); }
    }
    @media (max-width: 768px) {
      .mobile-call-bar { display: flex; }
      .float-btn-call { display: none; }
      .float-btns { bottom: 86px; right: 16px; }
      footer.site-footer { padding-bottom: 110px; }
    }

    /* ─────────────────────────────────────
       UTILS
    ───────────────────────────────────── */
    .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;
    }

    /* На телефон всяка връзка трябва да е удобна за пръст (мин. 44px) */
    @media (max-width: 768px) {
      .cta-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
      }
      .footer-links { gap: 4px; }
      .footer-links a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0 10px;
      }
      .map-meta a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
