:root {
            --bg: #f6f1ea;
            --accent: #2f7f7a;
            --text-main: #222;
            --text-soft: #666;
            --line: rgba(47,127,122,0.25);
        }

        /* body::before is defined below in enhanced lines section */
        body > * { position: relative; z-index: 1; }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--text-main);
            font-family: "Manrope", sans-serif;
            font-weight: 400;
            scroll-behavior: smooth;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        body.menu-open,
        body.modal-open {
            overflow: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: 72px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            padding: 0 80px;
            background: rgba(246,241,234,0.92);
            backdrop-filter: blur(14px);
            z-index: 1000;
            border-bottom: 1px solid rgba(47,127,122,0.12);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

        nav .logo {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            width: 178px;
            height: 50px;
            padding: 8px 18px 7px;
            border-radius: 2px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.70), rgba(246,241,234,0.34));
            border: 1px solid rgba(180,146,91,0.58);
            box-shadow:
                0 10px 22px rgba(47,127,122,0.08),
                inset 0 0 0 1px rgba(255,255,255,0.55);
            text-decoration: none;
        }

        nav .logo::before,
        nav .logo::after {
            content: "";
            position: absolute;
            width: 22px;
            height: 22px;
            pointer-events: none;
        }

        nav .logo::before {
            left: -5px;
            top: -5px;
            border-left: 1px solid rgba(47,127,122,0.56);
            border-top: 1px solid rgba(47,127,122,0.56);
        }

        nav .logo::after {
            right: -5px;
            bottom: -5px;
            border-right: 1px solid rgba(47,127,122,0.56);
            border-bottom: 1px solid rgba(47,127,122,0.56);
        }

        .logo-word {
            font-family: "Fraunces", serif;
            font-size: 25px;
            line-height: 0.92;
            letter-spacing: 0.15em;
            color: var(--accent);
            font-weight: 650;
            font-variation-settings: "SOFT" 45, "WONK" 1;
        }

        .logo-sub {
            margin-top: 5px;
            font-size: 8px;
            line-height: 1;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: rgba(91,78,62,0.70);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(47,127,122,0.22);
            border-radius: 50%;
            background: rgba(255,255,255,0.55);
            color: var(--accent);
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
        }

        .menu-toggle span,
        .menu-toggle span::before,
        .menu-toggle span::after {
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 99px;
            background: currentColor;
            transition: transform 0.2s, opacity 0.2s;
        }

        .menu-toggle span {
            position: relative;
        }

        .menu-toggle span::before,
        .menu-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
        }

        .menu-toggle span::before { top: -6px; }
        .menu-toggle span::after { top: 6px; }

        nav.menu-open .menu-toggle span {
            background: transparent;
        }

        nav.menu-open .menu-toggle span::before {
            transform: translateY(6px) rotate(45deg);
        }

        nav.menu-open .menu-toggle span::after {
            transform: translateY(-6px) rotate(-45deg);
        }

        nav .links {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        nav .links a {
            text-decoration: none;
            margin-left: 32px;
            font-size: 15px;
            color: var(--text-soft);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.2s;
            background: none;
            border: none;
            cursor: pointer;
        }

        nav .links a:hover {
            color: var(--accent);
        }

        /* Р’С‹РґРµР»РµРЅРЅР°СЏ РєРЅРѕРїРєР° РїСЂР°Р№СЃР° РІ РЅР°РІРёРіР°С†РёРё */
        .nav-price-btn {
            margin-left: 32px;
            font-size: 13px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            padding: 10px 22px;
            background: rgba(47, 127, 122, 0.08);
            border: 1px solid rgba(47, 127, 122, 0.2);
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-price-btn:hover {
            background: var(--accent);
            color: white;
            box-shadow: 0 6px 16px rgba(47, 127, 122, 0.25);
            transform: translateY(-1px);
        }

        nav .nav-socials {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-left: 24px;
            border-left: 1px solid rgba(47,127,122,0.18);
        }

        .nav-social {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(47,127,122,0.22);
            background: transparent;
            color: var(--accent);
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
        }

        .nav-social:hover {
            background: rgba(47,127,122,0.1);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .nav-social svg {
            display: block;
        }

        main { padding-top: 72px; }

        /* РЈРІРµР»РёС‡РµРЅС‹ РѕС‚СЃС‚СѓРїС‹ Сѓ Р±Р»РѕРєРѕРІ РґР»СЏ Р±Р°Р»Р°РЅСЃР° РїСЂРѕСЃС‚СЂР°РЅСЃС‚РІР° */
        section { padding: 100px 80px; }

        /* HERO */
        #hero {
            position: relative;
            min-height: calc(100vh - 72px);
            display: grid;
            grid-template-columns: 1fr;
            padding: 0;
            overflow: hidden;
        }

        #hero .hero-photo {
            position: absolute;
            inset: 18px 24px 76px;
            z-index: 0;
            overflow: hidden;
            border-radius: 34px;
            border: 1px solid rgba(255,255,255,0.22);
            box-shadow:
                0 26px 70px rgba(35,29,24,0.16),
                0 8px 24px rgba(47,127,122,0.10);
        }

        #hero .hero-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 35%;
            display: block;
            filter: blur(0.15px) brightness(1.02) saturate(1.00) contrast(1.02);
            transform: scale(1.04);
            will-change: transform;
            transition: transform 0.1s linear;
        }

        /* Gradient overlay so text is readable */
        #hero::before {
            content: "";
            position: absolute;
            inset: 18px 24px 76px;
            z-index: 1;
            border-radius: 34px;
            background:
                radial-gradient(circle at 78% 22%, rgba(255,241,214,0.42) 0%, rgba(255,241,214,0.18) 28%, transparent 56%),
                linear-gradient(105deg, rgba(8,32,29,0.62) 0%, rgba(26,58,52,0.30) 48%, rgba(236,218,190,0.04) 100%),
                linear-gradient(to bottom, rgba(255,248,238,0.14) 0%, transparent 34%),
                linear-gradient(to top, rgba(8,22,20,0.12) 0%, transparent 30%);
            pointer-events: none;
        }

        #hero svg.hero-waves {
            position: absolute;
            inset: 18px 24px 76px;
            z-index: 2;
            pointer-events: none;
            border-radius: 34px;
            opacity: 0.18;
        }

        #hero .hero-content {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: calc(100vh - 72px);
            padding: 80px 80px 80px 80px;
            max-width: 680px;
        }

        #hero .tags {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3.2px;
            font-weight: 600;
            color: rgba(255,255,255,0.78);
            margin-bottom: 18px;
        }

        #hero h1 {
            font-family: "Fraunces", serif;
            font-size: clamp(42px, 6.2vw, 76px);
            font-weight: 620;
            font-variation-settings: "SOFT" 48, "WONK" 1;
            line-height: 1.02;
            margin: 0 0 30px 0;
            color: #fff;
            text-shadow: 0 2px 24px rgba(0,0,0,0.32);
        }

        @media (min-width:641px) {
            #hero .hero-content {
                max-width: 820px;
                padding-top: 58px;
                padding-bottom: 78px;
            }

            #hero h1 {
                font-size: clamp(46px, 4.7vw, 66px);
                line-height: .98;
                margin-bottom: 22px;
            }
        }

        #hero h1 .accent-word {
            color: #7dd9d4;
        }

        #hero .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 2px;
        }

        .primary-btn {
            padding: 18px 42px;
            border-radius: 999px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--accent);
            color: white;
            box-shadow: 0 14px 34px rgba(47,127,122,0.34);
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
            letter-spacing: 0.3px;
        }

        .primary-btn:hover {
            background: #25635f;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 18px 40px rgba(47,127,122,0.5);
        }

        .hero-cta-note {
            margin-top: 24px;
            font-size: 11px;
            line-height: 1.5;
            color: rgba(255,255,255,0.72);
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        .primary-btn:active {
            transform: translateY(0) scale(0.98);
        }

        .secondary-btn {
            padding: 17px 32px;
            border-radius: 999px;
            border: 1.5px solid rgba(255,255,255,0.4);
            font-size: 15px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            color: rgba(255,255,255,0.9);
            transition: all 0.2s;
        }

        .secondary-btn:hover {
            background: rgba(255,255,255,0.16);
            border-color: rgba(255,255,255,0.65);
        }

        /* Floating stats bar at bottom of hero */
        .hero-stats-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 4;
            display: flex;
            align-items: stretch;
            background: rgba(246,241,234,0.97);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(47,127,122,0.12);
            pointer-events: none;
        }

        .hero-stat-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 18px 12px;
            border-right: 1px solid rgba(47,127,122,0.1);
            text-align: center;
        }

        .hero-stat-item:last-child { border-right: none; }

        .hero-stat-num {
            font-family: "Fraunces", serif;
            font-size: 22px;
            font-weight: 650;
            font-variation-settings: "SOFT" 55, "WONK" 1;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 11px;
            color: var(--text-soft);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .floating-booking {
            position: fixed;
            right: 28px;
            bottom: 28px;
            z-index: 900;
            width: 108px;
            height: 108px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            border: 1px solid rgba(255,255,255,0.66);
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 14px 36px rgba(26,58,52,0.30), 0 0 0 8px rgba(47,127,122,0.12);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-decoration: none;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .floating-booking-arrow {
            font-family: "Fraunces", serif;
            font-size: 20px;
            font-weight: 400;
            line-height: 1;
        }

        .floating-booking:hover {
            background: #25635f;
            box-shadow: 0 18px 42px rgba(26,58,52,0.40), 0 0 0 10px rgba(47,127,122,0.15);
            transform: translateY(-3px);
        }

        .floating-booking:focus-visible,
        a:focus-visible,
        button:focus-visible {
            outline: 3px solid #d3a04d;
            outline-offset: 4px;
        }

        /* TITLES */
        #services h2,
        #gallery h2,
        #masters h2,
        #contacts h2 {
            font-family:"Fraunces", serif;
            font-size: clamp(34px, 4.2vw, 52px);
            font-weight:620;
            font-variation-settings: "SOFT" 48, "WONK" 1;
            margin:0;
            line-height: 1.08;
        }

        /* SERVICES */
        #services {
            position:relative;
            overflow: hidden;
        }

        #services .grid {
            display:grid;
            grid-template-columns:repeat(4,minmax(0,1fr));
            gap:24px;
            counter-reset: service;
        }

        .service-card {
            counter-increment: service;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,246,239,0.94));
            border-radius:18px;
            padding:30px 28px 28px;
            box-shadow:0 14px 34px rgba(35,29,24,0.055), 0 4px 18px rgba(47,127,122,0.055);
            border:1px solid rgba(47,127,122,0.13);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: visible;
            isolation: isolate;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 44px rgba(47,127,122,0.11);
            border-color: rgba(47,127,122,0.22);
        }

        .service-card h3 {
            font-family:"Fraunces", serif;
            font-size:22px;
            line-height:1.18;
            font-weight:620;
            font-variation-settings: "SOFT" 45, "WONK" 1;
            margin:0 0 12px 0;
            color:var(--text-main);
        }

        .service-card h3::before {
            content: counter(service, decimal-leading-zero);
            display:block;
            width:fit-content;
            margin:0 0 18px 0;
            padding-bottom:8px;
            border-bottom:1px solid rgba(47,127,122,0.34);
            font-family:"Fraunces", serif;
            font-size:17px;
            line-height:1;
            font-weight:560;
            font-variation-settings: "SOFT" 55, "WONK" 1;
            color:var(--accent);
            letter-spacing:0;
        }

        .service-card p {
            font-size:14px;
            color:var(--text-soft);
            margin:0 0 18px 0;
            line-height: 1.72;
            font-weight: 400;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 10px;
            margin: 0 0 20px 0;
        }

        .service-tags span {
            display: inline-flex;
            align-items: center;
            min-height: 22px;
            padding: 0 0 4px 0;
            border-bottom: 1px solid rgba(47,127,122,0.22);
            color: var(--accent);
            font-size: 11px;
            line-height: 1.1;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .service-card__bottom {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding-top: 2px;
        }

        .service-card .price-from {
            font-family:"Fraunces", serif;
            font-size:20px;
            color:var(--accent);
            font-weight:620;
            font-variation-settings: "SOFT" 55, "WONK" 1;
            white-space: nowrap;
        }

        .service-price-btn {
            appearance: none;
            border: 1px solid rgba(47,127,122,0.18);
            background: rgba(255,255,255,0.56);
            color: var(--accent);
            border-radius: 2px;
            padding: 10px 14px;
            font: inherit;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            white-space: nowrap;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }

        .service-price-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        /* GALLERY */
        #gallery {
            position:relative;
        }

        #gallery .grid {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) rgba(47,127,122,0.1);
            cursor: grab;
        }

        #gallery .grid:active {
            cursor: grabbing;
        }

        #gallery .grid::-webkit-scrollbar {
            height: 5px;
        }

        #gallery .grid::-webkit-scrollbar-track {
            background: rgba(47,127,122,0.08);
            border-radius: 99px;
        }

        #gallery .grid::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 99px;
        }

        .gallery-card {
            border-radius:18px;
            overflow:hidden;
            box-shadow:0 18px 42px rgba(35,29,24,0.08), 0 4px 16px rgba(47,127,122,0.08);
            background:linear-gradient(180deg, #fbf8f2 0%, #f2ece4 100%);
            border:1px solid rgba(47,127,122,0.13);
            flex: 0 0 400px;
            scroll-snap-align: start;
            position: relative;
        }

        /* Р”РёР·Р°Р№РЅРµСЂСЃРєРѕРµ СѓР»СѓС‡С€РµРЅРёРµ: Р·СѓРј С„РѕС‚Рѕ РїСЂРё РЅР°РІРµРґРµРЅРёРё */
        .gallery-card img {
            width:100%;
            height:360px;
            object-fit:cover;
            display:block;
            filter:saturate(0.92) contrast(1.04) brightness(0.99);
            transition: transform 0.45s ease, filter 0.45s ease;
            transform-origin:center center;
        }
        
        .gallery-card:hover img {
            transform: scale(1.035);
            filter:saturate(0.98) contrast(1.05) brightness(1);
        }

        .gallery-card .caption {
            position: relative;
            z-index: 2;
            background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,242,235,0.96));
            padding:12px 16px 14px 16px;
            font-size:13px;
            color:var(--text-main);
            border-top: 1px solid rgba(47,127,122,0.12);
            letter-spacing:0.01em;
        }

        /* MASTERS */
        #masters {
            position:relative;
            overflow: hidden;
        }

        #masters .card {
            position: relative;
            z-index: 2;
            display:grid;
            grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
            align-items:center;
            gap:42px;
            background:white;
            padding:36px;
            border-radius:20px;
            box-shadow:0 18px 44px rgba(35,29,24,0.07), 0 6px 20px rgba(47,127,122,0.07);
            max-width:1120px;
            margin:0 auto;
            border:1px solid rgba(47,127,122,0.10);
        }

        .masters-copy {
            flex: 1;
            min-width: 0;
        }

        .masters-copy h3 {
            font-family:"Fraunces", serif;
            margin:0 0 12px 0;
            font-size:30px;
            font-weight:620;
            font-variation-settings: "SOFT" 45, "WONK" 1;
            line-height:1.18;
        }

        .masters-copy p {
            margin:0 0 14px 0;
            color:var(--text-soft);
            font-size:15px;
            line-height:1.65;
        }

        .masters-proof {
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:10px;
            margin:18px 0 22px;
        }

        .masters-proof span {
            min-height:44px;
            display:flex;
            align-items:center;
            padding:9px 12px;
            border-radius:12px;
            background:rgba(47,127,122,0.055);
            border:1px solid rgba(47,127,122,0.10);
            color:var(--text-main);
            font-size:12px;
            line-height:1.35;
        }

        .masters-actions {
            display:flex;
            flex-wrap:wrap;
            align-items:center;
            gap:12px;
        }

        .masters-actions .secondary-btn {
            min-height:46px;
            padding:13px 22px;
            border-radius:999px;
            text-decoration:none;
            background:rgba(47,127,122,0.07);
            color:var(--accent);
            border:1px solid rgba(47,127,122,0.18);
            font-weight:600;
        }

        .masters-frame {
            position: relative;
            width: 100%;
            max-width: 380px;
            justify-self: center;
            padding: 4px 12px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,241,234,0.72));
            border: 2px solid rgba(180,146,91,0.46);
            box-shadow:
                0 18px 42px rgba(47,127,122,0.12),
                inset 0 0 0 1px rgba(255,255,255,0.72);
        }

        .masters-frame::before,
        .masters-frame::after {
            content: "";
            position: absolute;
            width: 42px;
            height: 42px;
            pointer-events: none;
        }

        .masters-frame::before {
            left: -8px;
            top: -8px;
            border-left: 2px solid rgba(47,127,122,0.46);
            border-top: 2px solid rgba(47,127,122,0.46);
        }

        .masters-frame::after {
            right: -8px;
            bottom: -8px;
            border-right: 2px solid rgba(47,127,122,0.46);
            border-bottom: 2px solid rgba(47,127,122,0.46);
        }

        .masters-frame img {
            display: block;
            width:100%;
            height:auto;
            max-height:420px;
            object-fit:contain;
            background: #fff;
            border: 1px solid rgba(47,127,122,0.12);
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
        }

        /* CONTACTS */
        #contacts {
            position:relative;
            display:grid;
            grid-template-columns:1.2fr 1fr;
            gap:40px;
            align-items:start;
            padding-bottom:120px;
        }

        #contacts .info p {
            font-size:15px;
            color:var(--text-soft);
            margin:4px 0;
        }

        #contacts .info .label {
            font-size:13px;
            text-transform:uppercase;
            letter-spacing:2px;
            margin-top:18px;
            color:var(--accent);
        }

        #contacts .map {
            position: relative;
            align-self:start;
            border-radius:22px;
            overflow:visible;
            padding: 14px;
            background:
                linear-gradient(135deg, rgba(47,127,122,0.26) 18%, transparent 18%) 0 0 / 20px 20px,
                linear-gradient(225deg, rgba(47,127,122,0.22) 18%, transparent 18%) 0 0 / 20px 20px,
                linear-gradient(45deg, rgba(47,127,122,0.13) 18%, transparent 18%) 10px 10px / 20px 20px,
                linear-gradient(315deg, rgba(47,127,122,0.13) 18%, rgba(246,241,234,0.94) 18%) 10px 10px / 20px 20px;
            box-shadow:
                0 24px 54px rgba(35,29,24,0.08),
                0 14px 34px rgba(47,127,122,0.13);
            border:1px solid rgba(47,127,122,0.28);
        }

        #contacts .map::before,
        #contacts .map::after {
            content:"";
            position:absolute;
            pointer-events:none;
            border:1px solid rgba(47,127,122,0.34);
            border-radius:26px;
        }

        #contacts .map::before {
            inset:-9px;
            border-color:rgba(47,127,122,0.18);
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.42);
        }

        #contacts .map::after {
            left:50%;
            bottom:-13px;
            width:min(58%, 340px);
            height:18px;
            border:0;
            border-bottom:1px solid rgba(47,127,122,0.30);
            border-radius:0;
            transform:translateX(-50%);
            background:linear-gradient(90deg, transparent, rgba(47,127,122,0.34), transparent);
            opacity:0.75;
        }

        #contacts .map iframe {
            position: relative;
            z-index: 1;
            width:100%;
            height:320px;
            border:0;
            border-radius:14px;
            box-shadow:
                0 0 0 1px rgba(47,127,122,0.16),
                inset 0 0 0 1px rgba(255,255,255,0.30);
        }

        #contacts .secondary-btn {
            border-color: rgba(47,127,122,0.35);
            background: rgba(47,127,122,0.08);
            color: var(--accent);
        }

        #contacts .secondary-btn:hover {
            background: rgba(47,127,122,0.14);
            border-color: rgba(47,127,122,0.55);
        }

        footer {
            padding:32px 80px 40px 80px;
            font-size:12px;
            color:var(--text-soft);
            border-top:1px solid rgba(47,127,122,0.12);
        }

        /* MODAL */
        .modal {
            position:fixed;
            inset:0;
            background:rgba(0,0,0,0.55);
            backdrop-filter:blur(6px);
            display:none;
            justify-content:center;
            align-items:center;
            z-index:2000;
            touch-action: auto;
        }

        .modal.is-open {
            display:flex;
        }

        .modal-content {
            position:relative;
            width:80%;
            max-width:1000px;
            max-height:90vh;
            background:#f6f1ea;
            border-radius:24px;
            padding:40px 60px;
            box-shadow:0 20px 60px rgba(0,0,0,0.25);
            display:flex;
            flex-direction:column;
            touch-action: auto;
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 5;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(47,127,122,0.18);
            background: rgba(255,255,255,0.72);
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(35,29,24,0.08);
            transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }

        .modal-close:hover {
            background: #fff;
            border-color: rgba(47,127,122,0.42);
            transform: translateY(-1px);
        }

        .modal-close svg {
            display: block;
        }

        .decor {
            position:absolute;
            opacity:0.25;
            pointer-events:none;
        }

        .decor-left { left:-40px; top:-20px; height:100%; }
        .decor-right { right:-40px; top:-20px; height:100%; }

        .modal-logo {
            position: relative;
            z-index: 1;
            font-family:"Fraunces", serif;
            font-size:40px;
            letter-spacing:7px;
            text-align:center;
            margin-bottom:4px;
            font-weight:650;
            font-variation-settings: "SOFT" 45, "WONK" 1;
        }

        .modal-sub {
            position: relative;
            z-index: 1;
            text-align:center;
            font-size:13px;
            letter-spacing:3px;
            color:#777;
            margin-bottom:24px;
            text-transform:uppercase;
        }

        .modal-scroll {
            position: relative;
            z-index: 1;
            flex:1;
            min-height:0;
            max-height:60vh;
            overflow-y:scroll;
            padding-right:8px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) rgba(47,127,122,0.1);
            cursor: grab;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-y;
        }

        .modal-scroll::-webkit-scrollbar { width: 6px; }
        .modal-scroll::-webkit-scrollbar-track { background: rgba(47,127,122,0.08); border-radius: 99px; }
        .modal-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

        /* ABOUT CURLS */
        #about {
            position: relative;
            padding: 100px 80px;
            overflow: hidden;
        }

        .about-curl {
            position: absolute;
            pointer-events: none;
        }

        .about-curl--tl { top: -20px; left: -10px; width: 220px; height: 220px; }
        .about-curl--br { bottom: -20px; right: -10px; width: 180px; height: 180px; }
        .about-curl--mid { top: 50%; right: 80px; width: 140px; transform: translateY(-50%); opacity: 0.6; }

        /* ABOUT AWARDS */
        #about .about-awards {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        #about .award {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-soft);
        }

        /* SECTION HEADER */
        .section-header {
            position: relative;
            max-width: 780px;
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .section-tag::before {
            content: "";
            width: 34px;
            height: 1px;
            background: linear-gradient(to right, rgba(47,127,122,0.14), rgba(47,127,122,0.7));
        }

        /* SERVICE ICON */
        .service-icon {
            display: none;
        }

        /* ============================================
           ENHANCED GLOBAL GRAPHIC LINES
        ============================================ */
        /* More prominent body diagonal lines */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image:
                repeating-linear-gradient(
                    112deg,
                    transparent 0px,
                    transparent 180px,
                    rgba(47,127,122,0.035) 180px,
                    rgba(47,127,122,0.035) 181px
                ),
                repeating-linear-gradient(
                    68deg,
                    transparent 0px,
                    transparent 280px,
                    rgba(47,127,122,0.018) 280px,
                    rgba(47,127,122,0.018) 281px
                );
        }

        /* Section separators вЂ” stronger horizontal lines between sections */
        #about::before,
        #services::before,
        #gallery::before,
        .gallery-salon-section::before,
        #masters::before,
        #contacts::before,
        #reviews::before {
            content: "";
            position: absolute;
            top: 0;
            left: 80px;
            right: 80px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(47,127,122,0.3), rgba(47,127,122,0.45), rgba(47,127,122,0.3), transparent);
            opacity: 1;
        }

        /* Additional bottom border lines on some sections */
        #about::after,
        .gallery-works::after,
        .gallery-salon-section::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 80px;
            right: 80px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(47,127,122,0.15), transparent);
        }

        /* ============================================
           GALLERY WORKS (Portfolio) 
        ============================================ */
        .gallery-works {
            position: relative;
            overflow: hidden;
        }

        /* ============================================
           NEAT GALLERY HEADERS (clean, ordered)
        ============================================ */
        .gallery-header-neat {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 36px;
            position: relative;
            z-index: 1;
        }

        .gallery-header-neat--right {
            flex-direction: row-reverse;
        }

        .gallery-header-neat__left {
            flex-shrink: 0;
        }

        .gallery-header-neat__title {
            font-family: "Fraunces", serif;
            font-size: 34px;
            font-weight: 620;
            font-variation-settings: "SOFT" 48, "WONK" 1;
            margin: 6px 0 0 0;
            line-height: 1.15;
        }

        .gallery-header-neat__desc {
            font-size: 15px;
            color: var(--text-soft);
            margin: 0;
            max-width: 400px;
            line-height: 1.7;
            align-self: flex-end;
            padding-bottom: 4px;
        }

        /* ============================================
           SERVICE CARD CORNER DECORATIONS
        ============================================ */

        /* Botanical line-art accents for service cards */
        .service-card::before {
            content: "";
            position: absolute;
            top: -34px;
            right: -26px;
            width: 146px;
            height: 136px;
            background: url("data:image/svg+xml,%3Csvg width='146' height='136' viewBox='0 0 146 136' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M132 9C99 18 80 40 82 65C84 95 112 106 136 96' stroke='%232f7f7a' stroke-width='1.25' stroke-linecap='round' opacity='.34'/%3E%3Cpath d='M119 18C100 35 95 57 104 76C113 95 130 99 142 91' stroke='%232f7f7a' stroke-width='.8' stroke-linecap='round' opacity='.22'/%3E%3Cpath d='M86 44C70 37 57 41 50 54C65 59 78 56 86 44Z' stroke='%232f7f7a' stroke-width='1' opacity='.32'/%3E%3Cpath d='M100 72C86 75 78 84 77 98C91 97 101 88 100 72Z' stroke='%232f7f7a' stroke-width='1' opacity='.28'/%3E%3Cpath d='M113 33C106 22 95 18 83 22C89 34 100 39 113 33Z' stroke='%232f7f7a' stroke-width='1' opacity='.28'/%3E%3Ccircle cx='126' cy='59' r='2.2' stroke='%232f7f7a' stroke-width='.9' opacity='.3'/%3E%3Ccircle cx='116' cy='86' r='1.6' fill='%232f7f7a' opacity='.24'/%3E%3C/svg%3E") center / contain no-repeat;
            pointer-events: none;
            z-index: 0;
            opacity: 0.76;
        }

        .service-card::after {
            content: "";
            position: absolute;
            top: 186px;
            left: -30px;
            width: 156px;
            height: 142px;
            background: url("data:image/svg+xml,%3Csvg width='156' height='142' viewBox='0 0 156 142' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 126C46 111 64 86 58 61C51 31 21 23 1 37' stroke='%232f7f7a' stroke-width='1.25' stroke-linecap='round' opacity='.30'/%3E%3Cpath d='M30 116C47 98 50 76 39 58C28 40 11 38 1 47' stroke='%232f7f7a' stroke-width='.8' stroke-linecap='round' opacity='.20'/%3E%3Cpath d='M58 85C74 90 87 84 92 70C77 67 65 71 58 85Z' stroke='%232f7f7a' stroke-width='1' opacity='.30'/%3E%3Cpath d='M43 55C56 50 63 39 61 25C48 29 39 41 43 55Z' stroke='%232f7f7a' stroke-width='1' opacity='.27'/%3E%3Cpath d='M31 101C40 111 52 113 63 106C55 96 43 93 31 101Z' stroke='%232f7f7a' stroke-width='1' opacity='.25'/%3E%3Ccircle cx='24' cy='72' r='2.1' stroke='%232f7f7a' stroke-width='.9' opacity='.28'/%3E%3Ccircle cx='39' cy='34' r='1.7' fill='%232f7f7a' opacity='.22'/%3E%3C/svg%3E") center / contain no-repeat;
            pointer-events: none;
            z-index: 0;
            opacity: 0.64;
        }

        .service-card:nth-child(2)::before,
        .service-card:nth-child(4)::before,
        .service-card:nth-child(1)::after,
        .service-card:nth-child(3)::after {
            display: none;
        }

        .service-card:nth-child(2)::after {
            left: auto;
            right: -36px;
            top: 178px;
            transform: scaleX(-1) scale(0.82);
            opacity: 0.76;
        }

        .service-card:nth-child(3)::before {
            top: -28px;
            right: -36px;
            transform: scale(0.78) rotate(-8deg);
            opacity: 0.76;
        }

        .service-card:nth-child(4)::after {
            left: auto;
            right: -32px;
            top: auto;
            bottom: 32px;
            transform: scaleX(-1) scale(0.78);
            opacity: 0.76;
        }

        .service-card-dots {
            display: none;
        }

        /* GALLERY HINT */
        .gallery-hint {
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-soft);
            letter-spacing: 1px;
            opacity: 0.6;
        }

        /* Works gallery вЂ” horizontal scroll */
        .gallery-grid-works {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) rgba(47,127,122,0.1);
            cursor: grab;
            position: relative;
            z-index: 1;
        }

        .gallery-grid-works:active { cursor: grabbing; }

        .gallery-grid-works::-webkit-scrollbar { height: 5px; }
        .gallery-grid-works::-webkit-scrollbar-track { background: rgba(47,127,122,0.08); border-radius: 99px; }
        .gallery-grid-works::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

        .gallery-grid-works .gallery-card {
            flex: 0 0 320px;
            scroll-snap-align: start;
        }

        .gallery-grid-works .gallery-card--tall {
            flex: 0 0 320px;
            align-self: stretch;
        }

        .gallery-grid-works .gallery-card img {
            height: 340px;
        }

        .gallery-grid-works .gallery-card:nth-child(1) img { object-position: center 48%; }
        .gallery-grid-works .gallery-card:nth-child(2) img { object-position: center 42%; }
        .gallery-grid-works .gallery-card:nth-child(3) img { object-position: center 52%; }
        .gallery-grid-works .gallery-card:nth-child(4) img { object-position: center 44%; }
        .gallery-grid-works .gallery-card:nth-child(5) img { object-position: center 50%; }
        .gallery-grid-works .gallery-card:nth-child(6) img { object-position: center 38%; }

        /* ============================================
           GALLERY SALON (Interior)
        ============================================ */
        .gallery-salon-section {
            position: relative;
            overflow: hidden;
            background: rgba(47,127,122,0.018);
        }

        /* Salon gallery вЂ” horizontal scroll */
        .gallery-grid-salon {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) rgba(47,127,122,0.1);
            cursor: grab;
            position: relative;
            z-index: 1;
        }

        .gallery-grid-salon:active { cursor: grabbing; }

        .gallery-grid-salon::-webkit-scrollbar { height: 5px; }
        .gallery-grid-salon::-webkit-scrollbar-track { background: rgba(47,127,122,0.08); border-radius: 99px; }
        .gallery-grid-salon::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

        .gallery-grid-salon .gallery-card {
            flex: 0 0 500px;
            scroll-snap-align: start;
        }

        .gallery-grid-salon .gallery-card--wide {
            flex: 0 0 620px;
        }

        .gallery-grid-salon .gallery-card img {
            height: 380px;
        }

        .gallery-grid-salon .gallery-card:nth-child(1) img { object-position: center 52%; }
        .gallery-grid-salon .gallery-card:nth-child(2) img { object-position: center 50%; }
        .gallery-grid-salon .gallery-card:nth-child(3) img { object-position: center 48%; }
        .gallery-grid-salon .gallery-card:nth-child(4) img { object-position: center 50%; }
        .gallery-grid-salon .gallery-card:nth-child(5) img { object-position: center 50%; }

        /* Nav link for salon gallery */
        nav .links a[href="#gallery-salon"] {
            /* same as others */
        }

        .gallery-hint {
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-soft);
            letter-spacing: 1px;
            opacity: 0.6;
        }

        #about .about-inner {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 56px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        #about .about-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 650;
            color: var(--accent);
            margin-bottom: 20px;
        }

        #about h2 {
            font-family: "Fraunces", serif;
            font-size: 52px;
            font-weight: 520;
            font-style: italic;
            font-variation-settings: "SOFT" 52, "WONK" 1;
            line-height: 1.15;
            margin: 0 0 28px 0;
            color: var(--text-main);
        }

        #about h2 em { font-style: normal; color: var(--accent); }

        #about p {
            font-size: 16px;
            line-height: 1.82;
            color: var(--text-soft);
            margin: 0 0 16px 0;
        }

        #about .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 28px;
        }

        #about .stat {
            background: white;
            border-radius: 16px;
            padding: 20px 20px 18px;
            border: 1px solid rgba(47,127,122,0.1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        }

        #about .stat-num {
            font-family: "Fraunces", serif;
            font-size: 32px;
            font-weight: 620;
            font-variation-settings: "SOFT" 55, "WONK" 1;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 6px;
        }

        #about .stat-desc {
            font-size: 13px;
            color: var(--text-soft);
            line-height: 1.4;
        }

        #about .about-quote {
            background: white;
            border-radius: 20px;
            padding: 28px 32px 28px 32px;
            border: 1px solid rgba(47,127,122,0.1);
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            position: relative;
        }

        #about .about-quote::before {
            content: "\201C";
            font-family: "Fraunces", serif;
            font-size: 120px;
            color: rgba(47,127,122,0.12);
            position: absolute;
            top: -20px;
            left: 24px;
            line-height: 1;
        }

        #about .about-quote p {
            font-family: "Fraunces", serif;
            font-size: 22px;
            font-style: italic;
            font-weight: 450;
            font-variation-settings: "SOFT" 55, "WONK" 1;
            line-height: 1.6;
            color: var(--text-main);
            margin: 0 0 20px 0;
        }

        #about .about-quote .quote-author {
            font-family: "Manrope", sans-serif;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            font-style: normal;
        }

        @media (max-width:1200px) {
            .reviews-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width:960px) {
            #about .about-inner { grid-template-columns: 1fr; gap: 48px; }
            #about { padding: 80px 24px; }
        }

        .modal-scroll h2 {
            font-family:"Fraunces", serif;
            font-size:22px;
            font-weight:600;
            margin:24px 0 12px 0;
        }

        .modal-scroll .price-item {
            display:flex;
            justify-content:space-between;
            gap:16px;
            padding:6px 0;
            border-bottom:1px solid rgba(0,0,0,0.06);
            font-size:15px;
        }

        .modal-scroll .price-item span:first-child { max-width:70%; }

        .close-price {
            position: relative;
            z-index: 1;
            margin-top:24px;
            width:100%;
            padding:14px;
            border-radius:12px;
            border:none;
            background:var(--accent);
            color:white;
            font-size:16px;
            cursor:pointer;
        }

        .close-price:hover { background:#25635f; }

        /* REVIEWS */
        #reviews { position: relative; }

        .reviews-head {
            display:grid;
            grid-template-columns:minmax(0, 1fr) auto;
            align-items:end;
            gap:32px;
            margin-bottom:34px;
            position:relative;
            z-index:1;
        }

        .reviews-head .section-header {
            margin-bottom:0;
        }

        .reviews-score {
            min-width:260px;
            padding:18px 22px;
            border-radius:16px;
            background:rgba(255,255,255,0.82);
            border:1px solid rgba(47,127,122,0.12);
            box-shadow:0 12px 32px rgba(47,127,122,0.08);
        }

        .reviews-score__top {
            display:flex;
            align-items:baseline;
            gap:10px;
            color:var(--text-main);
        }

        .reviews-score__num {
            font-family:"Fraunces", serif;
            font-size:38px;
            line-height:1;
            color:var(--accent);
            font-weight:620;
            font-variation-settings: "SOFT" 55, "WONK" 1;
        }

        .reviews-score__stars {
            color:#d8a21a;
            letter-spacing:2px;
            font-size:14px;
        }

        .reviews-score__text {
            margin-top:6px;
            font-size:12px;
            line-height:1.45;
            color:var(--text-soft);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 24px;
            align-items:stretch;
        }

        .review-card {
            background: white;
            border-radius: 18px;
            padding: 28px 32px 24px 32px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
            border: 1px solid rgba(47,127,122,0.08);
            position: relative;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
            overflow: hidden;
        }

        .review-card::after {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, rgba(47,127,122,0.4) 30%, rgba(47,127,122,0.55) 60%, transparent);
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(47,127,122,0.11);
        }

        .review-text {
            position: relative;
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-soft);
            margin: 0;
            flex: 1; 
            padding-top: 22px;
        }

        .review-text::before {
            content: "\201C";
            font-family: "Fraunces", serif;
            font-size: 76px;
            color: rgba(47,127,122,0.10);
            position: absolute;
            top: -22px;
            left: -4px;
            line-height: 1;
            pointer-events: none;
        }

        .review-card__tag {
            width: fit-content;
            margin-bottom:14px;
            padding:6px 10px;
            border-radius:999px;
            background:rgba(47,127,122,0.07);
            border:1px solid rgba(47,127,122,0.12);
            color:var(--accent);
            font-size:11px;
            line-height:1;
            letter-spacing:1.2px;
            text-transform:uppercase;
            font-weight:600;
        }

        .review-stars {
            color: #e8a800;
            font-size: 15px;
            letter-spacing: 3px;
            margin: 24px auto 24px auto; 
            text-align: center;
            align-self: center;
        }

        .review-footer {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 16px;
            border-top: 1px solid rgba(47,127,122,0.07);
        }

        .review-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(47,127,122,0.10);
            border: 1px solid rgba(47,127,122,0.20);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Fraunces", serif;
            font-size: 14px;
            font-weight: 620;
            font-variation-settings: "SOFT" 55, "WONK" 1;
            color: var(--accent);
            flex-shrink: 0;
        }

        .review-author {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            font-weight: 500;
        }

        .review-source {
            font-size: 11px;
            color: #bbb;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        @keyframes fadeIn {
            from { opacity:0; transform:translateY(20px); }
            to   { opacity:1; transform:translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 10px 24px rgba(47,127,122,0.35); }
            50%       { box-shadow: 0 10px 36px rgba(47,127,122,0.6); }
        }

        @keyframes slideDown {
            from { opacity:0; transform:translateY(-12px); }
            to   { opacity:1; transform:translateY(0); }
        }

        /* === Scroll entrance animations === */
        .anim {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
        }
        .anim.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .anim-delay-1 { transition-delay: 0.08s; }
        .anim-delay-2 { transition-delay: 0.16s; }
        .anim-delay-3 { transition-delay: 0.24s; }
        .anim-delay-4 { transition-delay: 0.32s; }

        /* Nav shrink on scroll */
        nav.scrolled {
            height: 56px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        nav {
            transition: height 0.3s ease, box-shadow 0.3s ease;
        }

        @media (max-width:960px) {
            .anim {
                opacity: 1;
                transform: none;
                transition: none;
            }
            nav {
                grid-template-columns: 1fr auto;
                padding:0 18px;
            }
            nav .logo {
                width: 142px;
                height: 40px;
                padding: 7px 14px 6px;
            }
            .logo-word {
                font-size: 19px;
                letter-spacing: 0.15em;
            }
            .logo-sub {
                margin-top: 4px;
                font-size: 7px;
                letter-spacing: 0.24em;
            }
            .menu-toggle {
                display: flex;
            }
            nav .links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 10px 18px 18px;
                background: rgba(246,241,234,0.98);
                border-bottom: 1px solid rgba(47,127,122,0.14);
                box-shadow: 0 18px 32px rgba(0,0,0,0.09);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: transform 0.22s ease, opacity 0.22s ease;
            }
            nav.scrolled .links {
                top: 56px;
            }
            nav.menu-open .links {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            nav .links a,
            nav .links button {
                min-height: 44px;
                margin-left: 0;
                border-bottom: 1px solid rgba(47,127,122,0.08);
                text-align: left;
            }
            nav .links a {
                display: flex;
                align-items: center;
            }
            nav .links .nav-price-btn {
                justify-content: center;
                text-align: center;
                margin-top: 10px;
                border-bottom: 1px solid rgba(47,127,122,0.2);
            }
            nav .nav-socials {
                display: none;
            }
            section { padding:80px 24px; }
            #hero .hero-photo,
            #hero::before,
            #hero svg.hero-waves {
                inset: 30px 12px 72px;
                border-radius: 24px;
            }
            #hero .hero-photo {
                box-shadow:
                    0 18px 44px rgba(35,29,24,0.14),
                    0 6px 18px rgba(47,127,122,0.10);
            }
            #hero .hero-photo img {
                object-position: center 68%;
                transform: scale(1.14);
            }
            #hero .hero-content { padding: 60px 24px 100px 24px; min-height: calc(100vh - 72px); }
            .hero-stats-bar { flex-wrap: wrap; }
            .hero-stats-bar > div {
                gap: 12px !important;
                padding: 10px 18px !important;
            }
            .hero-stats-bar span {
                font-size: 15px !important;
                line-height: 1.35 !important;
                text-align: center;
            }
            .hero-stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(47,127,122,0.1); }
            #services .grid { grid-template-columns:1fr 1fr; }
            .service-card {
                padding:26px 22px 24px;
            }
            .service-card h3 {
                font-size:21px;
            }
            .service-card h3::before {
                margin-bottom:14px;
            }
            .service-card__bottom {
                align-items: stretch;
            }
            .service-price-btn {
                min-height: 42px;
                padding-left: 16px;
                padding-right: 16px;
            }
            .service-card::before {
                top: -26px;
                right: -22px;
                width: 118px;
                height: 110px;
                opacity: 0.62;
            }
            .service-card::after {
                top: 78px;
                bottom: auto;
                left: -24px;
                width: 124px;
                height: 112px;
                opacity: 0.52;
            }
            .service-card:nth-child(2)::after {
                top: 74px;
                right: -24px;
                bottom: auto;
                transform: scaleX(-1) scale(0.72);
            }
            .service-card:nth-child(3)::before {
                top: -24px;
                right: -24px;
                transform: scale(0.68) rotate(-8deg);
            }
            .service-card:nth-child(4)::after {
                top: 78px;
                right: -22px;
                bottom: auto;
                transform: scaleX(-1) scale(0.68);
            }
            #contacts { grid-template-columns:1fr; }
            #masters .card {
                grid-template-columns:1fr;
                gap:28px;
                padding:28px;
            }
            .masters-frame {
                width: 100%;
                max-width: 420px;
                padding-top: 4px;
                padding-bottom: 4px;
            }
            .masters-frame img {
                height: auto;
            }
            .reviews-head {
                grid-template-columns:1fr;
                align-items:start;
                gap:18px;
            }
            .reviews-score {
                min-width:0;
                width:100%;
            }
            .reviews-grid { grid-template-columns: 1fr; }
            .gallery-header-neat,
            .gallery-header-neat--right {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .gallery-header-neat__left,
            .gallery-header-neat--right .gallery-header-neat__left {
                width: 100%;
                text-align: left !important;
            }
            .gallery-header-neat__title {
                font-size: clamp(28px, 8vw, 34px);
                overflow-wrap: anywhere;
            }
            .gallery-header-neat__desc {
                max-width: 100%;
                align-self: stretch;
                padding-bottom: 0;
                text-align: left !important;
                overflow-wrap: break-word;
            }
            nav .links a, nav .links button { margin-left: 0; font-size: 12px; }
            .nav-price-btn { padding: 8px 14px; margin-left: 0; }
            .modal {
                align-items: stretch;
                padding: 12px;
                overflow: hidden;
            }
            .modal-content {
                width: 100%;
                height: calc(100dvh - 24px);
                max-height: calc(100dvh - 24px);
                border-radius: 18px;
                padding: 44px 18px 18px;
            }
            .modal-close {
                top: 10px;
                right: 10px;
                width: 42px;
                height: 42px;
            }
            .modal-logo {
                font-size: 30px;
                letter-spacing: 5px;
            }
            .modal-scroll {
                max-height: none;
                flex: 1 1 auto;
                min-height: 0;
                overflow-y: auto;
            }
            .modal-scroll .price-item {
                font-size: 14px;
                gap: 10px;
            }
            .price-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
            }
            .price-tab {
                flex: 0 0 auto;
                min-height: 44px;
            }
        }

        @media (max-width:640px) {
            #hero {
                min-height: calc(100svh - 72px);
                background: var(--bg);
            }
            #hero .hero-photo,
            #hero::before,
            #hero svg.hero-waves {
                inset: 30px 12px 72px;
                border-radius: 24px;
            }
            #hero .hero-photo {
                border: 1px solid rgba(255,255,255,0.22);
                background: transparent;
                box-shadow:
                    0 18px 44px rgba(35,29,24,0.14),
                    0 6px 18px rgba(47,127,122,0.10);
            }
            #hero .hero-photo img {
                object-position: 38% 68%;
                filter: blur(0.8px) brightness(1.00) saturate(1.00) contrast(1.02);
                transform: scale(1.14);
                mix-blend-mode: normal;
            }
            #hero::before {
                background:
                    radial-gradient(circle at 74% 18%, rgba(255,241,214,0.36) 0%, rgba(255,241,214,0.14) 28%, transparent 56%),
                    linear-gradient(105deg, rgba(8,32,29,0.66) 0%, rgba(26,58,52,0.34) 50%, rgba(236,218,190,0.05) 100%),
                    linear-gradient(to top, rgba(8,22,20,0.14) 0%, transparent 32%);
            }
            #hero svg.hero-waves {
                opacity: 0.18;
                mix-blend-mode: normal;
            }
            #hero .tags {
                color: rgba(255,255,255,0.78);
            }
            #hero h1 {
                color: #fff;
                text-shadow: 0 2px 24px rgba(0,0,0,0.34);
            }
            #hero h1 .accent-word {
                color: #7dd9d4;
            }
            .hero-cta-note {
                color: rgba(255,255,255,0.72);
            }
            #hero .secondary-btn {
                color: rgba(255,255,255,0.9);
                border-color: rgba(255,255,255,0.42);
                background: rgba(255,255,255,0.12);
            }
            #services .grid { grid-template-columns:1fr; }
            .masters-proof { grid-template-columns:1fr; }
            .masters-actions { align-items: stretch; }
            .masters-actions .primary-btn,
            .masters-actions .secondary-btn {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            #hero .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            #hero .hero-cta-group a {
                text-align: center;
            }
            .modal-scroll .price-item {
                align-items: flex-start;
            }
            .modal-scroll .price-item span:first-child {
                max-width: 66%;
            }
            .hero-stats-bar > div {
                gap: 8px !important;
                padding: 8px 14px !important;
            }
            .hero-stats-bar span {
                font-size: 13px !important;
            }
            .hero-stats-bar span:first-child,
            .hero-stats-bar span:last-child {
                display: none;
            }
        }
        /* PRICE TABS */
        .price-tabs {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 6px;
            margin-bottom: 18px;
            flex-wrap: wrap;
            touch-action: pan-x;
        }

        .price-tab {
            min-height: 44px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid rgba(47,127,122,0.2);
            background: transparent;
            color: var(--text-soft);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.18s;
            font-family: "Manrope", sans-serif;
            letter-spacing: 0.2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            white-space: nowrap;
        }

        .price-tab:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(47,127,122,0.05);
        }

        .price-tab.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        .price-cat h2:first-child { margin-top: 0; }

        @media (max-width:960px) {
            .price-tabs {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
                overflow: visible;
                padding-bottom: 0;
            }

            .price-tab {
                width: 100%;
                min-height: 44px;
                padding: 10px 12px;
                font-size: 12px;
            }
        }

        @media (max-width:640px) {
            #hero h1 .accent-word {
                display: block;
            }

            .floating-booking {
                right: 18px;
                bottom: 18px;
                width: 82px;
                height: 82px;
                font-size: 10px;
                box-shadow: 0 12px 30px rgba(26,58,52,0.28), 0 0 0 6px rgba(47,127,122,0.12);
            }

            .floating-booking-arrow {
                font-size: 17px;
            }
        }

        /* -----------------------------------------------------------------
           VALUBE / EDITORIAL SALON SYSTEM
           A more deliberate composition for the live site: quiet editorial
           typography, the actual salon space, and clear ways to book.
        ----------------------------------------------------------------- */
        :root {
            --bg: #ebe9e2;
            --accent: #778b86;
            --text-main: #26312f;
            --text-soft: #6f7772;
            --line: rgba(31,93,88,.2);
            --ink: #26312f;
            --clay: #9c8877;
            --paper: #f7f6f1;
        }

        body { background: var(--bg); }

        nav {
            height: 82px;
            padding: 0 44px;
            background: rgba(245,239,231,.92);
            border-bottom-color: rgba(24,38,36,.12);
            box-shadow: none;
        }

        nav .logo {
            width: 142px;
            height: auto;
            padding: 0;
            align-items: flex-start;
            background: transparent;
            border: 0;
            box-shadow: none;
        }

        nav .logo::before,
        nav .logo::after { display: none; }
        .logo-word { color: var(--ink); font-size: 25px; letter-spacing: .08em; }
        .logo-sub { color: var(--clay); font-size: 7px; letter-spacing: .28em; }

        nav .links { gap: 18px; }
        nav .links a {
            margin-left: 0;
            color: var(--ink);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .13em;
        }
        nav .links a:hover { color: var(--clay); }
        .nav-price-btn {
            margin-left: 0;
            padding: 9px 13px;
            border-radius: 0;
            border-color: var(--ink);
            color: var(--ink);
            background: transparent;
            font-size: 10px;
        }
        .nav-price-btn:hover { background: var(--ink); color: var(--paper); box-shadow: none; transform: none; }
        nav .nav-socials { gap: 6px; padding-left: 14px; border-left-color: rgba(24,38,36,.14); }
        .nav-social { width: 30px; height: 30px; color: var(--ink); border-color: rgba(24,38,36,.22); }
        .nav-social:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); transform: none; }
        .nav-booking {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 36px;
            margin-left: 7px;
            padding: 0 13px;
            background: var(--ink);
            color: var(--paper);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .1em;
            text-decoration: none;
            text-transform: uppercase;
            transition: background .2s ease;
        }
        .nav-booking:hover { background: var(--clay); }
        main { padding-top: 82px; }

        #hero {
            min-height: calc(100vh - 82px);
            display: grid;
            grid-template-columns: minmax(0, 47%) minmax(0, 53%);
            align-items: stretch;
            background: var(--paper);
        }
        #hero .hero-photo {
            position: relative;
            inset: auto;
            grid-column: 2;
            grid-row: 1;
            height: calc(100vh - 182px);
            min-height: calc(100vh - 182px);
            margin: 18px 18px 100px 0;
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }
        #hero .hero-photo img {
            height: 100%;
            transform: none;
            object-position: center;
            filter: saturate(.88) contrast(1.02);
        }
        #hero::before,
        #hero svg.hero-waves { display: none; }
        #hero .hero-content {
            grid-column: 1;
            grid-row: 1;
            z-index: 2;
            min-height: calc(100vh - 182px);
            max-width: none;
            padding: 52px 7vw 112px;
            justify-content: center;
            background: var(--paper);
        }
        #hero .tags {
            color: var(--clay);
            font-size: 10px;
            letter-spacing: .18em;
            margin-bottom: 22px;
        }
        #hero h1 {
            color: var(--ink);
            font-size: clamp(46px, 4vw, 62px);
            font-weight: 570;
            line-height: .92;
            letter-spacing: 0;
            margin-bottom: 28px;
            text-shadow: none;
        }
        #hero h1 .accent-word { color: #4f8b84; }
        #hero .primary-btn {
            border-radius: 0;
            padding: 17px 24px;
            background: var(--ink);
            box-shadow: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .12em;
        }
        #hero .primary-btn:hover { background: var(--clay); box-shadow: none; transform: translateY(-2px); }
        #hero .secondary-btn {
            border-radius: 0;
            color: var(--ink);
            background: transparent;
            border-color: rgba(24,38,36,.5);
            backdrop-filter: none;
            padding: 16px 24px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .12em;
        }
        #hero .secondary-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
        .hero-cta-note { color: var(--text-soft); font-size: 9px; letter-spacing: .16em; }
        .hero-stats-bar {
            left: 0;
            right: 0;
            bottom: 0;
            display: grid;
            grid-template-columns: minmax(180px, .9fr) minmax(360px, 2fr) minmax(180px, .9fr);
            min-height: 100px;
            background: var(--ink);
            border: 0;
            backdrop-filter: none;
            pointer-events: auto;
        }
        .hero-signal {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px 30px;
            color: var(--paper);
            border-right: 1px solid rgba(245,239,231,.2);
        }
        .hero-signal:last-child { border-right: 0; }
        .hero-signal__number {
            color: #b9c7bf;
            font-family: "Fraunces", serif;
            font-size: 29px;
            font-weight: 600;
            letter-spacing: 0;
            line-height: 1;
        }
        .hero-signal__label {
            font-size: 10px;
            font-weight: 600;
            line-height: 1.45;
            letter-spacing: .08em;
            text-transform: uppercase;
        }
        .hero-signal--statement { text-align: center; }
        .hero-signal--statement .hero-signal__label { color: rgba(251,248,243,.85); font-family: "Fraunces", serif; font-size: 16px; font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; }

        section { padding: 116px 7vw; }
        .section-tag, #about .about-label { color: var(--clay) !important; letter-spacing: .16em !important; }

        #about { background: #e5ddd1; }
        #about .about-inner { max-width: 1340px !important; gap: 84px !important; }
        #about h2 { font-size: clamp(42px, 4.4vw, 68px) !important; line-height: .96 !important; }
        #about h2 em { color: var(--clay) !important; }
        #about .stat { border-radius: 0 !important; background: rgba(251,248,243,.58) !important; border-color: rgba(24,38,36,.13) !important; }
        #about .stat-num { color: var(--ink) !important; }

        #services { background: var(--paper); }
        #services .section-header { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: end; margin-bottom: 52px !important; }
        #services .section-header p { margin: 0 !important; max-width: 420px; justify-self: end; }
        #services .grid { gap: 12px; }
        .service-card {
            min-height: 370px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 28px 26px 24px;
            border-radius: 0;
            background: var(--ink);
            color: var(--paper);
            border-color: var(--ink);
            box-shadow: none;
        }
        .service-card:nth-child(2n) { background: #c4cec7; border-color: #c4cec7; color: var(--ink); }
        .service-card:nth-child(3n) { background: #cbbca8; border-color: #cbbca8; color: var(--ink); }
        .service-card::before { color: currentColor !important; opacity: .48; }
        .service-card h3, .service-card p { color: inherit !important; }
        .service-card h3 { font-family: "Fraunces", serif !important; font-size: 31px !important; font-weight: 520 !important; line-height: 1 !important; }
        .service-card p { color: inherit !important; opacity: .8; }
        .service-card__bottom { border-top-color: currentColor !important; }
        .service-card .open-price { color: inherit !important; border-color: currentColor !important; border-radius: 0 !important; }
        .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 0 rgba(24,38,36,.12); }

        #gallery { background: #d8a47e; }
        .gallery-header-neat { margin-bottom: 38px !important; }
        .gallery-header-neat__title { font-family: "Fraunces", serif !important; font-weight: 520 !important; }
        .gallery-card { border-radius: 0 !important; border: 0 !important; box-shadow: none !important; }
        .gallery-card img { transition: transform .5s ease; }
        .gallery-card:hover img { transform: scale(1.05); }
        .gallery-card__caption { background: var(--ink) !important; color: var(--paper) !important; }
        .gallery-salon-section { background: #566c68 !important; color: var(--paper); }
        .gallery-salon-section .gallery-header-neat__desc,
        .gallery-salon-section .gallery-header-neat__title,
        .gallery-salon-section .section-tag { color: var(--paper) !important; }
        .gallery-salon-section .section-tag { color: #d8a47e !important; }

        #masters { background: #e5ddd1; }
        #masters .card { border-radius: 0; border: 0; background: var(--ink); box-shadow: none; }
        .masters-copy { color: var(--paper); }
        .masters-copy h3, .masters-copy p { color: inherit !important; }
        .masters-proof span { border-color: rgba(251,248,243,.25) !important; color: var(--paper) !important; }
        .masters-actions .secondary-btn { color: var(--paper); border-color: rgba(251,248,243,.5); background: transparent; }

        #reviews { background: var(--paper); }
        .reviews-grid { gap: 12px !important; }
        .review-card { border-radius: 0 !important; box-shadow: none !important; border-color: rgba(24,38,36,.16) !important; }
        .review-card:nth-child(2n) { background: #d7e6e0 !important; }
        .review-card:nth-child(3n) { background: #f0d8c6 !important; }

        #contacts { background: var(--ink); color: var(--paper); }
        #contacts h2, #contacts .info p, #contacts .info .label { color: inherit !important; }
        #contacts .info .label { color: #c4cec7 !important; }
        #contacts .primary-btn { border-radius: 0; background: #cbbca8; color: var(--ink); box-shadow: none; }
        #contacts .secondary-btn { border-radius: 0; color: var(--paper); border-color: rgba(251,248,243,.55); }
        #contacts .map { border-radius: 0; }

        .floating-booking {
            width: 92px;
            height: 92px;
            right: 22px;
            bottom: 22px;
            border-radius: 0;
            background: var(--clay);
            box-shadow: 8px 8px 0 var(--ink);
        }
        .floating-booking:hover { background: var(--ink); transform: translateY(-3px); box-shadow: 10px 10px 0 #cbbca8; }

        @media (max-width: 1180px) {
            nav { padding: 0 26px; }
            nav .links { gap: 12px; }
            nav .links a:nth-of-type(4), nav .links a:nth-of-type(5), nav .links a:nth-of-type(6) { display: none; }
            .nav-socials .nav-social { display: none; }
        }

@media (max-width: 760px) {
            nav { height: 70px; padding: 0 20px; }
            nav .logo { width: 126px; }
            .logo-word { font-size: 22px; }
            nav .links { display: none; }
            nav.menu-open .links {
                position: absolute;
                inset: 70px 0 auto;
                display: grid;
                gap: 0;
                padding: 12px 20px 20px;
                background: var(--paper);
                border-bottom: 1px solid var(--line);
                box-shadow: 0 16px 32px rgba(24,38,36,.12);
                transform: none;
                opacity: 1;
                pointer-events: auto;
}

/* Correction: clarity wins over reference imitation. Keep navigation where users expect it. */
@media (min-width: 761px) {
    nav {
        top: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        height: 76px !important;
        padding: 0 5vw !important;
        transform: none !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(40,49,47,.12) !important;
        border-radius: 0 !important;
        background: rgba(248,247,243,.94) !important;
        box-shadow: none !important;
    }
    nav.scrolled { height: 68px !important; }
    nav .logo { width: 126px; flex: 0 0 126px; }
    nav .links { gap: 18px; }
    nav .nav-social { display: grid; }
    .nav-booking { border-radius: 0 !important; }
}

/* The supplied portraits are too small for an editorial presentation.
   Use a deliberate type directory until a proper shoot is available. */
.masters-editorial__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: transparent;
    border-top: 1px solid rgba(40,49,47,.28);
    border-bottom: 1px solid rgba(40,49,47,.28);
}
.master-profile,
.master-profile:nth-child(2),
.master-profile:nth-child(3) {
    min-height: 242px;
    padding: 26px 24px 22px;
    border-right: 1px solid rgba(40,49,47,.28);
    background: transparent;
}
.master-profile:last-child { border-right: 0; }
.master-profile__image { display: none; }
.master-profile__meta { margin: 0 0 74px; }
.master-profile h3 { font-size: clamp(32px, 3.2vw, 48px); }
.master-profile p { max-width: 190px; min-height: 0; font-size: 12px; }
.masters-editorial__note { margin-top: 16px; }

@media (max-width: 760px) {
    .masters-editorial__grid { margin-top: 30px; }
    .master-profile,
    .master-profile:nth-child(2),
    .master-profile:nth-child(3) {
        display: block;
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(40,49,47,.22);
    }
    .master-profile:last-child { border-bottom: 0; }
    .master-profile__meta { margin: 0 0 20px; }
    .master-profile h3 { font-size: 34px; }
}

/* QUIET EDITORIAL REFINEMENT: SECOND ART DIRECTION */
:root {
    --bg: #eeece6;
    --paper: #f8f7f3;
    --ink: #2b312f;
    --accent: #87938d;
    --clay: #9a9184;
    --text-main: #2b312f;
    --text-soft: #707772;
}

body { background: var(--paper); }
section { border-top: 1px solid rgba(43, 49, 47, .12); }

nav {
    height: 76px;
    border-bottom: 1px solid rgba(43, 49, 47, .12);
    background: rgba(248, 247, 243, .96);
    backdrop-filter: blur(18px);
}
main { padding-top: 76px; }
.nav-booking {
    min-height: 0;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--paper);
    font-size: 9px;
    letter-spacing: .12em;
}
.nav-booking:hover { background: #525b56; }

@media (min-width: 761px) {
    #hero {
        min-height: calc(100vh - 76px);
        grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
        background: var(--paper);
    }
    #hero .hero-photo {
        grid-column: 2;
        height: calc(100vh - 76px);
        min-height: 580px;
        margin: 0;
        filter: none;
    }
    #hero .hero-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(40, 49, 46, .06);
        pointer-events: none;
    }
    #hero .hero-content {
        min-height: calc(100vh - 76px);
        padding: 76px clamp(32px, 5.5vw, 104px) 96px;
        justify-content: center;
    }
    #hero h1 {
        max-width: 510px;
        font-size: clamp(44px, 4vw, 68px);
        line-height: .94;
        margin-bottom: 34px;
    }
    #hero .tags { margin-bottom: 25px; color: var(--text-soft); }
    #hero .hero-cta-group { gap: 0; }
    #hero .primary-btn, #hero .secondary-btn {
        min-height: 48px;
        border-radius: 0;
        padding: 15px 18px;
        font-size: 10px;
        letter-spacing: .13em;
    }
    #hero .primary-btn { background: var(--ink); }
    #hero .secondary-btn { border-left: 0; background: transparent; }
    #hero .hero-cta-note { margin-top: 15px; }
    .hero-stats-bar {
        left: clamp(32px, 5.5vw, 104px);
        right: auto;
        bottom: 31px;
        width: calc(42% - clamp(32px, 5.5vw, 104px) - 24px);
        min-height: 0;
        display: flex;
        gap: 22px;
        background: transparent;
        color: var(--text-soft);
        border: 0;
    }
    .hero-signal {
        display: block;
        padding: 0;
        color: var(--text-soft);
        border: 0;
    }
    .hero-signal--statement { display: none; }
    .hero-signal__number { display: block; color: var(--ink); font-family: inherit; font-size: 11px; letter-spacing: .08em; }
    .hero-signal__label { display: block; margin-top: 5px; font-size: 9px; line-height: 1.35; letter-spacing: .08em; }
}

