/* Extracted from index.html <style> block. */
/* Keep paths relative to this file (assets/). */

:root {
        --brand-purple: #d5ab64;
        --brand-pink: #d5ab64;
        --brand-orange: #d5ab64;
        --bg-main: #ffffff;
        --bg-soft: #f6efe1;
        --text-main: #1a1a1a;
        --text-muted: #6b7280;
        --border-soft: #e5e7eb;
        --radius-lg: 1.5rem;
        --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
        --shadow-small: 0 10px 25px rgba(15, 23, 42, 0.08);
        --transition-fast: 0.2s ease;
      }

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

      html {
        scroll-behavior: smooth;
      }

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

        *,
        *::before,
        *::after {
          transition-duration: 0.01ms !important;
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          scroll-behavior: auto !important;
        }
      }

      body {
        margin: 0;
        font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        background-image:
          radial-gradient(circle at top left, #f5f3ee 0, #ffffff 38%, #ebe6dd 100%),
          url("universal_background.png");
        background-image:
          radial-gradient(circle at top left, #f5f3ee 0, #ffffff 38%, #ebe6dd 100%),
          -webkit-image-set(
            url("universal_background.webp") type("image/webp"),
            url("universal_background.png") type("image/png")
          );
        background-image:
          radial-gradient(circle at top left, #f5f3ee 0, #ffffff 38%, #ebe6dd 100%),
          image-set(
            url("universal_background.webp") type("image/webp"),
            url("universal_background.png") type("image/png")
          );
        background-size: auto, cover;
        background-repeat: no-repeat, no-repeat;
        background-attachment: scroll, fixed;
        background-position: top left, center top;
        color: var(--text-main);
        -webkit-font-smoothing: antialiased;
      }

      img {
        max-width: 100%;
        display: block;
      }

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

      a:focus-visible,
      button:focus-visible,
      [role="button"]:focus-visible {
        outline: 2px solid var(--brand-purple);
        outline-offset: 3px;
      }

      .skip-link {
        position: absolute;
        left: 12px;
        top: 12px;
        z-index: 1000;
        padding: 10px 14px;
        border-radius: 12px;
        background: #111827;
        color: #f9fafb;
        border: 1px solid rgba(213, 171, 100, 0.7);
        transform: translateY(-160%);
        transition: transform var(--transition-fast);
      }

      .skip-link:focus-visible {
        transform: translateY(0);
      }

      .page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

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

      /* Header */

      header {
        position: sticky;
        top: 0;
        z-index: 40;
        backdrop-filter: blur(18px);
        background: linear-gradient(
          to bottom,
          rgba(40, 40, 44, 0.97),
          rgba(18, 18, 22, 0.94)
        );
        border-bottom: 1px solid rgba(213, 171, 100, 0.4);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
        transition:
          background var(--transition-fast),
          border-color var(--transition-fast),
          box-shadow var(--transition-fast),
          transform var(--transition-fast);
        color: #f9fafb;
      }

      header.header-scrolled {
        background: rgba(18, 18, 22, 0.7);
        border-bottom-color: rgba(213, 171, 100, 0.26);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
        gap: 16px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 1cm;
      }

      .brand-logo {
        display: inline-block;
      }

      .brand-logo img {
        display: block;
        width: auto;
        height: 80px;
      }

      .brand-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }

      .brand-name {
        font-weight: 800;
        letter-spacing: 0.06em;
        font-size: 18px;
        text-transform: uppercase;
      }

      .brand-subtitle {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(243, 244, 246, 0.78);
      }

      nav {
        display: flex;
        align-items: center;
        gap: 18px;
        font-size: 14px;
      }

      nav a {
        position: relative;
        font-weight: 500;
        color: rgba(249, 250, 251, 0.9);
      }

      nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--brand-purple);
        transition: width var(--transition-fast);
      }

      nav a:hover::after {
        width: 100%;
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .lang-switch {
        display: inline-flex;
        border-radius: 999px;
        padding: 3px;
        background: #020617;
        border: 1px solid rgba(15, 23, 42, 0.9);
      }

      .lang-btn {
        border: none;
        background: transparent;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        font-size: 11px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 999px;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        cursor: pointer;
        color: #e5e7eb;
        transition: all var(--transition-fast);
      }

      .lang-btn.active {
        background: var(--brand-purple);
        color: #111827;
        box-shadow: none;
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 9px 18px;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        background-color: var(--brand-purple);
        color: #111827;
        box-shadow: none;
        transition: background-color var(--transition-fast), transform var(--transition-fast);
        white-space: nowrap;
      }

      .btn-primary:hover {
        background-color: #c29754;
        transform: translateY(-1px);
      }

      .btn-primary span {
        font-size: 16px;
      }

      .burger {
        border: 0;
        padding: 0;
        background: transparent;
        display: none;
        flex-direction: column;
        gap: 4px;
        width: 24px;
        cursor: pointer;
      }

      .burger span {
        height: 2px;
        border-radius: 999px;
        background: #f9fafb;
        transition: all var(--transition-fast);
      }

      .burger:focus-visible {
        outline: 2px solid var(--brand-purple);
        outline-offset: 4px;
        border-radius: 10px;
      }

      /* Hero */

      .hero {
        padding: 40px 0 40px;
        background-color: #2f2b2c;
        background-image:
          linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url("image/b_hero.jpeg");
        background-image:
          linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          -webkit-image-set(
            url("image/b_hero.webp") type("image/webp"),
            url("image/b_hero.jpeg") type("image/jpeg")
          );
        background-image:
          linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          image-set(
            url("image/b_hero.webp") type("image/webp"),
            url("image/b_hero.jpeg") type("image/jpeg")
          );
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-bottom: 1px solid rgba(213, 171, 100, 0.35);
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        gap: 32px;
        align-items: center;
      }

      .hero-main {
        display: flex;
        flex-direction: column;
      }

      .hero-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.9);
        padding: 3px 10px;
        border-radius: 999px;
        border: 1px solid rgba(248, 250, 252, 0.9);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.11em;
        color: #6b7280;
        margin-bottom: 14px;
      }

      .hero-label-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: radial-gradient(circle at 30% 20%, #ffffff 0, #22c55e 45%, #16a34a 100%);
      }

      .hero-title {
        font-size: clamp(30px, 4vw, 40px);
        line-height: 1.12;
        font-weight: 800;
        margin-bottom: 12px;
        color: #f9fafb;
      }

      .hero-gradient {
        color: var(--brand-purple);
        background: none;        
      }

      .hero-text {
        font-size: 15px;
        line-height: 1.6;
        color: #e5e7eb;
        max-width: 520px;
        margin-bottom: 20px;
      }

      .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 22px;
      }

      .badge {
        font-size: 11px;
        border-radius: 999px;
        padding: 5px 11px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(255, 255, 255, 0.9);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #4b5563;
      }

      .badge-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--brand-purple);
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        margin-bottom: 18px;
      }

      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 16px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        background: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: background var(--transition-fast), border-color var(--transition-fast),
          box-shadow var(--transition-fast), transform var(--transition-fast);
      }

      .btn-icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
      }

      .btn-ghost:hover {
        background: #ffffff;
        border-color: rgba(148, 163, 184, 1);
        box-shadow: 0 12px 30px rgba(148, 163, 184, 0.4);
        transform: translateY(-1px);
      }

      .hero-note {
        font-size: 12px;
        color: #e5e7eb;
      }

      .hero-media-wrapper {
        position: relative;
      }

      .hero-card {
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 32px;
        padding: 18px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(213, 171, 100, 0.35);
        position: relative;
        overflow: hidden;
      }

      .hero-promo-star {
        position: absolute;
        top: -40px;
        left: -26px;
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 11px;
        line-height: 1.35;
        font-weight: 800;
        text-transform: uppercase;
        color: #facc15;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
        cursor: pointer;
        z-index: 15;
        transform: rotate(-15deg);
        transform-origin: center;
      }

      .hero-promo-star-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.75));
      }

      .hero-promo-star-text {
        position: relative;
        z-index: 1;
      }

      .hero-promo-star-text-line {
        display: block;
      }

      .hero-paw-bg {
        position: absolute;
        inset: -10%;
        background-image: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.95) 0, transparent 40%),
          radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.9) 0, transparent 40%);
        opacity: 0.8;
        pointer-events: none;
      }

		      .hero-illustration {
		        position: relative;
		        border-radius: 26px;
		        overflow: hidden;
		        border: 1px solid rgba(248, 250, 252, 0.9);
		        background: center/cover no-repeat;
		        background-image: url("image/b_hero.jpeg");
		        background-image: -webkit-image-set(
		          url("image/b_hero.webp") type("image/webp"),
		          url("image/b_hero.jpeg") type("image/jpeg")
		        );
		        background-image: image-set(
		          url("image/b_hero.webp") type("image/webp"),
		          url("image/b_hero.jpeg") type("image/jpeg")
		        );
		        min-height: 260px;
		      }

      .hero-floating {
        position: absolute;
        bottom: 16px;
        left: 16px;
        right: 16px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
        font-size: 11px;
      }

      .hero-score,
      .hero-slot {
        backdrop-filter: blur(16px);
        background: rgba(15, 23, 42, 0.65);
        color: #ffffff;
        padding: 8px 10px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
        cursor: pointer;
      }

      .hero-score-emoji {
        font-size: 14px;
      }

      .hero-slot-pill {
        background: rgba(34, 197, 94, 0.16);
        border-radius: 999px;
        padding: 2px 7px;
        font-size: 10px;
      }

      .hero-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #6b7280;
        border: 1px solid rgba(248, 250, 252, 0.9);
      }

      .scroll-top-btn {
        position: fixed;
        right: 16px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid rgba(213, 171, 100, 0.7);
        background: rgba(15, 23, 42, 0.96);
        color: #f9fafb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        cursor: pointer;
        z-index: 60;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition:
          opacity var(--transition-fast),
          transform var(--transition-fast),
          visibility var(--transition-fast);
      }

      .scroll-top-btn.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .scroll-top-btn:hover {
        background: #e5e7eb;
        color: #111827;
      }

      .mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: none;
        gap: 10px;
        z-index: 55;
      }

      .mobile-cta a {
        flex: 1 1 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 14px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 14px;
        border: 1px solid rgba(213, 171, 100, 0.55);
        background: rgba(15, 23, 42, 0.96);
        color: #f9fafb;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
      }

      .mobile-cta a.mobile-cta-primary {
        background: #25d366;
        border-color: rgba(255, 255, 255, 0.35);
        color: #07130c;
      }

      /* Sections */

      section {
        padding: 32px 0;
      }

      .section-headline {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: flex-end;
        margin-bottom: 18px;
      }

      .section-title {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
      }

      .section-header {
        margin-bottom: 18px;
      }

      .section-subtitle {
        font-size: 13px;
        color: var(--text-muted);
        max-width: 420px;
        margin: 0;
      }

      .section-sub {
        font-size: 13px;
        color: var(--text-muted);
        max-width: 640px;
      }

      /* Advantages */

      .advantages-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
      }

      .adv-card {
        background: rgba(255, 255, 255, 0.96);
        border-radius: var(--radius-lg);
        padding: 14px 14px 16px;
        border: 1px solid rgba(229, 231, 235, 0.9);
        box-shadow: 0 14px 25px rgba(148, 163, 184, 0.18);
        position: relative;
        overflow: hidden;
      }

      .adv-icon {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
        background: var(--brand-purple);
        color: #111827;
        font-size: 16px;
      }

      .adv-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
      }

      .adv-text {
        font-size: 12px;
        color: var(--text-muted);
      }

      #advantages {
        background-color: #121112;
        position: relative;
        border-bottom: 1px solid rgba(213, 171, 100, 0.45);
      }

      #advantages::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 2px;
        background-color: rgba(213, 171, 100, 0.9);
        pointer-events: none;
      }

      #advantages .section-headline {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      #advantages .section-title {
        color: var(--brand-purple);
      }

      #advantages .section-subtitle {
        color: #e5e7eb;
        max-width: 640px;
      }

      #advantages .adv-card {
        position: relative;
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 20px;
        border: 1px solid rgba(213, 171, 100, 0.35);
        padding: 14px 14px 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      }

      #advantages .adv-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(213, 171, 100, 0.18), transparent 55%);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
      }

      #advantages .adv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
      }

      #advantages .adv-card:hover::before {
        opacity: 1;
      }

      #advantages .adv-title {
        color: #f9fafb;
      }

      #advantages .adv-text {
        color: #e5e7eb;
      }

      /* Services */

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

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

      .service-card {
        background: #ffffff;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-soft);
        padding: 14px 14px 16px;
        box-shadow: 0 10px 25px rgba(148, 163, 184, 0.18);
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .service-pill {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #6b7280;
      }

      .service-name {
        font-size: 15px;
        font-weight: 600;
      }

      .service-desc {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-muted);
      }

      .service-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        font-size: 12px;
      }

      .service-price {
        font-weight: 700;
      }

      .service-note {
        font-size: 11px;
        color: var(--text-muted);
      }

      /* Extra services card */

      .service-card-extra {
        margin-top: 0;
      }

      .service-card-extra .service-desc {
        margin-top: 6px;
      }

      .service-card-zootaxi .service-desc {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .service-card-zootaxi .service-desc p {
        margin: 0;
      }

      .service-extra-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .service-extra-item {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: baseline;
      }

      .service-extra-name {
        flex: 1;
      }

      .service-extra-price {
        white-space: nowrap;
        font-weight: 600;
      }

      /* Steps */

      .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
      }

      .step-card {
        position: relative;
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 20px;
        border: 1px solid rgba(213, 171, 100, 0.35);
        padding: 12px 12px 14px;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        color: #e5e7eb;
      }

      .step-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(213, 171, 100, 0.18), transparent 55%);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
      }

      .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
      }

      .step-card:hover::before {
        opacity: 1;
      }

      .step-num {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #d5ab64;
      }

      .step-title {
        font-weight: 600;
        color: #f9fafb;
      }

      /* Services (dark theme like reviews) */

      #services {
        background-color: #2f2b2c;
      }

      #services .section-headline {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      #services .section-title {
        color: var(--brand-purple);
      }

      #services .section-subtitle {
        color: #e5e7eb;
      }

      #services .service-card {
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 20px;
        border: 1px solid rgba(213, 171, 100, 0.35);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        color: #e5e7eb;
      }

      #services .service-name {
        color: #f9fafb;
      }

      #services .service-desc,
      #services .service-note {
        color: #e5e7eb;
      }

      #services .service-pill {
        color: var(--brand-purple);
      }

      #services .service-price {
        color: #f9fafb;
      }

      /* Main salon SEO + grooming (video background) */

      #seo-branch {
        position: relative;
        background-color: #121112;
        overflow: hidden;
        border-bottom: 1px solid rgba(213, 171, 100, 0.45);
      }

      #seo-branch::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 2px;
        background-color: rgba(213, 171, 100, 0.9);
        pointer-events: none;
      }

      #seo-branch .seo-video-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }

      #seo-branch .seo-video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.7),
          rgba(0, 0, 0, 0.9)
        );
        z-index: 1;
      }

      #seo-branch .container {
        position: relative;
        z-index: 2;
      }

      #seo-branch .section-header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 22px;
      }

      #seo-branch .section-title {
        color: var(--brand-purple);
      }

      #seo-branch .section-sub {
        color: #e5e7eb;
      }

      @media (min-width: 1024px) {
        #seo-branch .section-title {
          font-size: 28px;
        }

        #seo-branch .section-sub {
          font-size: 16px;
          line-height: 1.8;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
        }
      }

      #seo-branch .seo-grooming-extra {
        max-width: 960px;
        margin: 16px auto 0;
      }

      #seo-branch .seo-grooming-extra h2 {
        color: var(--brand-purple);
        text-align: center;
        max-width: 780px;
        margin: 0 auto 16px;
      }

      #seo-branch .seo-grooming-extra p {
        color: #e5e7eb;
      }

      /* Reviews */

      #reviews {
        background-color: #2f2b2c;
      }

      #reviews .section-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 22px;
      }

      #reviews .section-title {
        color: var(--brand-purple);
      }

      #reviews .section-sub {
        color: #e5e7eb;
      }

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

      .review-card {
        position: relative;
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 20px;
        border: 1px solid rgba(213, 171, 100, 0.35);
        padding: 12px 12px 14px;
        font-size: 12px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      }

      .review-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(213, 171, 100, 0.18), transparent 55%);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
      }

      .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
      }

      .review-card:hover::before {
        opacity: 1;
      }

      .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
      }

      .review-name {
        font-weight: 600;
        font-size: 12px;
        color: #f9fafb;
      }

      .review-source {
        font-size: 10px;
        color: #e5e7eb;
      }

      .review-stars {
        font-size: 12px;
        color: #f59e0b;
      }

      .review-text {
        color: #e5e7eb;
        line-height: 1.5;
      }

      #reviews .badge {
        background: rgba(213, 171, 100, 0.12);
        border-radius: 999px;
        padding: 4px 9px;
        border: 1px solid rgba(213, 171, 100, 0.6);
        color: var(--brand-purple);
        font-size: 11px;
      }

      .rating-card {
        background: radial-gradient(circle at top left, #f9fafb 0, #ffffff 45%, #fff7ed 100%);
        border-radius: 22px;
        border: 1px solid rgba(229, 231, 235, 0.9);
        padding: 16px 16px 14px;
        font-size: 12px;
        box-shadow: 0 12px 28px rgba(148, 163, 184, 0.25);
      }

      .rating-value {
        font-size: 32px;
        font-weight: 800;
        margin-right: 8px;
      }

      .rating-source {
        font-size: 11px;
        color: #6b7280;
      }

      .rating-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
      }

      .rating-badge {
        font-size: 10px;
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(22, 163, 74, 0.06);
        color: #059669;
      }

      /* FAQ */

      #steps {
        background-color: #121112;
        position: relative;
        border-bottom: 1px solid rgba(213, 171, 100, 0.45);
      }

      #steps::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 2px;
        background-color: rgba(213, 171, 100, 0.9);
        pointer-events: none;
      }

      #steps .section-headline {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      #steps .section-title {
        color: var(--brand-purple);
      }

      #faq {
        background-color: #121112;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(213, 171, 100, 0.45);
      }

      #faq::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 2px;
        background-color: rgba(213, 171, 100, 0.9);
        pointer-events: none;
      }

      #faq .faq-video-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }

      #faq .faq-video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.7),
          rgba(0, 0, 0, 0.9)
        );
        z-index: 1;
      }

      #faq .container {
        position: relative;
        z-index: 2;
      }

      #faq .section-headline {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      #faq .section-title,
      #faq .section-subtitle {
        color: var(--brand-purple);
      }

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

      .faq-card {
        position: relative;
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 20px;
        border: 1px solid rgba(213, 171, 100, 0.35);
        padding: 12px 12px 14px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      }

      .faq-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(213, 171, 100, 0.18), transparent 55%);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
      }

      .faq-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
      }

      .faq-card:hover::before {
        opacity: 1;
      }

      .faq-question {
        font-size: 14px;
        font-weight: 600;
        margin: 0 0 6px;
        color: var(--brand-purple);
      }

      .faq-text {
        font-size: 13px;
        color: #e5e7eb;
        line-height: 1.6;
        margin: 0;
      }

      /* Gallery */

      .gallery-wrapper {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      #gallery {
        background-color: #2f2b2c;
        border-bottom: 3mm solid var(--brand-purple);
      }

      #gallery .section-headline {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
      }

      #gallery .section-title {
        color: var(--brand-purple);
      }

      #gallery .section-subtitle {
        color: #e5e7eb;
      }

      .gallery-block-title {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--brand-purple);
        text-align: center;
      }

      .gallery-footnote {
        font-size: 11px;
        color: #9ca3af;
        margin-top: 10px;
      }

      .gallery-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
      }

      /* Before / after slider (dogs) */

      .ba-slider {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
        background: #020617;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
        cursor: ew-resize;
        user-select: none;
        -webkit-user-select: none;
        touch-action: none;
        aspect-ratio: 1 / 1;
        transition: box-shadow var(--transition-fast);
        --ba-position: 50%;
      }

      .ba-slider:hover {
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
      }

      .ba-slider-inner {
        position: absolute;
        inset: 0;
      }

      .ba-before,
      .ba-after {
        position: absolute;
        inset: 0;
        overflow: hidden;
      }

      .ba-before {
        clip-path: inset(0 calc(100% - var(--ba-position, 50%)) 0 0);
        -webkit-clip-path: inset(0 calc(100% - var(--ba-position, 50%)) 0 0);
      }

      .ba-after {
        clip-path: inset(0 0 0 var(--ba-position, 50%));
        -webkit-clip-path: inset(0 0 0 var(--ba-position, 50%));
      }

      .ba-slider img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .ba-handle {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 0;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
      }

      .ba-handle-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        transform: translateX(-50%);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.16);
      }

      .ba-handle-knob {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 6px;
        height: 64px;
        border-radius: 999px;
        background: #ffffff;
        box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.35), 0 10px 25px rgba(15, 23, 42, 0.65);
      }

      .ba-handle-knob::before,
      .ba-handle-knob::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
      }

      .ba-handle-knob::before {
        right: 100%;
        margin-right: 6px;
        border-right: 10px solid #ffffff;
      }

      .ba-handle-knob::after {
        left: 100%;
        margin-left: 6px;
        border-left: 10px solid #ffffff;
      }

      .ba-label {
        display: none;
      }

      .ba-before::before,
      .ba-after::before {
        position: absolute;
        top: 12px;
        z-index: 5;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #ffffff;
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      }

      .ba-before::before {
        content: "ДО";
        left: 14px;
      }

      .ba-after::before {
        content: "ПОСЛЕ";
        right: 14px;
      }

      .ba-helper {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: #9ca3af;
        margin-top: 8px;
      }

      .ba-helper-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--brand-purple);
      }

      .ba-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        gap: 10px;
        font-size: 11px;
        color: #6b7280;
      }

      .ba-buttons {
        display: inline-flex;
        gap: 6px;
      }

      .ba-btn {
        border: 1px solid rgba(209, 213, 219, 0.9);
        background: #ffffff;
        border-radius: 999px;
        padding: 5px 9px;
        font-size: 11px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: #374151;
        box-shadow: 0 8px 18px rgba(148, 163, 184, 0.3);
        transition: background var(--transition-fast), transform var(--transition-fast),
          box-shadow var(--transition-fast);
      }

      .ba-btn span {
        font-size: 13px;
      }

      .ba-btn:hover {
        background: #f9fafb;
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(148, 163, 184, 0.4);
      }

      .ba-counter {
        font-weight: 500;
        font-size: 11px;
      }

      /* Cats grid */

      .cat-card {
        border-radius: 22px;
        overflow: hidden;
        background: #020617;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
        aspect-ratio: 1 / 1;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        cursor: pointer;
      }

      .cat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
      }

      .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity var(--transition-fast);
      }

      /* Fullscreen viewer for cats */

      .cat-lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
      }

      .cat-lightbox.open {
        opacity: 1;
        pointer-events: auto;
      }

      .cat-lightbox-inner {
        position: relative;
        max-width: 96vw;
        max-height: 96vh;
      }

      .cat-lightbox img {
        width: 9cm;
        height: 12cm;
        max-width: 100%;
        max-height: 100%;
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
        object-fit: cover;
      }

      .cat-lightbox-close {
        position: absolute;
        top: -18px;
        right: -18px;
        width: 36px;
        height: 36px;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        background: rgba(15, 23, 42, 0.9);
        color: #f9fafb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
        transition: background var(--transition-fast), transform var(--transition-fast);
      }

      .cat-lightbox-close:hover {
        background: rgba(31, 41, 55, 0.95);
        transform: translateY(-1px);
      }
	
      /* Contact & form */

      #contact {
        background-color: #121112;
      }

      #contact .section-headline {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      #contact .section-title {
        color: var(--brand-purple);
      }

      #contact .section-subtitle {
        text-align: center;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
        gap: 18px;
        position: relative;
      }

      .contact-grid::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: var(--brand-purple);
        left: 50%;
        transform: translateX(-50%);
      }

      .contact-card,
      .form-card {
        position: relative;
        background: radial-gradient(circle at top left, #1f1b1f 0, #121012 45%, #0b090b 100%);
        border-radius: 22px;
        border: 1px solid rgba(213, 171, 100, 0.35);
        padding: 16px 16px 20px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      }

      .contact-card::before,
      .form-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(213, 171, 100, 0.18), transparent 55%);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast);
      }

      .contact-card:hover,
      .form-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
      }

      .contact-card:hover::before,
      .form-card:hover::before {
        opacity: 1;
      }

      .contact-row {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        margin-bottom: 10px;
        color: #f3f4f6;
      }

      .contact-label {
        font-weight: 600;
        min-width: 76px;
        color: #f9fafb;
      }

      .contact-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(55, 65, 81, 0.9);
        font-size: 12px;
        background: rgba(17, 24, 39, 0.85);
        color: #e5e7eb;
      }

      .contact-schedule {
        font-size: 12px;
        color: #d1d5db;
        margin-top: 8px;
      }

      .map-wrapper {
        margin-top: 12px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(229, 231, 235, 0.9);
        background: #e5e7eb;
        min-height: 180px;
      }

      .map-placeholder {
        font-size: 11px;
        color: #6b7280;
        padding: 12px;
        text-align: center;
      }

      .map-placeholder.has-map {
        padding: 0;
      }

      .map-placeholder .dg-widget-link {
        padding: 12px;
      }

      .map-embed iframe {
        width: 100%;
        height: 240px;
        display: block;
        border: 0;
      }

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

      .form-field {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
      }

      .form-field label {
        font-weight: 500;
        color: #f9fafb;
      }

      .form-field input,
      .form-field select,
      .form-field textarea {
        border-radius: 999px;
        border: 1px solid rgba(209, 213, 219, 0.9);
        padding: 8px 12px;
        font-size: 13px;
        outline: none;
        font-family: inherit;
        transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
          background-color var(--transition-fast);
      }

      .form-field textarea {
        border-radius: 16px;
        min-height: 64px;
        resize: vertical;
      }

      .form-hint {
        font-size: 11px;
        color: rgba(229, 231, 235, 0.75);
        line-height: 1.25;
      }

      .form-field input:focus,
      .form-field select:focus,
      .form-field textarea:focus {
        border-color: var(--brand-purple);
        box-shadow: 0 0 0 1px rgba(213, 171, 100, 0.35);
        background-color: #ffffff;
      }

      .form-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: 10px;
        font-size: 11px;
        color: #9ca3af;
      }

      .form-status {
        margin-top: 10px;
        font-size: 12px;
        color: #e5e7eb;
      }

      .form-noscript {
        margin-top: 12px;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px dashed rgba(213, 171, 100, 0.6);
        background: rgba(15, 23, 42, 0.6);
        font-size: 12px;
        color: #e5e7eb;
        line-height: 1.4;
      }

      .form-noscript-title {
        font-weight: 600;
        margin-bottom: 6px;
        color: #f9fafb;
      }

      .form-noscript-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
      }

      .form-noscript-actions a {
        color: #f9fafb;
        text-decoration: underline;
      }

      .form-status:empty {
        display: none;
      }

      .form-status.is-error {
        color: #fecaca;
      }

      .form-legal {
        margin-top: 10px;
        font-size: 11px;
        color: rgba(229, 231, 235, 0.8);
      }

      .form-legal a {
        color: rgba(229, 231, 235, 0.92);
        text-decoration: underline;
        text-underline-offset: 2px;
      }

      .form-legal a:hover {
        color: #ffffff;
      }

      /* Footer */

      footer {
        padding: 20px 0 24px;
        font-size: 11px;
        background-color: #2f2b2c;
        color: var(--brand-purple);
      }

      .footer-inner {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
      }

      .footer-links {
        display: flex;
        gap: 12px;
      }

      .footer-links a {
        text-decoration: underline;
        text-decoration-style: dotted;
      }

      /* Responsive */

      @media (max-width: 960px) {
        nav {
          position: fixed;
          inset: 58px 0 auto 0;
          background: rgba(255, 255, 255, 0.98);
          padding: 12px 16px 14px;
          border-bottom: 1px solid rgba(229, 231, 235, 0.9);
          display: none;
          flex-direction: column;
          gap: 10px;
        }

        nav a {
          color: #111827;
        }

        nav.open {
          display: flex;
        }

        .header-inner {
          padding: 10px 0;
        }

        .burger {
          display: flex;
        }

        .hero-grid {
          grid-template-columns: minmax(0, 1fr);
        }

        .hero-card {
          margin-top: 4px;
        }

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

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

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

        .reviews-grid {
          grid-template-columns: minmax(0, 1fr);
        }

        .review-list {
          grid-template-columns: minmax(0, 1fr);
        }

        .faq-grid {
          grid-template-columns: minmax(0, 1fr);
        }

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

        .contact-grid {
          grid-template-columns: minmax(0, 1fr);
          row-gap: 18px;
        }

        .contact-grid::before {
          display: none;
        }
      }

      @media (max-width: 640px) {
        .page {
          padding-bottom: 86px;
        }

        .scroll-top-btn {
          bottom: 92px;
        }

        .mobile-cta {
          display: flex;
        }

        .header-inner {
          gap: 10px;
          position: relative;
        }

        .brand {
          margin-left: 0;
        }

        .brand-logo img {
          height: 90px;
        }

        .header-actions {
          flex-direction: column;
          align-items: flex-end;
          gap: 8px;
        }

        .header-actions .btn-primary {
          order: 1;
        }

        .header-actions .burger {
          order: 2;
        }

        .header-actions .lang-switch {
          order: 3;
        }

        .burger {
          position: absolute;
          left: 50%;
          bottom: 6px;
          transform: translateX(-50%);
        }

        .lang-switch {
          flex-direction: column;
          align-items: stretch;
          width: 64px;
          padding: 4px;
        }

        .lang-btn {
          padding: 4px 0;
          text-align: center;
        }

        .container {
          width: min(100% - 24px, 560px);
        }

        section {
          padding: 26px 0;
        }

        .section-headline {
          flex-direction: column;
          align-items: flex-start;
        }

        .advantages-grid {
          grid-template-columns: minmax(0, 1fr);
        }

        .services-grid {
          grid-template-columns: minmax(0, 1fr);
        }

        .services-grid-bottom {
          grid-template-columns: minmax(0, 1fr);
        }

        .steps-grid {
          grid-template-columns: minmax(0, 1fr);
        }

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

        .hero-title {
          font-size: 28px;
        }

        .hero-illustration {
          min-height: 220px;
        }

        .hero-main {
          display: flex;
          flex-direction: column;
        }

        .hero-note {
          order: 3;
          margin-bottom: 12px;
        }

        .hero-actions {
          order: 4;
        }

        .hero-promo-star {
          transform: rotate(-15deg) scale(0.85);
          transform-origin: center;
        }

        .service-extra-item {
          flex-direction: column;
          align-items: flex-start;
        }

        .service-extra-price {
          margin-top: 2px;
        }
      }