.section-tag,
#about .about-label { color: var(--text-soft) !important; }
.section-header h2,
#about h2 { font-weight: 520 !important; letter-spacing: 0; }

#about, #services, #reviews { background: var(--paper); }
#about { padding-top: 128px; padding-bottom: 128px; }
#about h2 em { color: var(--ink) !important; }

#services { padding-top: 118px; padding-bottom: 118px; }
#services .grid { gap: 1px; border: 1px solid rgba(43, 49, 47, .15); background: rgba(43, 49, 47, .15); }
#services .service-card,
#services .service-card:nth-child(2n),
#services .service-card:nth-child(3n) {
    min-height: 290px;
    background: var(--paper);
    border: 0;
    color: var(--ink);
    border-radius: 0;
    box-shadow: none;
}
#services .service-card:hover { background: #e3e5df; transform: none; }

#gallery { background: #dedfd9; }
.gallery-works .gallery-card,
.gallery-salon-section .gallery-card { border-radius: 0; }
.gallery-card__caption { background: var(--ink) !important; }
.gallery-salon-section { background: #d8ddd7 !important; color: var(--ink); }
.gallery-salon-section .section-tag,
.gallery-salon-section .gallery-header-neat__title,
.gallery-salon-section .gallery-header-neat__desc { color: var(--ink) !important; }

#masters { background: #353b38; padding-top: 120px; padding-bottom: 120px; }
#masters .section-tag, #masters .section-header h2 { color: var(--paper) !important; }
#masters .card { background: transparent; border-top: 1px solid rgba(248, 247, 243, .28); border-bottom: 1px solid rgba(248, 247, 243, .28); }
#masters .masters-frame { border-radius: 0; }
.masters-proof span { border-radius: 0 !important; }
.masters-actions { margin-top: 34px; }
.quiet-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}
.quiet-link:hover { color: #c8d0c9; }

#reviews { padding-top: 118px; padding-bottom: 118px; }
.review-card { border-radius: 0; box-shadow: none; border: 1px solid rgba(43, 49, 47, .14); background: transparent; }
.review-card:hover { transform: none; background: #f1f0eb; }

#contacts { background: #353b38; }
#contacts .info .label { color: #c8d0c9 !important; }
#contacts .quiet-link { margin-top: 28px; }

.floating-booking { display: none; }

@media (max-width: 760px) {
    nav { height: 68px; }
    main { padding-top: 68px; }
    #hero .hero-content { padding-top: 42px; padding-bottom: 62px; }
    #hero .hero-cta-group { display: flex; }
    #hero .primary-btn, #hero .secondary-btn { min-height: 48px; border-radius: 0; }
    .hero-stats-bar { display: none; }
    #about, #services, #masters, #reviews { padding-top: 76px; padding-bottom: 76px; }
    #services .grid { display: block; border: 0; background: transparent; }
    #services .service-card { min-height: 0; border-bottom: 1px solid rgba(43, 49, 47, .16); }
    .floating-booking { display: grid; }
}
            nav.menu-open .links a,
            nav.menu-open .links button {
                min-height: 46px;
                margin: 0;
                display: flex;
                align-items: center;
                border-bottom: 1px solid rgba(24,38,36,.1);
                color: var(--ink);
            }
            nav.menu-open .links .nav-price-btn {
                justify-content: flex-start;
                margin-top: 8px;
                padding-left: 0;
                background: transparent;
                color: var(--clay);
            }
            nav .nav-socials { margin-left: auto; border-left: 0; padding-left: 0; }
            .nav-booking { min-height: 34px; margin-right: 8px; }
            .menu-toggle { display: inline-flex; order: 2; }
            main { padding-top: 70px; }
            #hero { grid-template-columns: 1fr; min-height: auto; }
            #hero .hero-photo { grid-column: 1; grid-row: 1; height: 44vh; min-height: 44vh; margin: 0; }
            #hero .hero-content { grid-column: 1; grid-row: 2; min-height: auto; padding: 44px 24px 128px; }
            #hero h1 { font-size: clamp(43px, 12vw, 60px); line-height: .94; }
            #hero .hero-cta-group { gap: 10px; }
            #hero .primary-btn, #hero .secondary-btn { flex: 1 1 auto; padding: 15px 14px; }
            .hero-stats-bar { grid-template-columns: 1fr 1fr; min-height: 0; }
            .hero-signal { padding: 16px; }
            .hero-signal--statement { display: none; }
            .hero-signal__number { font-size: 24px; }
            section { padding: 76px 24px; }
            #about .about-inner { gap: 40px !important; }
            #services .section-header { grid-template-columns: 1fr; gap: 20px; }
            #services .section-header p { justify-self: start; }
            #services .grid { grid-template-columns: 1fr !important; }
            .service-card { min-height: 290px; }
            .gallery-header-neat, .gallery-header-neat--right { text-align: left !important; }
            .gallery-header-neat__left, .gallery-header-neat__desc { text-align: left !important; }
            .floating-booking { width: 74px; height: 74px; right: 16px; bottom: 16px; box-shadow: 5px 5px 0 var(--ink); }
        }

/* Final cascade: quiet, image-led editorial direction */
:root {
    --bg: #eeece6;
    --paper: #f8f7f3;
    --ink: #2b312f;
    --accent: #87938d;
    --clay: #9a9184;
    --text-main: #2b312f;
    --text-soft: #707772;
}
body { background: var(--paper); }
section { border-top: 1px solid rgba(43, 49, 47, .12); }
nav { height: 76px; border-bottom: 1px solid rgba(43, 49, 47, .12); background: rgba(248,247,243,.96); backdrop-filter: blur(18px); }
main { padding-top: 76px; }
.nav-booking { min-height: 0; padding: 10px 14px; background: var(--ink); color: var(--paper); font-size: 9px; letter-spacing: .12em; }
.nav-booking:hover { background: #525b56; }

@media (min-width: 761px) {
    #hero { min-height: calc(100vh - 76px); grid-template-columns: minmax(360px,42%) minmax(0,58%); background: var(--paper); }
    #hero .hero-photo { grid-column: 2; height: calc(100vh - 76px); min-height: 580px; margin: 0; }
    #hero .hero-photo::after { content:""; position:absolute; inset:0; background:rgba(40,49,46,.06); pointer-events:none; }
    #hero .hero-content { min-height: calc(100vh - 76px); padding: 76px clamp(32px,5.5vw,104px) 96px; justify-content:center; }
    #hero h1 { max-width:510px; font-size:clamp(44px,4vw,68px); line-height:.94; margin-bottom:34px; }
    #hero .tags { margin-bottom:25px; color:var(--text-soft); }
    #hero .hero-cta-group { gap:0; }
    #hero .primary-btn, #hero .secondary-btn { min-height:48px; border-radius:0; padding:15px 18px; font-size:10px; letter-spacing:.13em; }
    #hero .primary-btn { background:var(--ink); }
    #hero .secondary-btn { border-left:0; background:transparent; }
    #hero .hero-cta-note { margin-top:15px; }
    .hero-stats-bar { left:clamp(32px,5.5vw,104px); right:auto; bottom:31px; width:calc(42% - clamp(32px,5.5vw,104px) - 24px); min-height:0; display:flex; gap:22px; background:transparent; color:var(--text-soft); border:0; }
    .hero-signal { display:block; padding:0; color:var(--text-soft); border:0; }
    .hero-signal--statement { display:none; }
    .hero-signal__number { display:block; color:var(--ink); font-family:inherit; font-size:11px; letter-spacing:.08em; }
    .hero-signal__label { display:block; margin-top:5px; font-size:9px; line-height:1.35; letter-spacing:.08em; }
}

.section-tag, #about .about-label { color:var(--text-soft) !important; }
.section-header h2, #about h2 { font-weight:520 !important; letter-spacing:0; }
#about, #services, #reviews { background:var(--paper); }
#about { padding-top:128px; padding-bottom:128px; }
#about h2 em { color:var(--ink) !important; }
#services { padding-top:118px; padding-bottom:118px; }
#services .grid { gap:1px; border:1px solid rgba(43,49,47,.15); background:rgba(43,49,47,.15); }
#services .service-card, #services .service-card:nth-child(2n), #services .service-card:nth-child(3n) { min-height:290px; background:var(--paper); border:0; color:var(--ink); border-radius:0; box-shadow:none; }
#services .service-card:hover { background:#e3e5df; transform:none; }
#gallery { background:#dedfd9; }
.gallery-works .gallery-card, .gallery-salon-section .gallery-card { border-radius:0; }
.gallery-card__caption { background:var(--ink) !important; }
.gallery-salon-section { background:#d8ddd7 !important; color:var(--ink); }
.gallery-salon-section .section-tag, .gallery-salon-section .gallery-header-neat__title, .gallery-salon-section .gallery-header-neat__desc { color:var(--ink) !important; }
#masters { background:#353b38; padding-top:120px; padding-bottom:120px; }
#masters .section-tag, #masters .section-header h2 { color:var(--paper) !important; }
#masters .card { background:transparent; border-top:1px solid rgba(248,247,243,.28); border-bottom:1px solid rgba(248,247,243,.28); }
#masters .masters-frame, .masters-proof span { border-radius:0 !important; }
.masters-actions { margin-top:34px; }
.quiet-link { display:inline-flex; align-items:center; gap:12px; padding-bottom:6px; border-bottom:1px solid currentColor; color:var(--paper); font-size:11px; font-weight:600; letter-spacing:.1em; text-decoration:none; text-transform:uppercase; }
.quiet-link:hover { color:#c8d0c9; }
#reviews { padding-top:118px; padding-bottom:118px; }
.review-card, .review-card:nth-child(2n), .review-card:nth-child(3n) { border-radius:0; box-shadow:none; border:1px solid rgba(43,49,47,.14); background:transparent; }
.review-card:hover { transform:none; background:#f1f0eb; }
#contacts { background:#353b38; }
#contacts .info .label { color:#c8d0c9 !important; }
#contacts .quiet-link { margin-top:28px; }
.floating-booking { display:none; }

@media (max-width:760px) {
    nav { height:68px; }
    main { padding-top:68px; }
    #hero .hero-content { padding-top:42px; padding-bottom:62px; }
    #hero .hero-cta-group { display:flex; }
    #hero .primary-btn, #hero .secondary-btn { min-height:48px; border-radius:0; }
    .hero-stats-bar { display:none; }
    #about, #services, #masters, #reviews { padding-top:76px; padding-bottom:76px; }
    #services .grid { display:block; border:0; background:transparent; }
    #services .service-card { min-height:0; border-bottom:1px solid rgba(43,49,47,.16); }
    .floating-booking { display:grid; }
}

/* Services and closing sections: clearer hierarchy, softer mint */
:root { --accent: #a5c2b9; }

#services { padding-top: 92px; }
#services > svg { display: none; }
#services .section-header {
    display: block;
    max-width: none;
    margin: 0 0 34px !important;
}
#services .section-header .section-tag { margin: 0 0 17px; }
#services .section-header .h2-wrapper,
#services .section-header h2 {
    max-width: 680px;
    margin: 0;
}
#services .section-header h2 {
    font-size: clamp(43px, 4.2vw, 64px);
    line-height: .96;
}
#services .grid { margin-top: 0; }

#masters,
#contacts { background: #d7e2dd; color: var(--ink); }
#masters .section-tag,
#masters .section-header h2,
#masters .masters-copy,
#masters .masters-copy h3,
#masters .masters-copy p,
#contacts h2,
#contacts .info p,
#contacts .info .label { color: var(--ink) !important; }
#masters .card { border-color: rgba(43, 49, 47, .2); }
#masters .masters-proof span { color: var(--ink) !important; border-color: rgba(43, 49, 47, .25) !important; }
#masters .quiet-link,
#contacts .quiet-link { color: var(--ink); }
#masters .quiet-link:hover,
#contacts .quiet-link:hover { color: #5f7870; }
#contacts .info .label { color: #5f7870 !important; }
#contacts .map { box-shadow: inset 0 0 0 1px rgba(43,49,47,.16); }

/* Remove generic decoration and rebuild reviews as evidence, not cards. */
body::before,
.about-curl,
#reviews > svg,
#about > svg { display: none; }

#reviews {
    background: #eef2f0;
    padding-top: 104px;
    padding-bottom: 112px;
}
.reviews-head {
    max-width: none;
    margin-bottom: 42px;
    align-items: end;
}
.reviews-head .section-header { max-width: 620px; }
.reviews-score {
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: right;
}
.reviews-score__top { justify-content: flex-end; gap: 8px; }
.reviews-score__num { color: var(--ink); font-size: 31px; }
.reviews-score__stars,
.review-stars { display: none; }
.reviews-score__text { max-width: 250px; margin-left: auto; color: var(--text-soft); font-size: 10px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 !important;
    border-top: 1px solid rgba(43,49,47,.17);
    border-left: 1px solid rgba(43,49,47,.17);
}
.review-card,
.review-card:nth-child(2n),
.review-card:nth-child(3n) {
    min-height: 288px;
    padding: 30px 34px 26px;
    border: 0;
    border-right: 1px solid rgba(43,49,47,.17);
    border-bottom: 1px solid rgba(43,49,47,.17);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.review-card::after,
.review-text::before { display: none; }
.review-card:hover,
.review-card:nth-child(2n):hover,
.review-card:nth-child(3n):hover { background: #f7f8f5; transform: none; }
.review-card__tag {
    margin: 0 0 23px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #648078;
    background: transparent;
    font-size: 9px;
    letter-spacing: .15em;
}
.review-text {
    min-height: 0;
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.58;
}
.review-footer { margin-top: 24px; padding-top: 15px; border-top: 1px solid rgba(43,49,47,.12); }
.review-avatar { width: 25px; height: 25px; border: 0; border-radius: 0; background: #d4e1dc; color: var(--ink); font-size: 10px; }
.review-author { color: var(--ink); font-size: 11px; letter-spacing: .08em; }
.review-source { color: var(--text-soft); font-size: 10px; }

@media (max-width: 760px) {
    #reviews { padding-top: 76px; padding-bottom: 76px; }
    .reviews-head { display: block; margin-bottom: 28px; }
    .reviews-score { margin-top: 22px; text-align: left; }
    .reviews-score__top { justify-content: flex-start; }
    .reviews-score__text { margin-left: 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card,
    .review-card:nth-child(2n),
    .review-card:nth-child(3n) { min-height: 0; padding: 27px 22px; }
}

/* Four related pastel fields for guest stories. */
#reviews .review-card:nth-child(1) { background: #f7f5ef !important; }
#reviews .review-card:nth-child(2) { background: #dce9e3 !important; }
#reviews .review-card:nth-child(3) { background: #efd5c1 !important; }
#reviews .review-card:nth-child(4) { background: #e0e7ea !important; }
#reviews .review-card:nth-child(1):hover { background: #fbfaf6; }
#reviews .review-card:nth-child(2):hover { background: #d3e2db; }
#reviews .review-card:nth-child(3):hover { background: #eacbb4; }
#reviews .review-card:nth-child(4):hover { background: #d8e1e5; }

/* Final consistency pass: one interaction language, no generic decoration. */
#about::before,
#services::before,
#gallery::before,
.gallery-salon-section::before,
#masters::before,
#contacts::before,
#reviews::before,
#about::after,
.gallery-works::after,
.gallery-salon-section::after { display: none; }

.nav-socials { gap: 4px; }
.nav-social {
    width: 28px;
    height: 28px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.nav-social:hover { background: #e1e7e3 !important; color: var(--ink) !important; }
.nav-social .brand-icon { width: 16px; height: 16px; display: block; }

.primary-btn,
.secondary-btn,
.nav-price-btn,
.nav-booking { box-shadow: none !important; border-radius: 0 !important; }
.primary-btn,
.secondary-btn { transition: background .18s ease, color .18s ease, border-color .18s ease !important; }
.primary-btn:hover,
.secondary-btn:hover { transform: none !important; }

#contacts .contact-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 0;
    margin-right: 18px;
    border: 0 !important;
    border-bottom: 1px solid rgba(43,49,47,.35) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color .18s ease, color .18s ease;
}
#contacts .contact-channel:hover { color: #5f7870 !important; border-color: #5f7870 !important; }
#contacts .contact-channel .brand-icon { width: 17px; height: 17px; flex: 0 0 auto; }

#about .stat,
#about .about-awards > * { border-radius: 0 !important; box-shadow: none !important; }

/* Editorial wayfinding details, kept deliberately quiet. */
#hero .hero-photo img { position: relative; z-index: 1; }
#hero .hero-photo::after { z-index: 2; }
#hero .hero-photo::before {
    content: "VALUBE  /  ALIA  /  MOSCOW";
    position: absolute;
    z-index: 3;
    left: 22px;
    bottom: 20px;
    padding: 8px 10px;
    background: rgba(248,247,243,.9);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1;
}
section[data-folio]::after {
    content: attr(data-folio);
    display: block !important;
    position: absolute;
    top: 28px;
    right: 7vw;
    z-index: 2;
    color: #9db8af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}
#masters[data-folio]::after { color: #c9d8d2; }
#gallery-salon[data-folio]::after { color: #678078; }
#contacts[data-folio]::after { color: #5f7870; }

@media (max-width: 760px) {
    #hero .hero-photo::before { left: 14px; bottom: 14px; font-size: 8px; }
    section[data-folio]::after { top: 20px; right: 24px; }
}

/* Motion: atmospheric, useful, and quiet enough to let the photography lead. */
@keyframes valubeHeroEnter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes valubeFolioDrift {
    0%, 100% { opacity: .62; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-4px); }
}

#hero .hero-content > * {
    animation: valubeHeroEnter .8s cubic-bezier(.22,.8,.22,1) both;
}
#hero .hero-content > :nth-child(1) { animation-delay: .06s; }
#hero .hero-content > :nth-child(2) { animation-delay: .16s; }
#hero .hero-content > :nth-child(3) { animation-delay: .26s; }
#hero .hero-content > :nth-child(4) { animation-delay: .36s; }
#hero .hero-content > :nth-child(5) { animation-delay: .46s; }

.motion-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .72s ease var(--motion-delay, 0ms),
        transform .72s cubic-bezier(.22,.8,.22,1) var(--motion-delay, 0ms);
}
.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Native scroll timeline is a no-script fallback in current browsers. */
@supports (animation-timeline: view()) {
    #about .about-inner > *,
    #services .section-header,
    #services .service-card,
    #gallery .gallery-card,
    #gallery-salon .gallery-card,
    #masters .section-header,
    #masters .card,
    #reviews .reviews-head,
    #reviews .review-card,
    #contacts .info,
    #contacts .map {
        animation: valubeHeroEnter linear both;
        animation-timeline: view();
        animation-range: entry 12% cover 34%;
    }
}

section[data-folio]::after {
    animation: valubeFolioDrift 5s ease-in-out infinite;
}

#gallery .gallery-card img,
#gallery-salon .gallery-card img,
#masters .card img {
    transition: transform .7s cubic-bezier(.22,.8,.22,1), filter .45s ease;
}
#gallery .gallery-card:hover img,
#gallery-salon .gallery-card:hover img,
#masters .card:hover img {
    transform: scale(1.035);
    filter: saturate(.94) contrast(1.02);
}

#services .service-card,
#reviews .review-card,
#masters .card {
    transition: background-color .28s ease, border-color .28s ease, transform .4s cubic-bezier(.22,.8,.22,1);
}
#services .service-card:hover,
#masters .card:hover {
    transform: translateY(-4px);
}
#reviews .review-card:hover { transform: translateY(-2px) !important; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
    .motion-reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   Art-direction pass: quiet urban salon, not a generic beauty template.
   ------------------------------------------------------------------------- */
:root {
    --bg: #f4f1ea;
    --paper: #f8f7f3;
    --ink: #28312f;
    --accent: #b8d2cb;
    --blue: #b8c8d2;
    --warm: #c99075;
    --slate: #34434a;
    --text-soft: #68716f;
}

/* A compact, recognisable navigation object, inspired by the reference logic. */
@media (min-width: 761px) {
    nav {
        top: auto !important;
        bottom: 18px;
        left: 50%;
        width: min(1040px, calc(100% - 48px));
        height: 56px;
        padding: 0 10px 0 18px;
        transform: translateX(-50%);
        border: 1px solid rgba(40,49,47,.18) !important;
        border-radius: 999px;
        background: rgba(248,247,243,.94) !important;
        box-shadow: 0 10px 28px rgba(40,49,47,.11);
    }
    nav.scrolled { height: 52px; }
    nav .logo { width: 108px; flex: 0 0 108px; }
    nav .links { gap: 17px; }
    nav .links a { font-size: 9px; letter-spacing: .11em; }
    nav .nav-socials { margin-left: auto; padding-left: 12px; }
    nav .nav-social { display: none; }
    .nav-booking { padding: 10px 14px; border-radius: 999px !important; background: var(--slate); }
    .nav-booking:hover { background: var(--warm); }
}

/* Controlled colour rhythm: each major chapter has its own tempered climate. */
#about { background: var(--paper); }
#services { background: var(--blue); }
#services .section-header h2 { max-width: 780px; }
#services .section-tag { color: var(--slate); }
#services .grid { border-color: rgba(40,49,47,.22); background: rgba(40,49,47,.22); }
#services .service-card,
#services .service-card:nth-child(2n),
#services .service-card:nth-child(3n) { background: rgba(248,247,243,.91); }
#services .service-card:nth-child(2) { background: #dce9e3; }
#services .service-card:nth-child(3) { background: #f0e7dc; }
#services .service-card:nth-child(4) { background: #dce5ea; }
#services .service-card:hover { background: var(--paper); }
.price-from::after {
    content: "РўРѕС‡РЅР°СЏ СЃС‚РѕРёРјРѕСЃС‚СЊ РїРѕСЃР»Рµ РєРѕРЅСЃСѓР»СЊС‚Р°С†РёРё";
    display: block;
    margin-top: 7px;
    color: var(--text-soft);
    font-family: Manrope, sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.25;
}

#gallery { background: #d9e4df; }
.gallery-salon-section { background: var(--slate) !important; color: var(--paper); }
.gallery-salon-section .section-tag { color: var(--accent) !important; }
.gallery-salon-section .gallery-header-neat__title,
.gallery-salon-section .gallery-header-neat__desc { color: var(--paper) !important; }
.gallery-salon-section .gallery-card__caption { background: var(--warm) !important; }

/* Replace the imported service visual with a small native editorial directory. */
#masters { background: #d5e2dd; color: var(--ink); }
#masters > .card { display: none; }
#masters .section-tag { font-size: 0; }
#masters .section-tag::after {
    content: "РњРђРЎРўР•Р Рђ";
    font-size: 10px;
    letter-spacing: .15em;
}
.masters-editorial {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr);
    gap: 56px;
    align-items: end;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(40,49,47,.25);
}
.masters-editorial__intro { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; }
.masters-editorial__eyebrow,
.masters-editorial__note { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.masters-editorial__intro p { max-width: 305px; margin: 28px 0; font-size: 16px; line-height: 1.55; }
.masters-editorial .quiet-link { width: fit-content; color: var(--ink); }
.masters-editorial__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(40,49,47,.25); }
.master-profile { min-width: 0; padding: 14px 14px 18px; background: #edf2ef; }
.master-profile:nth-child(2) { background: #d9e2e8; }
.master-profile:nth-child(3) { background: #f0e4d9; }
.master-profile__image {
    aspect-ratio: 4 / 5;
    margin-bottom: 16px;
    background-color: #c5d4ce;
    background-image: url("../images/masters-original.png");
    background-repeat: no-repeat;
    /* Crop only the original portrait circles; never expose the source widget UI. */
    background-size: 2025px auto;
    filter: grayscale(.35) saturate(.75) contrast(1.02);
}
.master-profile--svetlana .master-profile__image { background-position: -97px -510px; }
.master-profile--kamil .master-profile__image { background-position: -97px -997px; }
.master-profile--marina .master-profile__image { background-position: -97px -58px; }
.master-profile__meta { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 26px; color: var(--text-soft); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.master-profile__meta span:last-child { text-align: right; }
.master-profile h3 { margin: 0 0 6px; font-family: Fraunces, serif; font-size: clamp(23px, 2vw, 31px); font-weight: 520; line-height: 1; }
.master-profile p { min-height: 34px; margin: 0; color: var(--text-soft); font-size: 11px; line-height: 1.4; }
.masters-editorial__note { grid-column: 2; margin: -30px 0 0; color: var(--text-soft); }

#reviews { background: #eef2f0; padding-top: 86px; padding-bottom: 92px; }
.reviews-head { margin-bottom: 28px; }
#contacts { background: var(--accent); color: var(--ink); }
#contacts .contact-channel--preferred { color: var(--ink) !important; border-color: var(--ink) !important; font-weight: 700; }
#contacts .contact-channel:not(.contact-channel--preferred) { opacity: .72; }

/* The carousel is now operated, not merely hinted at. */
.gallery-hint { display: none !important; }
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    color: var(--ink);
}
.gallery-salon-section .gallery-controls { color: var(--paper); }
.gallery-controls__status { font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.gallery-controls__buttons { display: flex; gap: 7px; }
.gallery-control {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.gallery-control:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.gallery-salon-section .gallery-control:hover:not(:disabled) { background: var(--paper); color: var(--slate); }
.gallery-control:disabled { opacity: .32; cursor: default; }
.gallery-control:focus-visible,
.gallery-card:focus-visible { outline: 2px solid var(--warm); outline-offset: 4px; }

@media (max-width: 760px) {
    #services { background: #c7d6dd; }
    #masters { padding-top: 78px; padding-bottom: 78px; }
    .masters-editorial { display: block; margin-top: 30px; padding-top: 20px; }
    .masters-editorial__intro p { margin: 18px 0 24px; }
    .masters-editorial__grid { grid-template-columns: 1fr; gap: 1px; margin-top: 34px; }
    .master-profile { display: grid; grid-template-columns: 96px 1fr; column-gap: 16px; padding: 12px; }
    .master-profile__image { grid-row: span 3; margin: 0; aspect-ratio: 1; background-size: 810px auto; }
    .master-profile--svetlana .master-profile__image { background-position: -35px -162px; }
    .master-profile--kamil .master-profile__image { background-position: -35px -357px; }
    .master-profile--marina .master-profile__image { background-position: -35px -31px; }
    .master-profile__meta { margin: 0 0 8px; }
    .master-profile h3 { align-self: end; font-size: 26px; }
    .master-profile p { min-height: 0; }
    .masters-editorial__note { margin: 16px 0 0; }
    .gallery-controls { margin-top: 16px; }
    .gallery-control { width: 36px; height: 36px; }
}

/* Final correction requested by the client: conventional top navigation and the original team image. */
@media (min-width: 761px) {
    nav {
        top: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        height: 76px !important;
        padding: 0 5vw !important;
        transform: none !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(40,49,47,.12) !important;
        border-radius: 0 !important;
        background: rgba(248,247,243,.96) !important;
        box-shadow: none !important;
    }
    nav.scrolled { height: 68px !important; }
    nav .nav-social { display: grid !important; }
    .nav-booking { border-radius: 0 !important; }
}

#masters .masters-editorial { display: none !important; }
#masters > .card {
    display: grid !important;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    gap: 42px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 36px;
    background: transparent;
    border-top: 1px solid rgba(40,49,47,.24);
    border-bottom: 1px solid rgba(40,49,47,.24);
    box-shadow: none;
}
#masters .masters-frame { display: block; }

@media (max-width: 760px) {
    #masters > .card {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 0;
        border-radius: 0;
    }
}

/* Light monochrome direction: diluted #0A8DA1, not a patchwork palette. */
:root {
    --bg: #fbfdfd;
    --paper: #fdfefe;
    --ink: #26383a;
    --text-soft: #718487;
    --accent: #e4f3f5;
    --blue: #edf8f9;
    --warm: #0a8da1;
    --slate: #dceff2;
}
body { background: var(--bg); }

nav,
nav.scrolled { background: rgba(253,254,254,.97) !important; border-bottom-color: rgba(10,141,161,.16) !important; }
.nav-booking,
.primary-btn { background: #0a8da1 !important; color: #fff !important; }
.nav-booking:hover,
.primary-btn:hover { background: #087b8c !important; }
.secondary-btn { border-color: rgba(10,141,161,.45) !important; color: var(--ink) !important; background: transparent !important; }

#about,
#services,
#gallery,
.gallery-salon-section,
#masters,
#reviews,
#contacts { background: var(--bg) !important; color: var(--ink) !important; }

#services { background: #f7fcfd !important; }
#services .grid { border-color: rgba(10,141,161,.20) !important; background: rgba(10,141,161,.20) !important; }
#services .service-card,
#services .service-card:nth-child(2),
#services .service-card:nth-child(3),
#services .service-card:nth-child(4),
#services .service-card:nth-child(2n),
#services .service-card:nth-child(3n) {
    background: #edf8f9 !important;
    color: var(--ink) !important;
}
#services .service-card:hover { background: #e4f3f5 !important; }
#services .service-icon svg * { stroke: #0a8da1 !important; }

#gallery { background: #f5fbfc !important; }
.gallery-salon-section { background: #edf8f9 !important; }
.gallery-salon-section .section-tag,
.gallery-salon-section .gallery-header-neat__title,
.gallery-salon-section .gallery-header-neat__desc { color: var(--ink) !important; }
.gallery-salon-section .gallery-card__caption,
.gallery-card__caption { background: #0a8da1 !important; color: #fff !important; }
.gallery-salon-section .gallery-controls { color: var(--ink); }
.gallery-salon-section .gallery-control:hover:not(:disabled) { background: #0a8da1; color: #fff; }

#masters { background: #f7fcfd !important; }
#masters .section-tag,
#masters .section-header h2,
#masters .masters-copy,
#masters .masters-copy h3,
#masters .masters-copy p { color: var(--ink) !important; }
#masters > .card { border-color: rgba(10,141,161,.23) !important; }
#masters .masters-proof span { border-color: rgba(10,141,161,.28) !important; color: var(--ink) !important; background: #edf8f9 !important; }
#masters .quiet-link { color: #0a8da1 !important; }

#reviews { background: #f5fbfc !important; }
#reviews .review-card,
#reviews .review-card:nth-child(1),
#reviews .review-card:nth-child(2),
#reviews .review-card:nth-child(3),
#reviews .review-card:nth-child(4) { background: #edf8f9 !important; }
#reviews .review-card:hover,
#reviews .review-card:nth-child(1):hover,
#reviews .review-card:nth-child(2):hover,
#reviews .review-card:nth-child(3):hover,
#reviews .review-card:nth-child(4):hover { background: #e4f3f5 !important; }
.review-card__tag,
.reviews-score__num,
.review-avatar { color: #0a8da1 !important; }
.review-avatar { background: #dceff2 !important; }

#contacts { background: #eaf6f8 !important; }
#contacts h2,
#contacts .info p,
#contacts .info .label,
#contacts .contact-channel { color: var(--ink) !important; }
#contacts .info .label { color: #0a8da1 !important; }
#contacts .contact-channel { border-bottom-color: rgba(10,141,161,.38) !important; }
#contacts .contact-channel--preferred { color: #0a8da1 !important; border-color: #0a8da1 !important; }
#contacts .map { box-shadow: inset 0 0 0 1px rgba(10,141,161,.20) !important; }

section[data-folio]::after { color: rgba(10,141,161,.52) !important; }
.price-from::after { color: #5e8589 !important; }

/* Keep the page airy, but never let key service information fade into the surface. */
#services .service-card {
    background: #eaf6f7 !important;
}

#services .service-card h3,
#services .service-card p,
#services .service-card .service-num,
#services .service-card .price-from,
#services .service-card .service-tags span,
#services .service-card .service-price-btn {
    color: #29494d !important;
}

#services .service-card .price-from {
    font-weight: 700 !important;
    letter-spacing: .01em;
}

#services .service-card .price-from::after {
    color: #527176 !important;
    font-size: 9px !important;
    font-weight: 600 !important;
}

#services .service-card .service-tags span {
    border-bottom-color: rgba(10, 141, 161, .34) !important;
}

#services .service-card .service-price-btn {
    background: rgba(255, 255, 255, .72) !important;
    border-color: rgba(10, 141, 161, .55) !important;
    font-weight: 700 !important;
}

#services .service-card .service-price-btn:hover {
    background: #0a8da1 !important;
    color: #fff !important;
}

.section-tag,
.about-label,
.gallery-header-neat__desc,
.review-card__source,
.review-card__text,
.reviews-score__text,
#contacts .info .label {
    color: #527176 !important;
}

.gallery-counter,
.masters-proof,
.contact-meta,
.hero-note,
.hero-metrics span,
.hero-metrics small {
    color: #45666b !important;
}

/* Pearl direction: one calm material across the whole site, with hierarchy from texture and type. */
:root {
    --bg: #f6f5f1;
    --paper: #fbfaf7;
    --ink: #202a29;
    --text-soft: #53605f;
    --accent: #eeefea;
    --blue: #f2f2ee;
    --slate: #e7e8e2;
    --warm: #5f817b;
}

body,
nav,
nav.scrolled,
#about,
#services,
#gallery,
.gallery-salon-section,
#masters,
#reviews,
#contacts {
    background: var(--bg) !important;
    color: var(--ink) !important;
}

nav,
nav.scrolled {
    border-bottom-color: rgba(45, 55, 54, .13) !important;
}

/* Informational planes are pearl, never coloured chapters. */
#services .service-card,
#services .service-card:nth-child(n),
#reviews .review-card,
#reviews .review-card:nth-child(n),
#masters .masters-proof span,
.about-promise,
.reviews-score,
#contacts .contact-card,
#contacts .contact-item,
.gallery-control {
    background: #eeefea !important;
    border-color: #d1d4cd !important;
    color: var(--ink) !important;
}

#services .grid,
#masters > .card,
.review-card,
.gallery-control,
#contacts .map {
    border-color: #d1d4cd !important;
}

#services .service-card:hover,
#reviews .review-card:hover,
#masters .masters-proof span:hover {
    background: #e7e8e2 !important;
}

/* Let the photography carry colour; captions stay materially quiet. */
.gallery-card__caption,
.gallery-salon-section .gallery-card__caption {
    background: rgba(251, 250, 247, .94) !important;
    color: var(--ink) !important;
    border-top: 1px solid rgba(45, 55, 54, .14) !important;
}

.gallery-card__caption small,
.gallery-card__caption span,
.section-tag,
.about-label,
.gallery-header-neat__desc,
.review-card__source,
.review-card__text,
.reviews-score__text,
#contacts .info .label,
.price-from::after {
    color: #65716e !important;
}

/* The only chromatic note is reserved for intent and interaction. */
.primary-btn,
.nav-booking,
.contact-channel--preferred {
    background: #5f817b !important;
    border-color: #5f817b !important;
    color: #fff !important;
}

.primary-btn:hover,
.nav-booking:hover,
.contact-channel--preferred:hover {
    background: #496b66 !important;
    border-color: #496b66 !important;
}

.secondary-btn,
.service-price-btn,
.nav-price-btn {
    background: transparent !important;
    border-color: #aeb8b2 !important;
    color: var(--ink) !important;
}

.service-price-btn:hover,
.secondary-btn:hover {
    background: #e7e8e2 !important;
    color: var(--ink) !important;
}

.reviews-score__num,
.review-card__tag,
.review-avatar,
#contacts .info .label,
#masters .quiet-link {
    color: #5f817b !important;
}

.review-avatar {
    background: #e2e5df !important;
}

section[data-folio]::after,
.service-icon svg * {
    color: #95aaa4 !important;
    stroke: #95aaa4 !important;
}

/* Pearl base + mint information system. Mint labels information; it does not flood the page. */
:root {
    --bg: #f7f5f0;
    --paper: #fcfbf8;
    --ink: #202a29;
    --text-soft: #53605f;
    --accent: #3d7f78;
    --blue: #eff7f5;
    --slate: #deefeb;
    --warm: #4f8f88;
}

body,
#about,
#services,
#gallery,
.gallery-salon-section,
#masters,
#reviews,
#contacts {
    background: var(--bg) !important;
}

/* One material for content: a pearl plane, a mint signal, a graphite reading colour. */
#services .service-card,
#services .service-card:nth-child(n),
#reviews .review-card,
#reviews .review-card:nth-child(n),
#masters .masters-proof span,
.about-promise,
.reviews-score {
    position: relative;
    overflow: hidden;
    background: var(--paper) !important;
    border-color: #d7d6cf !important;
    box-shadow: none !important;
}

#services .service-card::before,
#reviews .review-card::before,
.about-promise::before,
.reviews-score::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

#services .service-card:hover,
#reviews .review-card:hover {
    background: #fafbf8 !important;
    border-color: #a9d2cd !important;
}

#services .service-num,
#services .service-icon,
#services .service-tags span,
.review-card__tag,
.review-avatar,
.reviews-score__num,
#contacts .info .label,
#masters .quiet-link,
.section-tag,
.about-label {
    color: #4f8f88 !important;
}

#services .service-tags span {
    border-bottom-color: #b4d8d3 !important;
}

#services .service-card .price-from {
    color: #202a29 !important;
}

#services .service-card .price-from::after,
.gallery-header-neat__desc,
.review-card__source,
.review-card__text,
.reviews-score__text {
    color: #53605f !important;
}

#services .service-price-btn,
.secondary-btn,
.nav-price-btn {
    background: #f5fbf9 !important;
    border-color: #9fcac4 !important;
    color: #356c67 !important;
}

#services .service-price-btn:hover,
.secondary-btn:hover {
    background: #deefeb !important;
    border-color: #78aaa3 !important;
    color: #202a29 !important;
}

/* Gallery content gets a pearl caption with a mint rule instead of coloured slabs. */
.gallery-card__caption,
.gallery-salon-section .gallery-card__caption {
    background: rgba(252, 251, 248, .97) !important;
    color: var(--ink) !important;
    border-top: 4px solid var(--accent) !important;
}

.gallery-card__caption small,
.gallery-card__caption span {
    color: #4f8f88 !important;
}

/* Contacts use the same pearl surface; mint only directs the next step. */
#contacts .info,
#contacts .map,
#contacts .contact-channel {
    background: var(--paper) !important;
    border-color: #d7d6cf !important;
}

#contacts .contact-channel {
    border-bottom: 2px solid #b9ddd8 !important;
    color: var(--ink) !important;
}

.primary-btn,
.nav-booking,
#contacts .contact-channel--preferred {
    background: #4f8f88 !important;
    border-color: #4f8f88 !important;
    color: #fff !important;
}

.primary-btn:hover,
.nav-booking:hover,
#contacts .contact-channel--preferred:hover {
    background: #3e746f !important;
    border-color: #3e746f !important;
}

.review-avatar { background: #e2f1ee !important; }

section[data-folio]::after { color: #9bc7c1 !important; }

/* Brand marks stay recognisable; the surrounding interface remains quiet. */
.nav-social .brand-icon,
#contacts .contact-channel .brand-icon {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.nav-social {
    background: #fcfbf8 !important;
    border-color: #d7d6cf !important;
    color: var(--ink) !important;
}

.nav-social:hover {
    background: #e8f4f1 !important;
    border-color: #9fcfc8 !important;
    transform: translateY(-1px) !important;
}

/* Contacts read as a single address card, not an unrelated map embed. */
#contacts {
    gap: 28px !important;
    align-items: stretch !important;
}

#contacts .info,
#contacts .map {
    min-height: 100%;
    background: #fcfbf8 !important;
    border: 1px solid #d7d6cf !important;
    box-shadow: none !important;
}

#contacts .info {
    position: relative;
    padding: 42px 44px 38px !important;
    border-left: 4px solid #c9e5e1 !important;
}

#contacts .info::before {
    content: "07 / VALUBE";
    display: block;
    margin-bottom: 28px;
    color: #4f8f88;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

#contacts .map {
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    padding: 0 !important;
    border-top: 4px solid #c9e5e1 !important;
    border-radius: 0 !important;
}

#contacts .map::before,
#contacts .map::after {
    display: none !important;
}

#contacts .map-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 0 22px;
    color: #4f8f88;
    border-bottom: 1px solid #d7e6e2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

#contacts .map-meta a {
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .04em;
}

#contacts .map-meta a:hover { color: #4f8f88; }

#contacts .map iframe {
    flex: 1 1 auto;
    min-height: 350px;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#contacts .contact-channel {
    background: #f7fbfa !important;
    border: 1px solid #cce2de !important;
    border-bottom: 1px solid #cce2de !important;
}

#contacts .contact-channel:not(.contact-channel--preferred):hover {
    background: #e6f3f0 !important;
    border-color: #9fcfc8 !important;
}

@media (max-width: 760px) {
    #contacts .info { padding: 30px 24px 28px !important; }
    #contacts .map-meta { min-height: 54px; padding: 0 16px; font-size: 9px; }
    #contacts .map iframe { min-height: 280px; }
}

/* Social marks are marks, not boxed UI controls. */
.nav-social,
.nav-social:hover {
    width: 25px !important;
    height: 25px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    transform: none !important;
}

.nav-social .brand-icon,
#contacts .contact-channel .brand-icon {
    filter: drop-shadow(0 2px 5px rgba(47, 119, 170, .18));
    transition: transform .18s ease, filter .18s ease;
}

.nav-social:hover .brand-icon,
#contacts .contact-channel:hover .brand-icon {
    transform: translateY(-1px) scale(1.05);
    filter: drop-shadow(0 3px 8px rgba(47, 119, 170, .28));
}

#contacts .contact-channel,
#contacts .contact-channel--preferred,
#contacts .contact-channel:not(.contact-channel--preferred):hover,
#contacts .contact-channel--preferred:hover {
    min-height: auto !important;
    padding: 3px 0 7px !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #b9ddd8 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
}

#contacts .contact-channel:hover,
#contacts .contact-channel--preferred:hover {
    color: #4f8f88 !important;
    border-bottom-color: #4f8f88 !important;
}

/* Price modal: category states and the close action must stay readable on pearl. */
.modal-content {
    background: #fcfbf8 !important;
    border: 1px solid #d7d6cf;
}

.modal-close {
    background: #fcfbf8 !important;
    border-color: #b9ddd8 !important;
    color: #202a29 !important;
    box-shadow: none !important;
}

.modal-close:hover {
    background: #e8f4f1 !important;
    border-color: #76aaa3 !important;
}

.price-tab,
.price-tab:hover {
    background: #f8f7f3 !important;
    border-color: #c8d9d5 !important;
    color: #3f5855 !important;
    font-weight: 650 !important;
}

.price-tab.active,
.price-tab.active:hover,
.close-price,
.close-price:hover {
    background: #4f8f88 !important;
    border-color: #4f8f88 !important;
    color: #fff !important;
}

.modal-scroll .price-item {
    border-bottom-color: #e0dfd9 !important;
    color: #202a29 !important;
}

.modal-scroll .price-item span:last-child {
    color: #356c67 !important;
    font-weight: 650;
}

/* Score is a side note, not another card with a decorative cap. */
.reviews-score {
    padding: 10px 0 10px 18px !important;
    min-width: 0 !important;
    max-width: 310px;
    background: transparent !important;
    border: 0 !important;
    border-left: 3px solid #b9ddd8 !important;
    border-radius: 0 !important;
}

.reviews-score::before {
    top: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    left: -3px !important;
    width: 3px !important;
    height: auto !important;
    background: #4f8f88 !important;
}

.reviews-score__top { justify-content: flex-start !important; }
.reviews-score__text { max-width: none !important; margin-left: 0 !important; }

@media (max-width: 760px) {
    .reviews-score { margin-top: 20px; }
}

/* Wordmark follows the physical sign: sculpted serif, deep blue-green, no faded badge. */
nav .logo {
    width: 146px !important;
    height: 48px !important;
    padding: 0 !important;
    align-items: flex-start !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

nav .logo::before,
nav .logo::after { display: none !important; }

.logo-word {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    color: #163f50 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: .83 !important;
    letter-spacing: .105em !important;
    font-variation-settings: normal !important;
    text-shadow: 0 1px 0 rgba(255,255,255,.78);
}

.logo-sub {
    margin-top: 7px !important;
    color: #6d938f !important;
    display: block !important;
    width: 100% !important;
    overflow: hidden;
    text-align: center !important;
    white-space: nowrap;
    font-size: 6.5px !important;
    font-weight: 700 !important;
    letter-spacing: .18em !important;
}

/* Contrast floor: mint is allowed as copy only when it can actually be read. */
#about .about-label,
#about .stat-num,
#about h2 em,
#about .about-quote .quote-author,
#about .about-quote svg path,
#about .about-quote [style*="Команда"],
#about .about-quote [style*="color: var(--accent)"],
.section-tag,
.review-card__tag,
.reviews-score__num,
#contacts .info .label {
    color: #3d7f78 !important;
}

#about .about-quote::before {
    color: rgba(61, 127, 120, .28) !important;
}

#about .about-quote p,
#about .about-quote [style*="font-family:'Fraunces'"] {
    color: #202a29 !important;
}

#about .about-quote [style*="font-size: 11px"],
#about .stat-desc,
#about .about-copy p,
.review-card__source,
.review-card__text,
.gallery-header-neat__desc,
.price-from::after {
    color: #53605f !important;
}

@media (max-width: 760px) {
    nav .logo { width: 132px !important; }
    .logo-word { font-size: 29px !important; }
}

@media (max-width: 760px) {
    #services,
    #gallery,
    #masters,
    #reviews,
    #contacts { background: #f7fcfd !important; }
}

/* Keep the card footer compact: the consultation note was forcing actions off-canvas. */
#services .price-from::after {
    content: none !important;
    display: none !important;
}

/* Bring the massage botanical accent fully inside its card. */
#services .service-card:nth-child(3)::before {
    top: 164px !important;
    right: -2px !important;
    transform: scale(.72) rotate(-8deg) !important;
    opacity: .68 !important;
}

/* One complete botanical accent per service card, never a cropped fragment. */
#services .service-card::before {
    display: none !important;
}

#services .service-card::after {
    display: block !important;
    top: 52% !important;
    right: -20px !important;
    bottom: auto !important;
    left: auto !important;
    width: 118px !important;
    height: 108px !important;
    transform: scaleX(-1) scale(.68) !important;
    transform-origin: center right !important;
    opacity: .54 !important;
}

#services .service-card:nth-child(even)::after {
    right: auto !important;
    left: -20px !important;
    transform: scale(.68) !important;
    transform-origin: center left !important;
}

/* Service cards are intentionally typographic: no botanical overlays. */
#services .service-card::before,
#services .service-card::after {
    display: none !important;
}

/* Tighter editorial rhythm on wide screens. */
@media (min-width: 761px) {
    #services,
    #gallery,
    #gallery-salon,
    #masters,
    #reviews,
    #contacts {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    #services .section-header { margin-bottom: 36px !important; }
}

/* Gallery controls must be visible before a visitor hovers the gallery. */
.gallery-control {
    background: #f7fbfa !important;
    border-color: #9fcac4 !important;
    color: #356c67 !important;
}

.gallery-control:disabled {
    opacity: .42 !important;
}

/* Keep the address useful even while the third-party map widget is loading. */
#contacts .map-address {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px 20px;
    background: #f7fbfa;
    border-bottom: 1px solid #d7e8e4;
    color: var(--ink);
}

.map-address__pin {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 2px solid #4f8f88;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.map-address__pin::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #4f8f88;
}

.map-address__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #4f8f88;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.map-address strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 760px) {
    #contacts .map-address { min-height: 68px; padding: 12px 16px; }
}
