:root {
    --bg: #fff8f1;
    --surface: #fffdfb;
    --surface-2: #f7ece4;
    --ink: #35261f;
    --muted: #7b6256;
    --brand: #c58a73;
    --brand-dark: #a96d57;
    --line: #e8cdbf;
    --dark: #5c3c30;
    --dark-2: #7b4e3f;
    --light: #fff8f1;
    --gold: #d6a28b;
    --radius: 22px;
    --shadow: 0 18px 44px rgba(92, 60, 48, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 7% 4%, rgba(197, 138, 115, 0.13), transparent 44%),
        radial-gradient(circle at 92% 2%, rgba(92, 60, 48, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 241, 0.96)),
        var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.6em;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.01em;
    line-height: 1.02;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 4.9rem);
}

h2 {
    font-size: clamp(1.7rem, 2.8vw, 3.15rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 2.1rem);
}

p {
    margin: 0 0 1em;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(92, 60, 48, 0.12);
}

.header-top,
.header-nav-wrap {
    width: min(1820px, 98vw);
    margin: 0 auto;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
    padding-inline: 0.4rem;
}

.header-brand-cluster {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand {
    display: grid;
    gap: 0.06rem;
    color: var(--ink);
}

.brand-logo .custom-logo-link,
.brand-logo .custom-logo {
    display: block;
    max-height: 54px;
    width: auto;
}

.brand-title {
    font-size: 2rem;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.82;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.social-pill {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-pill:hover {
    transform: translateY(-1px);
    background: var(--brand);
    color: #fff;
}

.header-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    gap: 0.75rem 1.2rem;
    margin-left: auto;
}

.header-meta-item {
    display: grid;
    gap: 0.12rem;
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.header-meta-item:first-child {
    border-left: 0;
    padding-left: 0;
}

.header-meta-label {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.header-meta-value {
    font-size: 0.99rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.2;
}

.header-meta-address .header-meta-value {
    max-width: 30ch;
}

.header-meta-phone .header-meta-value {
    color: var(--dark);
    font-weight: 700;
}

.header-bottom {
    border-top: 1px solid var(--line);
    background: rgba(255, 248, 241, 0.7);
}

.header-nav-wrap {
    min-height: 58px;
    display: flex;
    align-items: center;
    position: relative;
}

.site-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.site-nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.18rem 0.42rem;
    margin: 0;
    padding: 0;
}

.site-nav > ul > li {
    display: flex;
}

.site-nav > ul > li > a {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav > ul > li > a:hover {
    background: rgba(232, 205, 191, 0.76);
    color: var(--dark);
}

.menu-item-has-panel {
    position: static;
}

.menu-link-has-panel {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.menu-caret {
    font-size: 0.72rem;
    line-height: 1;
    transform: translateY(1px);
    opacity: 0.72;
}

.menu-item-has-panel:hover > .menu-link-has-panel,
.menu-item-has-panel:focus-within > .menu-link-has-panel {
    background: rgba(232, 205, 191, 0.86);
    color: var(--dark);
}

.menu-panel {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: min(1380px, 96vw);
    border: 1px solid var(--line);
    border-radius: 0 0 24px 24px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(92, 60, 48, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 70;
}

.menu-item-has-panel:hover .menu-panel,
.menu-item-has-panel:focus-within .menu-panel,
.menu-item-has-panel.is-open .menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-item-has-panel.is-open > .menu-link-has-panel {
    background: rgba(232, 205, 191, 0.86);
    color: var(--dark);
}

.menu-panel-inner {
    min-height: 390px;
    max-height: min(72vh, 760px);
    display: grid;
    grid-template-columns: minmax(270px, 0.33fr) minmax(0, 1fr);
}

.menu-panel-cats {
    border-right: 1px solid var(--line);
    padding: 1.2rem 1rem;
    background: linear-gradient(160deg, rgba(255, 248, 241, 0.92), rgba(247, 236, 228, 0.76));
    display: grid;
    align-content: start;
    gap: 0.25rem;
    overflow-y: auto;
}

.menu-panel-cat {
    width: 100%;
    border: 0;
    border-radius: 12px;
    text-align: left;
    min-height: 40px;
    padding: 0.52rem 0.68rem;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 1.01rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-panel-cat:hover,
.menu-panel-cat.is-active {
    background: rgba(197, 138, 115, 0.14);
    color: var(--brand-dark);
}

.menu-panel-content {
    padding: 1.26rem 1.35rem;
    overflow-y: auto;
}

.menu-panel-group {
    display: none;
}

.menu-panel-group.is-active {
    display: block;
}

.menu-panel-group h4 {
    margin-bottom: 0.72rem;
    font-size: clamp(1.7rem, 2.3vw, 2.3rem);
    color: var(--ink);
}

.menu-panel-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    column-count: 2;
    column-gap: 1.7rem;
}

.menu-panel-group li {
    display: block;
    break-inside: avoid;
    margin-bottom: 0.5rem;
}

.menu-panel-group a {
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: normal;
    font-weight: 500;
    line-height: 1.45;
}

.menu-panel-group a:hover {
    background: transparent;
    color: var(--brand-dark);
}

.menu-panel-group p {
    color: var(--muted);
}

.header-phone {
    display: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface-2);
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
}

.homepage {
    overflow: hidden;
}

.hero {
    padding: 4.2rem 0 2.7rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.92fr);
    grid-template-areas:
        'main visual'
        'main panel';
    gap: 1rem;
    align-items: stretch;
}

.hero-main {
    grid-area: main;
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(0.95rem, 1.6vw, 1.4rem);
    padding: clamp(1.5rem, 3vw, 3rem);
    border: 1px solid rgba(232, 205, 191, 0.24);
    background:
        radial-gradient(circle at 90% 2%, rgba(255, 255, 255, 0.17), transparent 46%),
        linear-gradient(135deg, #c58a73 0%, #a96d57 34%, #7b4e3f 100%);
    color: var(--light);
    box-shadow: var(--shadow);
}

.hero-main::before,
.hero-main::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-main::before {
    width: 280px;
    height: 280px;
    right: -95px;
    top: -110px;
    background: rgba(255, 255, 255, 0.13);
}

.hero-main::after {
    width: 188px;
    height: 188px;
    right: 18%;
    bottom: -94px;
    background: rgba(255, 255, 255, 0.11);
}

.hero-main > * {
    position: relative;
    z-index: 1;
}

.hero-main h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 4.45vw, 4.65rem);
    line-height: 0.96;
    letter-spacing: -0.018em;
    text-wrap: balance;
    overflow-wrap: anywhere;
    margin-bottom: 0.44em;
}

.hero-main h1 span {
    display: block;
}

.hero-main h1 .hero-slogan-line {
    margin-top: 0.08em;
}

.eyebrow {
    margin: 0 0 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--brand);
    font-weight: 700;
}

.hero .eyebrow {
    color: #e8cdbf;
}

.hero-lead {
    max-width: 52ch;
    opacity: 0.96;
    font-size: 1.03rem;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.76rem;
    margin: 0;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 0.72rem 1.26rem;
    border: 1px solid transparent;
    font-size: 0.93rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #c58a73, #a96d57);
    color: #fff;
    box-shadow: 0 10px 24px rgba(146, 96, 75, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ba7e66, #9f6650);
    box-shadow: 0 14px 30px rgba(146, 96, 75, 0.36);
}

.btn-ghost {
    background: rgba(247, 236, 228, 0.65);
    border-color: var(--line);
    color: var(--ink);
}

.hero .btn-ghost,
.levels .btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 205, 191, 0.48);
    color: var(--light);
    backdrop-filter: blur(3px);
}

.btn-wide {
    width: 100%;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
    justify-content: center;
}

.hero-proof {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.hero-proof li {
    border: 1px solid rgba(232, 205, 191, 0.32);
    border-radius: 14px;
    background: rgba(232, 205, 191, 0.12);
    backdrop-filter: blur(3px);
    padding: 0.58rem 0.72rem;
    display: grid;
    gap: 0.12rem;
}

.hero-proof strong {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e8cdbf;
}

.hero-proof span {
    color: rgba(255, 248, 241, 0.92);
    font-size: 0.9rem;
    line-height: 1.35;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(232, 205, 191, 0.45);
    background: rgba(232, 205, 191, 0.15);
    color: var(--light);
    font-size: 0.84rem;
    font-weight: 600;
}

.hero-visual {
    grid-area: visual;
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid rgba(232, 205, 191, 0.32);
    box-shadow: var(--shadow);
    background: #5c3c30;
    min-height: 300px;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.08) 10%, rgba(92, 60, 48, 0.82) 100%);
}

.hero-visual-media {
    display: block;
    height: 100%;
}

.hero-visual-media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.hero-visual-note {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    border: 1px solid rgba(232, 205, 191, 0.38);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    background: rgba(92, 60, 48, 0.66);
    backdrop-filter: blur(4px);
    color: var(--light);
}

.hero-visual-kicker {
    margin: 0 0 0.28rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e8cdbf;
}

.hero-visual-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.38rem;
    line-height: 1.04;
}

.hero-visual-meta {
    margin: 0.26rem 0 0;
    font-size: 0.84rem;
    color: rgba(255, 248, 241, 0.88);
}

.hero-panel {
    grid-area: panel;
    border-radius: calc(var(--radius) + 4px);
    padding: 1.4rem;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 236, 228, 0.84));
    box-shadow: var(--shadow);
}

.panel-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    font-weight: 700;
}

.panel-address {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.panel-metrics {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.panel-metrics li {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-2);
    padding: 0.7rem 0.78rem;
    display: grid;
    gap: 0.18rem;
}

.panel-metrics strong {
    font-size: 1.07rem;
}

.panel-metrics span {
    color: var(--muted);
    font-size: 0.9rem;
}

.metrics {
    padding-bottom: 0.7rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
}

.metric-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.8rem 1rem;
}

.metric-value {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
}

.metric-label {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 0.89rem;
}

.section {
    padding: 3.8rem 0;
}

.section-header {
    max-width: 70ch;
    margin-bottom: 1.2rem;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 0.05em;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 0.2em;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), rgba(197, 138, 115, 0));
}

.section-header p {
    color: var(--muted);
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.section-head-row .section-header {
    margin-bottom: 0;
}

.section-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--brand);
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand);
    font-size: 1.7rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-1px);
    background: var(--brand);
    color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.42;
    cursor: default;
    transform: none;
    background: rgba(255, 255, 255, 0.88);
    color: var(--muted);
    border-color: var(--line);
}

.mood-grid,
.service-grid,
.offer-grid,
.review-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mood-card,
.service-card,
.offer-card,
.review-card,
.booking-card,
.contact-card,
.map-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 1.28rem;
}

.service-card,
.offer-card,
.review-card,
.master-card,
.work-card,
.entity-card,
.mood-card,
.booking-card,
.contact-card,
.map-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
    .service-card:hover,
    .offer-card:hover,
    .review-card:hover,
    .master-card:hover,
    .work-card:hover,
    .entity-card:hover,
    .mood-card:hover,
    .booking-card:hover,
    .contact-card:hover,
    .map-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 48px rgba(92, 60, 48, 0.2);
        border-color: #dfc1b0;
    }
}

.mood-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.mood-card::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    right: -30px;
    top: -30px;
    opacity: 0.7;
}

.mood-hair {
    background: linear-gradient(145deg, #fff6f0, #f7ece4);
}

.mood-hair::after {
    background: #e8cdbf;
}

.mood-nails {
    background: linear-gradient(145deg, #fff4ed, #f4e4d8);
}

.mood-nails::after {
    background: #dcb39f;
}

.mood-face {
    background: linear-gradient(145deg, #fffaf6, #faeee6);
}

.mood-face::after {
    background: #e4c8b9;
}

.mood-card > * {
    position: relative;
    z-index: 1;
}

.mood-lead {
    margin: 0 0 0.4rem;
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-link {
    display: inline-block;
    margin-top: 0.35rem;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.93rem;
}

.service-price,
.offer-badge {
    margin: 0 0 0.4rem;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    font-weight: 700;
}

.levels {
    background:
        radial-gradient(circle at 8% 5%, rgba(255, 255, 255, 0.09), transparent 36%),
        linear-gradient(140deg, var(--dark), var(--dark-2));
    color: var(--light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.levels .eyebrow {
    color: #e8cdbf;
}

.levels .section-header p {
    color: rgba(255, 248, 241, 0.82);
}

.level-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.level-card {
    border: 1px solid rgba(232, 205, 191, 0.26);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.level-num {
    margin: 0 0 0.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e8cdbf;
}

.level-note {
    margin-bottom: 0.9rem;
    color: rgba(255, 248, 241, 0.84);
    font-size: 0.92rem;
}

.level-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.level-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    border-bottom: 1px dashed rgba(232, 205, 191, 0.3);
    padding-bottom: 0.34rem;
    font-size: 0.88rem;
}

.level-list span {
    color: rgba(255, 248, 241, 0.84);
}

.level-list strong {
    text-align: right;
}

.levels .text-link {
    color: #e8cdbf;
}

.offers {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 236, 228, 0.62));
}

.offer-card {
    min-height: 195px;
}

.booking-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 0.95rem;
}

.booking-copy p {
    color: var(--muted);
}

.booking-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.68rem;
}

.booking-points li {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.72rem 0.82rem;
    color: var(--muted);
}

.booking-card {
    background: #ffffff;
}

.booking-form {
    display: grid;
    gap: 0.75rem;
}

.booking-form label {
    display: grid;
    gap: 0.32rem;
    font-size: 0.92rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.72rem 0.8rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.form-message {
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    font-size: 0.92rem;
}

.form-message.success {
    background: #e6f5ea;
    color: #145b33;
}

.form-message.error {
    background: #fde8e7;
    color: #92201d;
}

.review-card {
    min-height: 195px;
}

.review-text {
    margin-bottom: 0.7rem;
}

.review-author {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 0.72rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 0.8rem 1rem;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
}

.faq-item p {
    margin: 0.8rem 0 0;
    color: var(--muted);
}

.contact-address {
    font-size: 1.05rem;
}

.work-time {
    margin-top: -0.2rem;
    color: var(--muted);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.contact-links .btn-ghost {
    border-color: var(--line);
    color: var(--ink);
}

.map-title {
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--brand);
    font-size: 0.82rem;
}

.map-link {
    display: grid;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-2);
    padding: 0.85rem;
    margin-bottom: 0.65rem;
}

.map-link span {
    font-weight: 700;
}

.map-link small {
    color: var(--muted);
}

.site-footer {
    margin-top: 3rem;
    background: var(--dark);
    color: var(--light);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-wrap p {
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 0.85rem;
}

.footer-nav a {
    color: rgba(255, 248, 241, 0.9);
    font-size: 0.88rem;
}

.scroll-top {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 45;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(92, 60, 48, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.scroll-top span {
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 700;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.mobile-cta {
    display: none;
}

main.section .container {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
}

@media (max-width: 1540px) {
    .header-meta {
        gap: 0.58rem 0.95rem;
    }

    .header-meta-item {
        padding-left: 0.72rem;
    }

    .header-meta-value {
        font-size: 0.91rem;
    }

    .header-meta-address .header-meta-value {
        max-width: 22ch;
    }

    .site-nav > ul > li > a {
        font-size: 0.94rem;
        padding: 0.45rem 0.68rem;
    }
}

@media (max-width: 1040px) {
    .hero-layout,
    .booking-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-areas:
            'main'
            'visual'
            'panel';
    }

    .hero-visual,
    .hero-visual-media img {
        min-height: 260px;
    }

    .level-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mood-grid,
    .service-grid,
    .offer-grid,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .header-meta,
    .header-social {
        display: none;
    }

    .header-top {
        min-height: 70px;
    }

    .header-bottom {
        border-top: 0;
        background: transparent;
    }

    .header-nav-wrap {
        min-height: 0;
    }

    .site-nav {
        position: absolute;
        right: 0.4rem;
        top: calc(100% + 0.2rem);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: min(94vw, 420px);
        background: rgba(92, 60, 48, 0.98);
        border: 1px solid rgba(232, 205, 191, 0.24);
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 0.95rem;
        z-index: 60;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.22s ease;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.26rem;
    }

    .site-nav > ul > li {
        width: 100%;
    }

    .site-nav > ul > li > a {
        display: block;
        color: var(--light);
        border-radius: 10px;
        padding: 0.62rem 0.78rem;
    }

    .site-nav > ul > li > a:hover {
        background: rgba(232, 205, 191, 0.14);
        color: #fff;
    }

    .menu-caret {
        display: none;
    }

    .menu-panel {
        display: none;
    }

    .header-phone-mobile {
        margin-top: 0.32rem;
        width: 100%;
        min-height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(232, 205, 191, 0.34);
        background: rgba(232, 205, 191, 0.1);
        color: var(--light);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .section-home-services .entity-grid-editorial:not(.entity-carousel) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .section-home-services .entity-grid-editorial:not(.entity-carousel) .entity-card,
    .section-home-services .entity-grid-editorial:not(.entity-carousel) .entity-card-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-home-services .entity-grid-editorial:not(.entity-carousel) .entity-card-featured .service-thumb {
        height: 220px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel {
        grid-auto-columns: minmax(560px, 76%);
    }

    .master-grid-editorial,
    .work-grid-editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .master-grid-editorial .master-card,
    .master-grid-editorial .master-card-featured,
    .master-grid-editorial .master-card-wide,
    .work-grid-editorial .work-card,
    .work-grid-editorial .work-card-featured,
    .work-grid-editorial .work-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .master-grid-editorial .master-card-featured .master-photo,
    .work-grid-editorial .work-card-featured .work-photo {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 680px) {
    .header-top {
        min-height: 64px;
    }

    .brand-subtitle {
        display: none;
    }

    .brand-title {
        font-size: 1.7rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero-main h1 {
        max-width: 11.5ch;
        font-size: clamp(1.85rem, 8vw, 2.62rem);
        line-height: 0.98;
    }

    .hero-actions {
        margin-top: 1.3rem;
    }

    .hero-actions .btn {
        flex: 1 1 100%;
    }

    .hero-proof {
        gap: 0.46rem;
    }

    .hero-proof li {
        padding: 0.5rem 0.62rem;
    }

    .hero-proof span {
        font-size: 0.85rem;
    }

    .section-head-row {
        align-items: stretch;
    }

    .section-carousel-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .section-home-services .entity-grid-editorial.entity-carousel {
        grid-auto-columns: minmax(310px, 92%);
    }

    .service-thumb {
        height: 136px;
    }

    .service-thumb-placeholder {
        font-size: 0.8rem;
    }

    .metric-grid,
    .mood-grid,
    .service-grid,
    .level-grid,
    .offer-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .mobile-cta {
        position: fixed;
        left: 0.55rem;
        right: 0.55rem;
        bottom: 0.55rem;
        z-index: 40;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(92, 60, 48, 0.97);
        border-radius: 12px;
        padding: 0.45rem;
        box-shadow: var(--shadow);
    }

    .mobile-cta a {
        text-align: center;
        border-radius: 9px;
        border: 1px solid rgba(232, 205, 191, 0.22);
        color: var(--light);
        padding: 0.52rem 0.38rem;
        font-size: 0.86rem;
        font-weight: 700;
    }

    .site-footer {
        padding-bottom: 4.3rem;
    }

    .scroll-top {
        right: 0.7rem;
        bottom: 4.9rem;
        width: 44px;
        height: 44px;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0.8rem 0;
    }
}

@media (max-width: 420px) {
    .hero-main h1 {
        max-width: 10.8ch;
        font-size: clamp(1.72rem, 9vw, 2.15rem);
    }

    .hero-lead {
        font-size: 0.97rem;
    }
}

/* Multi-page layout */
.page-shell {
    min-height: 52vh;
}

.page-hero {
    padding: 3.6rem 0 2.1rem;
}

.page-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.page-subtitle {
    max-width: 68ch;
    color: var(--muted);
}

.hero-line {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-line span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.84rem;
    background: var(--surface);
}

.entity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.section-home-services .container {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.05rem, 2.2vw, 1.8rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(197, 138, 115, 0.13), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 236, 228, 0.86));
    box-shadow: var(--shadow);
}

.section-home-services .section-header {
    max-width: 62ch;
}


.section-home-services .entity-grid-editorial.entity-carousel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(760px, 78%);
    gap: 0.92rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.1rem;
    padding-bottom: 0.24rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.section-home-services .entity-grid-editorial.entity-carousel::-webkit-scrollbar {
    display: none;
}

.section-home-services .entity-card {
    display: flex;
    flex-direction: column;
    padding: 0.9rem;
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.97), rgba(247, 236, 228, 0.84));
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card {
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    min-height: 440px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured {
    grid-column: auto;
    grid-row: auto;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-head {
    order: 2;
    margin: 0;
    height: 100%;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body {
    order: 1;
    padding: clamp(1.2rem, 2.1vw, 2.1rem);
    gap: 0.65rem;
    align-content: start;
}

.section-home-services .entity-head {
    gap: 0.62rem;
    margin-bottom: 0.72rem;
}

.section-home-services .entity-body {
    display: grid;
    gap: 0.52rem;
    height: 100%;
}

.entity-index {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.section-home-services .entity-body p {
    margin: 0;
    color: var(--muted);
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
    height: 100%;
    min-height: 440px;
    border-radius: 0;
    border: 0;
    border-left: 1px solid var(--line);
    box-shadow: none;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .entity-body h3 {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    line-height: 0.96;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .entity-body p {
    font-size: 1.06rem;
    max-width: 30ch;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
    justify-content: flex-start;
    gap: 0.52rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial .text-link {
    margin-top: 0;
    min-height: 42px;
    padding: 0.55rem 0.92rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial .text-link:hover {
    transform: translateY(-1px);
    background: var(--brand);
    color: #fff;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb::after {
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.02) 0%, rgba(92, 60, 48, 0.14) 100%);
}

.entity-actions-editorial {
    margin-top: auto;
    padding-top: 0.18rem;
}

.entity-actions-editorial .text-link {
    margin-top: 0;
    font-size: 0.89rem;
}

.entity-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 1.1rem;
}

.entity-card h2,
.entity-card h3 {
    margin-bottom: 0.35rem;
}

.entity-card h2 {
    font-size: 1.55rem;
}

.entity-meta {
    margin: 0 0 0.42rem;
    color: var(--brand);
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.entity-head {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.service-thumb {
    display: block;
    width: 100%;
    height: 168px;
    position: relative;
    isolation: isolate;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(92, 60, 48, 0.12);
}

.service-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.08) 0%, rgba(92, 60, 48, 0.34) 100%);
    transition: opacity 0.25s ease;
}

.service-thumb:hover::after {
    opacity: 0.6;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-thumb:hover img {
    transform: scale(1.045);
}

.service-price-badge {
    position: absolute;
    top: 0.58rem;
    left: 0.58rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(232, 205, 191, 0.56);
    background: rgba(92, 60, 48, 0.72);
    color: #fff8f1;
    padding: 0.2rem 0.58rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-size: 0.92rem;
    line-height: 1.2;
    color: var(--muted);
    background: rgba(247, 236, 228, 0.62);
    border-style: dashed;
    font-weight: 700;
}

.service-thumb-placeholder::after {
    display: none;
}

@media (min-width: 1181px) {
    .site-nav > ul {
        flex-wrap: nowrap;
    }
}

.entity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.65rem;
}

.entity-tags span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(247, 236, 228, 0.78);
    padding: 0.25rem 0.62rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.entity-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.inline-actions {
    margin-top: 1.2rem;
    justify-content: center;
}

.section-more {
    margin: 1.5rem 0 0;
    display: flex;
    justify-content: center;
}

.section-more .btn,
.reviews-actions .btn,
.cta-actions .btn,
.inline-actions .btn {
    min-width: 220px;
    justify-content: center;
}

.section-home-masters .container {
    border: 1px solid rgba(232, 205, 191, 0.22);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.05rem, 2.2vw, 1.8rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(232, 205, 191, 0.14), transparent 32%),
        linear-gradient(145deg, rgba(102, 66, 52, 0.72), rgba(92, 60, 48, 0.9));
}

.section-home-masters .section-header {
    max-width: 64ch;
}

.master-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.master-grid-editorial {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(132px, auto);
    grid-auto-flow: dense;
}

.master-grid-editorial .master-card {
    grid-column: span 3;
}

.master-grid-editorial .master-card-featured,
.master-grid-editorial .master-card-wide {
    grid-column: span 6;
}

.master-grid-editorial .master-card-featured {
    grid-row: span 2;
}

.master-grid-editorial .master-card-featured .master-photo {
    aspect-ratio: 16 / 11;
}

.master-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.master-photo {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.master-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.08), rgba(92, 60, 48, 0.42));
    transition: opacity 0.25s ease;
}

.master-photo:hover::after {
    opacity: 0.72;
}

.master-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.master-photo:hover img {
    transform: scale(1.04);
}

.master-body {
    padding: 0.95rem 1rem 1rem;
    display: grid;
    gap: 0.4rem;
    height: 100%;
}

.master-index {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.master-role {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    color: var(--brand);
    font-weight: 700;
}

.master-body h2,
.master-body h3 {
    margin-bottom: 0.22rem;
    font-size: 1.44rem;
}

.master-desc {
    margin: 0;
    color: var(--muted);
}

.master-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.master-meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    font-size: 0.77rem;
    color: var(--muted);
    background: rgba(247, 236, 228, 0.78);
}

.master-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    justify-content: center;
    padding-top: 0.18rem;
}

.master-actions .text-link {
    margin-top: 0;
    font-size: 0.89rem;
}

.section-home-masters .master-card {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(232, 205, 191, 0.28);
    box-shadow: 0 20px 38px rgba(92, 60, 48, 0.3);
}

.section-home-masters .master-role,
.section-home-masters .master-index {
    color: #e8cdbf;
}

.section-home-masters .master-desc {
    color: rgba(255, 248, 241, 0.84);
}

.section-home-masters .master-meta span {
    border-color: rgba(232, 205, 191, 0.3);
    color: rgba(255, 248, 241, 0.88);
    background: rgba(232, 205, 191, 0.12);
}

.section-home-masters .master-actions .text-link {
    color: #e8cdbf;
}

.section-home-masters .master-body,
.section-home-masters .master-body a {
    color: var(--light);
}

.section-home-gallery .container {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.05rem, 2.2vw, 1.8rem);
    background:
        radial-gradient(circle at 0% 100%, rgba(197, 138, 115, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 236, 228, 0.84));
    box-shadow: var(--shadow);
}

.section-home-gallery .section-header {
    max-width: 64ch;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.work-grid-editorial {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(136px, auto);
    grid-auto-flow: dense;
}

.work-grid-editorial .work-card {
    grid-column: span 4;
}

.work-grid-editorial .work-card-featured,
.work-grid-editorial .work-card-wide {
    grid-column: span 6;
}

.work-grid-editorial .work-card-featured {
    grid-row: span 2;
}

.work-grid-editorial .work-card-featured .work-photo {
    aspect-ratio: 16 / 11;
}

.work-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.work-photo {
    display: block;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.work-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.06), rgba(92, 60, 48, 0.38));
    transition: opacity 0.25s ease;
}

.work-photo:hover::after {
    opacity: 0.72;
}

.work-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.work-photo:hover img {
    transform: scale(1.04);
}

.work-photo-badge {
    position: absolute;
    top: 0.58rem;
    left: 0.58rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(232, 205, 191, 0.56);
    background: rgba(92, 60, 48, 0.72);
    color: #fff8f1;
    padding: 0.2rem 0.58rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.work-body {
    padding: 0.95rem 1rem 1rem;
    display: grid;
    gap: 0.44rem;
    height: 100%;
}

.work-index {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
}

.work-body h2,
.work-body h3 {
    margin-bottom: 0.22rem;
    font-size: 1.4rem;
}

.work-body p {
    color: var(--muted);
    margin: 0;
}

.work-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    justify-content: center;
    padding-top: 0.18rem;
}

.work-actions .text-link {
    margin-top: 0;
    font-size: 0.89rem;
}

.gallery-note {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-btn {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-1px);
}

.filter-btn.is-active {
    background: linear-gradient(135deg, #c58a73, #a96d57);
    color: #fff;
    border-color: #a96d57;
}

[data-work-card].is-hidden {
    display: none;
}

.about-preview-grid,
.about-layout,
.booking-layout,
.master-single-grid {
    display: grid;
    gap: 0.95rem;
    grid-template-columns: 1.1fr 1fr;
}

.about-preview-card,
.about-facts article {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 1rem;
}

.about-points {
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.about-points li {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(247, 236, 228, 0.72);
    color: var(--muted);
    padding: 0.62rem 0.75rem;
}

.about-facts {
    display: grid;
    gap: 0.75rem;
}

.fact-num {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
}

.fact-label {
    margin: 0.25rem 0 0;
    color: var(--muted);
}

.cta-panel {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(247, 236, 228, 0.82), rgba(255, 255, 255, 0.94));
    box-shadow: var(--shadow);
    padding: 1.3rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    margin-top: 0.9rem;
    justify-content: center;
}

.cta-panel > .btn,
.about-preview-text > .btn {
    display: inline-flex;
    margin-inline: auto;
}

.prose-box {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 1.2rem;
}

.prose-box > *:last-child {
    margin-bottom: 0;
}

.prose-box ul {
    padding-left: 1.1rem;
}

.about-cert-grid {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-cert-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: block;
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(119, 78, 62, 0.08);
}

.about-cert-card img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #f6f8fa;
    display: block;
}

.about-cert-card span {
    display: block;
    padding: 0.58rem 0.66rem 0.7rem;
    font-size: 0.84rem;
    color: var(--muted);
}

.about-cert-card:hover {
    transform: translateY(-1px);
}

.reviews-actions {
    margin-top: 1.05rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    justify-content: center;
}

.review-stars {
    margin: 0 0 0.45rem;
    color: #c58a73;
    letter-spacing: 0.08em;
}

.review-source {
    margin: 0.48rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.booking-layout {
    align-items: start;
}

.booking-prose {
    display: grid;
    gap: 1rem;
}

.contact-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.master-single-photo {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--surface);
}

.master-single-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.master-single-grid {
    align-items: start;
}

.master-skill-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.master-skill-list li {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(247, 236, 228, 0.7);
    padding: 0.5rem 0.66rem;
    color: var(--muted);
}

.master-work-grid {
    margin-top: 0.35rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.master-work-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    color: var(--ink);
}

.master-work-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.master-work-card span {
    display: block;
    padding: 0.48rem 0.6rem 0.56rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
}

.master-work-more {
    margin: 0.75rem 0 0;
}

.page-hero .container,
.section .container {
    position: relative;
}

@media (max-width: 1140px) {
    .master-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .entity-grid,
    .master-grid,
    .work-grid,
    .about-preview-grid,
    .about-layout,
    .booking-layout,
    .master-single-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .entity-grid,
    .master-grid,
    .work-grid,
    .about-preview-grid,
    .about-layout,
    .booking-layout,
    .master-single-grid {
        grid-template-columns: 1fr;
    }

    .master-grid {
        display: grid;
    }

    .master-work-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions,
    .reviews-actions,
    .gallery-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .section-more {
        display: flex;
        justify-content: center;
    }

    .about-cert-grid {
        grid-template-columns: 1fr;
    }

    .about-cert-card img {
        height: 320px;
    }

    .section-more .btn,
    .reviews-actions .btn,
    .cta-actions .btn,
    .inline-actions .btn,
    .contact-links .btn,
    .contact-quick .btn {
        width: 100%;
        min-width: 0;
    }

    .filter-btn {
        width: 100%;
    }

    .hero-line {
        gap: 0.38rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel {
        grid-auto-columns: minmax(420px, 86%);
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        min-height: 390px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
        min-height: 390px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .entity-body h3 {
        font-size: clamp(1.58rem, 4.2vw, 2.1rem);
    }
}

@media (max-width: 680px) {
    .section-home-services .entity-grid-editorial.entity-carousel {
        grid-auto-columns: minmax(300px, 92%);
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-head {
        order: 1;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-body {
        order: 2;
        padding: 1rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
        min-height: 210px;
        height: 210px;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
        justify-content: center;
    }
}

/* Final fixes: service slider + specialists */
.section-home-services .entity-grid-editorial.entity-carousel {
    grid-auto-columns: 100%;
    gap: 0;
    padding-bottom: 0;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card {
    min-height: 460px;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    border-radius: 24px;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-head {
    order: 2;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body {
    order: 1;
    padding: 1.45rem 1.55rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb,
.section-home-services .entity-grid-editorial.entity-carousel .service-thumb {
    min-height: 460px;
    height: 100%;
    border-radius: 0;
    border: 0;
    border-left: 1px solid var(--line);
    box-shadow: none;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .entity-body h3 {
    font-size: clamp(2rem, 2.6vw, 2.7rem);
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .entity-body p {
    max-width: 30ch;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
    justify-content: flex-start;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial .text-link {
    min-height: 42px;
    padding: 0.52rem 0.88rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.section-home-masters {
    background: transparent;
    color: var(--ink);
}

.section-home-masters .container {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.section-home-masters .section-header {
    margin-bottom: 1.35rem;
}

.section-home-masters .master-grid-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 1.15rem;
}

.section-home-masters .master-grid-editorial .master-card,
.section-home-masters .master-grid-editorial .master-card-featured,
.section-home-masters .master-grid-editorial .master-card-wide {
    grid-column: auto;
    grid-row: auto;
}

.section-home-masters .master-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.section-home-masters .master-photo {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #f8eee6;
}

.section-home-masters .master-photo::after {
    display: none;
}

.section-home-masters .master-photo img {
    transform: none;
}

.section-home-masters .master-body {
    padding: 0.78rem 0 0;
    gap: 0.28rem;
}

.section-home-masters .master-index {
    display: none;
}

.section-home-masters .master-role {
    font-size: 0.98rem;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--muted);
}

.section-home-masters .master-body h3 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    margin-bottom: 0.15rem;
}

.section-home-masters .master-desc {
    color: var(--muted);
}

.section-home-masters .master-meta {
    margin-top: 0.2rem;
    display: grid;
    gap: 0.2rem;
}

.section-home-masters .master-meta span {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.section-home-masters .master-meta span:nth-child(1)::before,
.section-home-masters .master-meta span:nth-child(2)::before {
    color: var(--ink);
    font-weight: 600;
}

.section-home-masters .master-meta span:nth-child(1)::before {
    content: 'Опыт работы: ';
}

.section-home-masters .master-meta span:nth-child(2)::before {
    content: 'Направление: ';
}

.section-home-masters .master-actions {
    justify-content: flex-start;
    padding-top: 0.32rem;
}

.section-home-masters .master-actions .text-link {
    margin-top: 0;
    min-height: 40px;
    padding: 0.48rem 0.86rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-dark);
}

.section-home-masters .master-actions .text-link:hover {
    background: var(--brand);
    color: #fff;
}

@media (max-width: 1180px) {
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        min-height: 420px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb,
    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb {
        min-height: 420px;
    }

    .section-home-masters .master-grid-editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-head {
        order: 1;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-body {
        order: 2;
        padding: 1rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb,
    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb {
        min-height: 240px;
        height: 240px;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 760px) {
    .section-home-masters .master-grid-editorial {
        grid-template-columns: 1fr;
    }

    .section-home-masters .master-actions {
        justify-content: center;
    }
}

/* Reference-style final pass */
.container {
    width: min(1720px, 96vw);
}

.site-header {
    background: rgba(255, 255, 255, 0.98);
}

.hero {
    padding: 0.8rem 0 2rem;
}

.hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
    grid-template-areas: 'main visual';
    gap: 0;
    border: 1px solid #e2c4b2;
    border-radius: 28px;
    overflow: hidden;
    background: #f1ddd1;
}

.hero-main {
    border: 0;
    box-shadow: none;
    background: #f1ddd1;
    color: #5d463b;
    min-height: 560px;
    justify-content: center;
    gap: 1.1rem;
}

.hero-main::before,
.hero-main::after,
.hero-visual-note,
.hero-tags,
.hero-proof,
.hero-panel {
    display: none;
}

.hero-main .eyebrow {
    color: #7b6256;
    margin-bottom: 0.4rem;
}

.hero-main h1 {
    max-width: 14ch;
    color: #5d463b;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.04;
    font-size: clamp(2.2rem, 4.2vw, 4.45rem);
}

.hero-lead {
    color: #7b6256;
    font-size: clamp(1.06rem, 1.35vw, 1.45rem);
    max-width: 34ch;
}

.hero-actions {
    justify-content: flex-start;
    margin-top: 0.35rem;
}

.hero-actions .btn-ghost {
    display: none;
}

.hero-visual {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 560px;
    background: #f1ddd1;
}

.hero-visual::before {
    content: '';
    position: absolute;
    left: -95px;
    top: 0;
    bottom: 0;
    width: 192px;
    border-radius: 0 98px 98px 0;
    background: #f1ddd1;
    z-index: 2;
}

.hero-visual::after {
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.02), rgba(92, 60, 48, 0.2));
}

.hero-visual-media img {
    min-height: 560px;
}

.metrics {
    padding-bottom: 0.85rem;
}

.metric-grid {
    border: 1px solid #e2c4b2;
    border-radius: 22px;
    background: #f3e4d9;
    padding: 0.72rem;
}

.metric-item {
    background: transparent;
    border: 0;
}

.section-home-services {
    padding-top: 2.1rem;
}

.section-home-services .container {
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 6.15rem;
}

.section-home-services .section-head-row {
    margin-bottom: 1rem;
}

.section-home-services .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    letter-spacing: 0.01em;
}

.section-home-services .section-more {
    position: absolute;
    right: 8.9rem;
    top: 0.3rem;
    margin: 0;
}

.section-home-services .section-more .btn {
    min-height: 56px;
    border: 2px solid var(--brand);
    background: #fff;
    color: #7b6256;
    box-shadow: none;
}

.section-home-services .section-head-row .section-carousel-controls {
    position: absolute;
    right: 1rem;
    bottom: 0.85rem;
    width: auto;
    display: inline-flex;
    z-index: 8;
}

.section-home-services .carousel-btn {
    width: 56px;
    height: 56px;
    border: 2px solid var(--brand);
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand);
    font-size: 2rem;
}

.section-home-services .entity-grid-editorial.entity-carousel {
    display: flex !important;
    gap: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.section-home-services .entity-grid-editorial.entity-carousel::-webkit-scrollbar {
    display: none;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card {
    flex: 0 0 min(760px, 44%);
    max-width: min(760px, 44%);
    min-height: 468px;
    display: grid;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    border: 1px solid #e2c4b2;
    border-radius: 24px;
    box-shadow: none;
    overflow: hidden;
    background: #f3e5da;
    padding: 0;
    scroll-snap-align: start;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-head {
    order: 2;
    margin: 0;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
    width: 100%;
    height: 100%;
    min-height: 468px;
    border: 0;
    border-left: 1px solid #e2c4b2;
    border-radius: 0;
    box-shadow: none;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb::after {
    opacity: 0.16;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body {
    order: 1;
    position: relative;
    z-index: 2;
    background: #f3e5da;
    padding: 1.45rem 1.4rem 1.22rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -66px;
    width: 132px;
    border-radius: 0 88px 88px 0;
    background: #f3e5da;
    border-top: 1px solid #e2c4b2;
    border-right: 1px solid #e2c4b2;
    border-bottom: 1px solid #e2c4b2;
    z-index: -1;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-index {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.25rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 2.8vw, 2.95rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body p {
    color: #7b6256;
    font-size: 1.03rem;
    max-width: 28ch;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-tags span {
    border-radius: 999px;
    border: 1px solid #d9b8a6;
    background: #f8eee7;
    color: #7b6256;
    padding: 0.28rem 0.64rem;
    font-size: 0.87rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 0.3rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial .text-link {
    display: none;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-book-btn {
    min-width: 214px;
    min-height: 58px;
    border: 2px solid var(--brand);
    border-radius: 999px;
    background: #fff;
    color: #7b6256;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.22em;
    font-size: 0.96rem;
    font-weight: 500;
    text-transform: uppercase;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-book-btn:hover {
    background: var(--brand);
    color: #fff;
}

.section-home-masters {
    background: transparent;
    color: var(--ink);
}

.section-home-masters .container {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.section-home-masters .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.section-home-masters .section-header h2::after {
    display: none;
}

.section-home-masters .master-grid-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.section-home-masters .master-grid-editorial .master-card,
.section-home-masters .master-grid-editorial .master-card-featured,
.section-home-masters .master-grid-editorial .master-card-wide {
    grid-column: auto;
    grid-row: auto;
}

.section-home-masters .master-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.section-home-masters .master-photo {
    border: 0;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    background: #f7ece4;
}

.section-home-masters .master-photo::after {
    display: none;
}

.section-home-masters .master-actions {
    display: none;
}

.floating-booking {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 48;
    width: 108px;
    height: 108px;
    border-radius: 999px;
    border: 3px solid #fff;
    outline: 2px solid #c58a73;
    background: #c58a73;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    line-height: 1.22;
    isolation: isolate;
}

.floating-booking::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    border: 2px solid rgba(197, 138, 115, 0.8);
    z-index: -1;
}

.floating-booking::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    border: 2px solid rgba(197, 138, 115, 0.64);
    animation: booking-wave 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes booking-wave {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.34);
        opacity: 0;
    }
}

.scroll-top {
    right: 8.2rem;
    bottom: 1.5rem;
}

@media (max-width: 1480px) {
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: min(700px, 52%);
        max-width: min(700px, 52%);
    }
}

@media (max-width: 1180px) {
    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            'main'
            'visual';
    }

    .hero-main,
    .hero-visual,
    .hero-visual-media img {
        min-height: 420px;
    }

    .hero-visual::before {
        display: none;
    }

    .section-home-services .section-more {
        right: 8.6rem;
        top: -0.05rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: min(640px, 74%);
        max-width: min(640px, 74%);
        min-height: 430px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
        min-height: 430px;
    }

    .section-home-masters .master-grid-editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .section-home-services .container {
        padding-bottom: 5.1rem;
    }

    .section-home-services .section-more {
        position: static;
        margin-top: 1rem;
    }

    .section-home-services .section-head-row .section-carousel-controls {
        right: 0.8rem;
        bottom: 0.75rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: 88%;
        max-width: 88%;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-head {
        order: 1;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-body {
        order: 2;
        padding: 1rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-body::after {
        display: none;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
        min-height: 250px;
        height: 250px;
        border-left: 0;
        border-bottom: 1px solid #e2c4b2;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
        justify-content: center;
    }

    .floating-booking {
        width: 98px;
        height: 98px;
        bottom: 5.2rem;
    }

    .scroll-top {
        right: 1rem;
        bottom: 11rem;
    }
}

@media (max-width: 680px) {
    .section-home-services .section-carousel-controls .carousel-btn {
        width: 50px;
        height: 50px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: 92%;
        max-width: 92%;
    }

    .section-home-masters .master-grid-editorial {
        grid-template-columns: 1fr;
    }

    .floating-booking {
        width: 92px;
        height: 92px;
        right: 0.7rem;
    }
}

/* Visual polish pass: header, hero, services, floating cta */
@media (min-width: 1181px) {
    .site-header {
        border-bottom: 1px solid #dfc1b0;
        background: rgba(255, 255, 255, 0.93);
        box-shadow: 0 10px 26px rgba(119, 78, 62, 0.14);
        backdrop-filter: blur(14px);
    }

    .header-top {
        min-height: 82px;
        padding-inline: 0.75rem;
    }

    .header-bottom {
        border-top: 1px solid #e7cab9;
        background: linear-gradient(180deg, rgba(237, 246, 252, 0.94), rgba(237, 246, 252, 0.75));
    }

    .site-nav > ul {
        gap: 0.2rem 0.62rem;
    }

    .site-nav > ul > li > a {
        padding: 0.62rem 0.92rem;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #6c4b3d;
    }

    .site-nav > ul > li > a:hover,
    .menu-item-has-panel:hover > .menu-link-has-panel,
    .menu-item-has-panel:focus-within > .menu-link-has-panel {
        background: #f3e4d9;
        color: #5c3c30;
    }

    .menu-panel {
        width: min(1440px, 95vw);
        border: 1px solid #e2c4b2;
        border-radius: 0 0 28px 28px;
        box-shadow: 0 22px 46px rgba(119, 78, 62, 0.16);
    }

    .menu-panel-inner {
        min-height: 420px;
    }

    .menu-panel-cats {
        padding: 1.35rem 1.06rem;
    }

    .menu-panel-content {
        padding: 1.35rem 1.55rem 1.6rem;
    }

    .menu-panel-group h4 {
        font-family: 'Manrope', sans-serif;
        font-size: clamp(1.35rem, 1.8vw, 1.78rem);
        font-weight: 700;
        letter-spacing: 0.02em;
    }
}

.container {
    width: min(1680px, 95vw);
}

.hero {
    padding: 1rem 0 2.25rem;
}

.hero-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    border-radius: 32px;
}

.hero-main {
    min-height: 600px;
    padding: clamp(1.7rem, 3vw, 3rem);
}

.hero-main h1 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 4.45vw, 4.8rem);
    line-height: 1.02;
}

.hero-lead {
    max-width: 35ch;
    font-size: clamp(1.05rem, 1.35vw, 1.5rem);
}

.hero-actions .btn-primary {
    min-height: 58px;
    padding-inline: 2rem;
    border: 2px solid var(--brand);
    background: #fff;
    color: #7b6256;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-actions .btn-primary:hover {
    background: var(--brand);
    color: #fff;
}

.hero-visual,
.hero-visual-media img {
    min-height: 600px;
}

.hero-visual::before {
    left: -104px;
    width: 208px;
    border-radius: 0 104px 104px 0;
}

.metric-grid {
    border-radius: 24px;
    padding: 0.8rem;
    gap: 0.58rem;
}

.metric-item {
    border-radius: 16px;
    padding: 0.9rem 0.58rem;
}

.section-home-services {
    padding-top: 2.45rem;
}

.section-home-services .container {
    padding-bottom: 6.45rem;
}

.section-home-services .section-head-row {
    margin-bottom: 1.3rem;
}

.section-home-services .section-header h2 {
    letter-spacing: 0.015em;
}

.section-home-services .section-more {
    right: 9.2rem;
    top: 0;
}

.section-home-services .section-more .btn {
    min-height: 58px;
    padding-inline: 1.95rem;
    letter-spacing: 0.06em;
}

.section-home-services .section-head-row .section-carousel-controls {
    right: 0.5rem;
    bottom: 0.35rem;
    gap: 0.46rem;
}

.section-home-services .carousel-btn {
    width: 58px;
    height: 58px;
    border: 2px solid #c58a73;
    background: #fff;
    color: #8f6652;
    box-shadow: 0 14px 24px rgba(30, 87, 120, 0.16);
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.section-home-services .carousel-btn:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.section-home-services .carousel-btn:disabled {
    opacity: 0.38;
    transform: none;
    box-shadow: none;
}

.section-home-services .entity-grid-editorial.entity-carousel {
    gap: 1.18rem !important;
    padding: 0.08rem 0 0.62rem !important;
    scroll-padding-inline: 0.3rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card {
    flex: 0 0 min(810px, 45%);
    max-width: min(810px, 45%);
    min-height: 498px;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    border: 1px solid #e2c4b2;
    border-radius: 28px;
    background: #f3e5da;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
    min-height: 498px;
    border-left: 1px solid #e2c4b2;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb::after {
    background: linear-gradient(180deg, rgba(92, 60, 48, 0.03), rgba(92, 60, 48, 0.2));
    opacity: 0.14;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body {
    padding: 1.68rem 1.55rem 1.35rem;
    background: #f3e5da;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body::after {
    right: -69px;
    width: 138px;
    border-radius: 0 92px 92px 0;
    background: #f3e5da;
    border-color: #e2c4b2;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-index {
    letter-spacing: 0.2em;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body h3 {
    margin: 0;
    font-size: clamp(2.2rem, 2.85vw, 3.05rem);
    line-height: 0.95;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body p {
    margin: 0;
    max-width: 30ch;
    font-size: 1.04rem;
    color: #7b6256;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-tags {
    margin-top: 0.15rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
    margin-top: auto;
    padding-top: 0.55rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-book-btn {
    min-width: 224px;
    min-height: 58px;
    letter-spacing: 0.18em;
}

.floating-booking {
    right: 1.1rem;
    bottom: 1.15rem;
    width: 110px;
    height: 110px;
    border: 3px solid #fff;
    background: linear-gradient(160deg, #cf9078, #b7755f);
    box-shadow: 0 18px 34px rgba(171, 112, 89, 0.34);
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-booking:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 38px rgba(171, 112, 89, 0.4);
}

.floating-booking::before,
.floating-booking::after {
    inset: -8px;
    border: 2px solid rgba(197, 138, 115, 0.62);
}

.floating-booking::before {
    animation: booking-wave 2.6s ease-out infinite;
}

.floating-booking::after {
    animation: booking-wave 2.6s ease-out 1.3s infinite;
}

@keyframes booking-wave {
    0% {
        transform: scale(0.96);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.42);
        opacity: 0;
    }
}

@media (max-width: 1480px) {
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: min(760px, 52%);
        max-width: min(760px, 52%);
    }
}

@media (max-width: 1180px) {
    .hero {
        padding: 0.85rem 0 1.9rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .hero-main,
    .hero-visual,
    .hero-visual-media img {
        min-height: 450px;
    }

    .hero-visual::before {
        display: none;
    }

    .hero-main h1 {
        max-width: 12ch;
        font-size: clamp(2rem, 6vw, 3.4rem);
    }

    .section-home-services .section-more {
        right: 8.1rem;
        top: -0.05rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: min(660px, 74%);
        max-width: min(660px, 74%);
        min-height: 432px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
        min-height: 432px;
    }
}

@media (max-width: 980px) {
    .section-home-services .container {
        padding-bottom: 5.35rem;
    }

    .section-home-services .section-more {
        position: static;
        margin-top: 1rem;
    }

    .section-home-services .section-head-row .section-carousel-controls {
        right: 0.35rem;
        bottom: 0.25rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: 88%;
        max-width: 88%;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-head {
        order: 1;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-body {
        order: 2;
        padding: 1.2rem 1.05rem;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-body::after {
        display: none;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
    .section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
        min-height: 252px;
        height: 252px;
        border-left: 0;
        border-bottom: 1px solid #e2c4b2;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-actions-editorial {
        justify-content: center;
    }

    .floating-booking {
        width: 96px;
        height: 96px;
        bottom: 5.4rem;
    }

    .scroll-top {
        right: 1rem;
        bottom: 11rem;
    }
}

@media (max-width: 680px) {
    .hero-main {
        min-height: 420px;
    }

    .section-home-services .section-carousel-controls .carousel-btn {
        width: 48px;
        height: 48px;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .entity-card {
        flex-basis: 92%;
        max-width: 92%;
    }

    .floating-booking {
        width: 88px;
        height: 88px;
        right: 0.65rem;
        bottom: 5.2rem;
        font-size: 0.8rem;
    }
}

/* Requested slider tweaks: fixed booking button + big price + no duration */
.section-home-services .section-head-row {
    align-items: flex-end;
    gap: 1rem;
}

.section-home-services .section-home-services-tools {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    position: relative;
    z-index: 12;
}

.section-home-services .section-head-row .section-carousel-controls {
    position: static;
    right: auto;
    bottom: auto;
    width: auto;
    z-index: auto;
}

.section-home-services .services-fixed-booking {
    min-width: 228px;
    min-height: 58px;
    padding: 0.45rem 1.6rem;
    border: 2px solid #c58a73;
    border-radius: 999px;
    background: #fff;
    color: #7b6256;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 12px 22px rgba(30, 87, 120, 0.15);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.section-home-services .services-fixed-booking:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
}

.section-home-services .entity-grid-editorial.entity-carousel .service-card-price {
    margin: 0.12rem 0 0.2rem;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.35rem, 4vw, 3.65rem);
    line-height: 0.96;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #7b6256;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-card-excerpt {
    margin: 0;
    max-width: 28ch;
    font-size: 1.02rem;
    color: #7b6256;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-tags {
    margin-top: 0.18rem;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-tags span {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    color: #7b6256;
    font-size: 1.02rem;
    letter-spacing: 0;
}

@media (min-width: 981px) {
    .section-home-services .entity-grid-editorial.entity-carousel .service-book-btn {
        display: none;
    }
}

@media (max-width: 980px) {
    .section-home-services .section-home-services-tools {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .section-home-services .services-fixed-booking {
        min-width: 0;
        width: auto;
        max-width: 250px;
        min-height: 52px;
        font-size: 0.82rem;
        letter-spacing: 0.16em;
        padding-inline: 1.1rem;
    }
}

@media (max-width: 680px) {
    .section-home-services .services-fixed-booking {
        max-width: 220px;
        min-height: 48px;
        font-size: 0.76rem;
        letter-spacing: 0.13em;
    }

    .section-home-services .entity-grid-editorial.entity-carousel .service-card-price {
        font-size: clamp(2rem, 7.4vw, 2.7rem);
    }

    .section-home-services .entity-grid-editorial.entity-carousel .service-card-excerpt,
    .section-home-services .entity-grid-editorial.entity-carousel .entity-tags span {
        font-size: 0.94rem;
    }
}

/* Controls match (reference screenshot 2) */
.section-home-services .section-head-row {
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 0.7rem;
}

.section-home-services .section-head-row .section-header {
    flex: 1 1 100%;
    max-width: 76ch;
    margin-bottom: 0;
}

.section-home-services .section-home-services-tools {
    margin-left: 0;
    gap: 0.35rem;
}

.section-home-services .services-fixed-booking {
    min-width: 218px;
    min-height: 56px;
    padding: 0.45rem 1.45rem;
    border: 2px solid #c58a73;
    border-radius: 999px;
    background: #fff;
    color: #7b6256;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: none;
    box-shadow: none;
}

.section-home-services .services-fixed-booking:hover {
    background: #f8ece4;
    color: #7b6256;
    transform: none;
}

.section-home-services .carousel-btn {
    width: 56px;
    height: 56px;
    border: 2px solid #c58a73;
    background: #fff;
    color: #c58a73;
    font-size: 2rem;
    box-shadow: none;
}

.section-home-services .carousel-btn:hover {
    background: #f8ece4;
    border-color: #c58a73;
    color: #c58a73;
    transform: none;
}

@media (max-width: 980px) {
    .section-home-services .section-head-row .section-header {
        flex: 1 1 auto;
    }

    .section-home-services .section-home-services-tools {
        width: 100%;
        justify-content: space-between;
    }
}

/* Remove sequence numbers and unify masters cards */
.entity-index,
.master-index,
.work-index {
    display: none !important;
}

.section-home-masters .master-grid-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.12rem;
    align-items: stretch;
}

.section-home-masters .master-grid-editorial .master-card,
.section-home-masters .master-grid-editorial .master-card-featured,
.section-home-masters .master-grid-editorial .master-card-wide {
    grid-column: auto;
    grid-row: auto;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.section-home-masters .master-grid-editorial .master-photo,
.section-home-masters .master-grid-editorial .master-card-featured .master-photo,
.section-home-masters .master-grid-editorial .master-card-wide .master-photo {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    border: 1px solid #e2c4b2;
    background: #f8ede6;
}

.section-home-masters .master-photo::after {
    display: none;
}

.section-home-masters .master-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    height: auto;
    padding: 0.72rem 0 0;
}

.section-home-masters .master-body,
.section-home-masters .master-body a {
    color: #604436;
}

.section-home-masters .master-role {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #7b6256;
}

.section-home-masters .master-body h3 {
    margin: 0;
    font-size: clamp(1.62rem, 2.1vw, 2rem);
    line-height: 1.03;
}

.section-home-masters .master-desc,
.section-home-masters .master-meta,
.section-home-masters .master-actions {
    display: none;
}

/* Services controls: move under slider */
.section-home-services .container {
    position: relative;
    padding-bottom: 1.6rem;
}

.section-home-services .services-controls-row {
    margin: -62px auto 0;
    min-height: 58px;
    position: relative;
    width: min(1180px, 88%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    z-index: 70;
}

.section-home-services .services-carousel-booking {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    min-width: 246px;
    min-height: 56px;
    padding: 0.45rem 1.65rem;
    border: 2px solid #c58a73;
    border-radius: 999px;
    background: #fff;
    color: #7b6256;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: none;
    white-space: nowrap;
}

.section-home-services .services-carousel-booking:hover {
    background: #f8ece4;
    color: #7b6256;
}

.section-home-services .services-carousel-controls {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}

.section-home-services .services-controls-row .section-carousel-controls {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    z-index: auto !important;
}

.section-home-services .entity-grid-editorial.entity-carousel {
    padding-bottom: 0.62rem !important;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card {
    overflow: visible;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-book-btn {
    display: none !important;
}

@media (max-width: 980px) {
    .section-home-services .services-controls-row {
        position: static;
        width: auto;
        transform: none;
        min-height: 0;
        margin-top: 0.62rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .section-home-services .services-carousel-booking {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        max-width: 340px;
        min-height: 50px;
        letter-spacing: 0.16em;
    }

    .section-home-services .services-carousel-controls {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        margin-left: 0;
    }

    .section-home-services .entity-grid-editorial.entity-carousel {
        padding-bottom: 1rem !important;
    }
}

/* Services archive: price style */
.page-services-price .page-hero-price .container {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.25rem, 2.6vw, 2.2rem);
    background:
        radial-gradient(circle at 94% 18%, rgba(197, 138, 115, 0.2), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 228, 0.88));
    box-shadow: var(--shadow);
}

.page-services-price .price-hero-actions {
    margin-top: 1rem;
}

.page-services-price .section-price-list .container,
.page-services-price .section-price-map .container {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.05rem, 2.1vw, 1.7rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 254, 0.92));
    box-shadow: var(--shadow);
}

.page-services-price .price-head-row {
    align-items: flex-end;
    margin-bottom: 1rem;
}

.page-services-price .price-head-row .section-header {
    margin-bottom: 0;
}

.page-services-price .price-accordion {
    display: grid;
    gap: 0.7rem;
}

.page-services-price .price-group {
    border: 1px solid #e5c6b4;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.page-services-price .price-group summary {
    list-style: none;
    cursor: pointer;
    margin: 0;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    background: #f4e2d7;
    color: #5c3c30;
    font-size: 1.95rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.page-services-price .price-group summary::-webkit-details-marker {
    display: none;
}

.page-services-price .price-group summary::after {
    content: '>';
    font-family: 'Manrope', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1;
    width: 34px;
    height: 34px;
    border: 1px solid #d6a28b;
    border-radius: 999px;
    background: linear-gradient(145deg, #fff7f1, #f5e6dc);
    color: #9f6650;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.page-services-price .price-group[open] summary::after {
    transform: rotate(90deg);
    background: linear-gradient(145deg, #f9ede6, #f2dfd2);
    border-color: #c58a73;
    color: #8d5945;
}

.page-services-price .price-group summary:hover::after {
    background: linear-gradient(145deg, #ffffff, #f8ebe3);
    border-color: #c58a73;
}

.page-services-price .price-group-body {
    padding: 0;
}

.page-services-price .price-table {
    width: 100%;
    border-collapse: collapse;
}

.page-services-price .price-table th,
.page-services-price .price-table td {
    text-align: left;
    padding: 0.72rem 1rem;
    border-top: 1px solid #edd6c8;
}

.page-services-price .price-table thead th {
    font-size: 1.03rem;
    font-weight: 700;
    color: #183c57;
    background: rgba(217, 237, 248, 0.34);
}

.page-services-price .price-table tbody tr:nth-child(2n) td {
    background: rgba(217, 237, 248, 0.28);
}

.page-services-price .price-col-name {
    width: 62%;
}

.page-services-price .price-col-name a {
    color: #1d3f5b;
    text-decoration: none;
}

.page-services-price .price-col-value,
.page-services-price .price-col-duration {
    white-space: nowrap;
}

.page-services-price .price-map-embed {
    border: 1px solid #e5c6b4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff8f1;
}

.page-services-price .price-map-embed iframe {
    display: block;
    width: 100%;
    height: min(58vh, 560px);
    border: 0;
    filter: none !important;
}

.page-services-price .price-map-actions {
    margin: 1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.page-services-price iframe[src*='yandex'],
.page-services-price iframe[src*='map-widget'] {
    filter: none !important;
}

@media (max-width: 900px) {
    .page-services-price .price-group summary {
        font-size: 1.56rem;
    }

    .page-services-price .price-table th,
    .page-services-price .price-table td {
        padding: 0.62rem 0.72rem;
        font-size: 0.94rem;
    }
}

/* Home gallery as auto slider (like services) */
.section-home-gallery .section-head-row-gallery {
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.section-home-gallery .section-head-row-gallery .section-header {
    margin-bottom: 0;
}

.section-home-gallery .section-carousel-controls-gallery {
    margin-left: auto;
}

.section-home-gallery .work-grid-editorial.work-carousel {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.section-home-gallery .work-grid-editorial.work-carousel::-webkit-scrollbar {
    display: none;
}

.section-home-gallery .work-grid-editorial.work-carousel .work-card,
.section-home-gallery .work-grid-editorial.work-carousel .work-card-featured,
.section-home-gallery .work-grid-editorial.work-carousel .work-card-wide {
    flex: 0 0 min(820px, 47%);
    max-width: min(820px, 47%);
    min-height: 430px;
    scroll-snap-align: start;
    border: 1px solid #e2c4b2;
    border-radius: 20px;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    display: grid;
    grid-template-rows: 300px auto;
}

.section-home-gallery .work-grid-editorial.work-carousel .work-photo,
.section-home-gallery .work-grid-editorial.work-carousel .work-card-featured .work-photo {
    aspect-ratio: auto;
    height: 100%;
}

.section-home-gallery .work-grid-editorial.work-carousel .work-body {
    padding: 0.95rem 1rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: auto;
}

.section-home-gallery .work-grid-editorial.work-carousel .work-body h3 {
    margin: 0;
    font-size: clamp(1.52rem, 2.2vw, 2rem);
    line-height: 1.02;
}

.section-home-gallery .work-grid-editorial.work-carousel .work-body p {
    margin: 0;
}

.section-home-gallery .work-grid-editorial.work-carousel .work-actions {
    margin-top: auto;
    justify-content: flex-start;
}

@media (max-width: 1400px) {
    .section-home-gallery .work-grid-editorial.work-carousel .work-card,
    .section-home-gallery .work-grid-editorial.work-carousel .work-card-featured,
    .section-home-gallery .work-grid-editorial.work-carousel .work-card-wide {
        flex-basis: min(760px, 54%);
        max-width: min(760px, 54%);
    }
}

@media (max-width: 980px) {
    .section-home-gallery .section-head-row-gallery {
        align-items: stretch;
    }

    .section-home-gallery .section-carousel-controls-gallery {
        width: 100%;
        justify-content: flex-end;
        margin-left: 0;
    }

    .section-home-gallery .work-grid-editorial.work-carousel .work-card,
    .section-home-gallery .work-grid-editorial.work-carousel .work-card-featured,
    .section-home-gallery .work-grid-editorial.work-carousel .work-card-wide {
        flex-basis: 86%;
        max-width: 86%;
        min-height: auto;
        grid-template-rows: 250px auto;
    }
}

@media (max-width: 680px) {
    .section-home-gallery .work-grid-editorial.work-carousel .work-card,
    .section-home-gallery .work-grid-editorial.work-carousel .work-card-featured,
    .section-home-gallery .work-grid-editorial.work-carousel .work-card-wide {
        flex-basis: 92%;
        max-width: 92%;
        grid-template-rows: 220px auto;
    }
}

/* Promotions page */
.page-promotions .promotions-placeholder {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 248, 253, 0.9));
    box-shadow: var(--shadow);
    padding: clamp(1.1rem, 2.4vw, 2rem);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.page-promotions .promotions-copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-promotions .promotions-copy h2 {
    margin: 0;
}

.page-promotions .promotions-copy p {
    margin: 0;
    color: var(--muted);
    max-width: 52ch;
}

.page-promotions .promotions-art {
    border-radius: 22px;
    border: 1px solid #e2c4b2;
    background:
        radial-gradient(circle at 16% 22%, rgba(197, 138, 115, 0.45), transparent 35%),
        radial-gradient(circle at 86% 80%, rgba(214, 162, 139, 0.35), transparent 40%),
        linear-gradient(150deg, #f8ece4, #f2dfd2 62%, #e9cfbf);
    min-height: 240px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
}

.page-promotions .promotions-art::before {
    content: '';
    position: absolute;
    inset: 12% 8%;
    border-radius: 24px;
    border: 1px dashed rgba(169, 109, 87, 0.34);
}

.page-promotions .promo-card {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid #dbb39f;
    background: rgba(255, 255, 255, 0.9);
    min-width: 220px;
    min-height: 140px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.page-promotions .promo-label {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7b6256;
}

.page-promotions .promo-value {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    line-height: 0.95;
    color: #765648;
}

/* Final floating booking button tuning */
.floating-booking {
    width: 88px;
    height: 88px;
    right: 0.8rem;
    bottom: 4.8rem;
    border-width: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    z-index: 38;
}

.floating-booking::before,
.floating-booking::after {
    inset: -6px;
    pointer-events: none;
}

@media (max-width: 980px) {
    .floating-booking {
        display: none;
    }

    .page-promotions .promotions-placeholder {
        grid-template-columns: 1fr;
    }

    .page-promotions .promotions-art {
        min-height: 210px;
    }

}

/* Masters cards: unified chips and single booking button */
.section-home-masters .master-meta,
.page-masters .master-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.3rem;
}

.section-home-masters .master-meta span,
.page-masters .master-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 0.9rem;
    border: 1px solid #dfc1b0;
    border-radius: 999px;
    background: #f8ece4;
    color: #7b6256;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.section-home-masters .master-meta span::before,
.page-masters .master-meta span::before {
    content: none !important;
}

.section-home-masters .master-actions,
.page-masters .entity-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 0.45rem;
}

.section-home-masters .master-actions .btn,
.page-masters .entity-actions .btn {
    min-height: 42px;
    padding: 0.56rem 1.2rem;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    box-shadow: none;
}

.section-home-masters .master-actions .btn:hover,
.page-masters .entity-actions .btn:hover {
    transform: translateY(-1px);
}

.page-masters .master-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.hide-floating-booking .floating-booking {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.94);
}

body.hide-floating-booking .floating-booking::before,
body.hide-floating-booking .floating-booking::after {
    animation-play-state: paused;
}

@media (max-width: 760px) {
    .section-home-masters .master-actions,
    .page-masters .entity-actions {
        justify-content: center;
    }
}

/* Mobile hotfix: prevent masters actions overlap */
@media (max-width: 980px) {
    .section-home-masters .master-grid-editorial,
    .page-masters .master-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .section-home-masters .master-grid-editorial .master-card,
    .section-home-masters .master-grid-editorial .master-card-featured,
    .section-home-masters .master-grid-editorial .master-card-wide,
    .page-masters .master-card {
        min-width: 0;
    }

    .section-home-masters .master-body h3,
    .page-masters .master-body h2 {
        line-height: 1.08;
    }

    .section-home-masters .master-meta,
    .page-masters .master-meta {
        display: flex !important;
        gap: 0.45rem;
    }

    .section-home-masters .master-meta span,
    .page-masters .master-meta span {
        white-space: normal;
    }

    .section-home-masters .master-actions,
    .page-masters .entity-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        justify-content: stretch;
    }

    .section-home-masters .master-actions .btn,
    .section-home-masters .master-actions .text-link,
    .page-masters .entity-actions .btn,
    .page-masters .entity-actions .text-link {
        width: 100%;
        min-height: 44px;
        margin: 0;
        justify-content: center;
    }

    .floating-booking {
        display: none !important;
    }

    .scroll-top {
        right: 0.7rem;
        bottom: 6.6rem !important;
    }
}

/* Haircut cards: show both master and client */
.section-home-services .entity-grid-editorial.entity-carousel .service-thumb img.service-photo--fit {
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(0.84) !important;
    transform-origin: center center;
    background: linear-gradient(180deg, #f8ece4, #f3e3d7);
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb:hover img.service-photo--fit {
    transform: scale(0.88) !important;
}

@media (max-width: 980px) {
    .section-home-services .entity-grid-editorial.entity-carousel .service-thumb img.service-photo--fit {
        transform: scale(0.9) !important;
    }
}

/* Spring palette + hero backdrop (10.png) */
:root {
    --bg: #fff8f1;
    --surface: #fffdfb;
    --surface-2: #f7ece4;
    --ink: #35261f;
    --muted: #7b6256;
    --brand: #c58a73;
    --brand-dark: #a96d57;
    --line: #e8cdbf;
    --dark: #5c3c30;
    --dark-2: #7b4e3f;
    --light: #fff8f1;
    --gold: #d6a28b;
    --shadow: 0 16px 36px rgba(95, 62, 47, 0.16);
}

body {
    background:
        radial-gradient(circle at 8% 5%, rgba(197, 138, 115, 0.14), transparent 44%),
        radial-gradient(circle at 92% 3%, rgba(92, 60, 48, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(255, 251, 247, 0.72), rgba(255, 248, 241, 0.98)),
        var(--bg);
}

.hero-main {
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(145deg, rgba(255, 250, 245, 0.9), rgba(244, 225, 212, 0.82)),
        url('../images/backgrounds/spring-10.png') left center / cover no-repeat !important;
    color: #3f2b23;
}

.hero-layout {
    gap: 0;
    border: 1px solid #e2c4b2;
    border-radius: 32px;
    overflow: hidden;
    border-color: #e2c4b2;
    background: #f1ddd1;
}

.hero-visual {
    background: transparent;
    margin-left: -88px;
    position: relative;
    z-index: 3;
    border-top-left-radius: 110px;
    border-bottom-left-radius: 110px;
}

.hero-visual::before {
    content: none !important;
    display: none !important;
}

.hero-main::before {
    background: rgba(225, 174, 151, 0.2);
}

.hero-main::after {
    background: rgba(190, 126, 101, 0.14);
}

.hero-main h1,
.hero-lead {
    color: #3f2b23;
}

.hero .eyebrow,
.hero-proof strong,
.hero-visual-kicker {
    color: #9f6650;
}

.hero-proof li,
.chip {
    border-color: rgba(197, 138, 115, 0.34);
    background: rgba(255, 247, 240, 0.72);
    color: #5c3c30;
}

.hero .btn-ghost,
.levels .btn-ghost {
    background: rgba(255, 247, 240, 0.74);
    border-color: rgba(197, 138, 115, 0.5);
    color: #68463a;
    backdrop-filter: none;
}

.hero-actions .btn-primary {
    border-color: #bf8268;
    background: #fff7ef;
    color: #7b4e3f;
}

.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #d6a18a, #bf8268);
    color: #fff;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-card {
    border-color: #e2c4b2;
    background: #f3e5da;
}

.section-home-services .entity-grid-editorial.entity-carousel .service-thumb,
.section-home-services .entity-grid-editorial.entity-carousel .entity-card-featured .service-thumb {
    border-left-color: #e2c4b2;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body {
    background: #f3e5da;
}

.section-home-services .entity-grid-editorial.entity-carousel .entity-body::after {
    background: #f3e5da;
    border-color: #e2c4b2;
}

.section-home-services .carousel-btn {
    border-color: #bf8268;
    color: #7d5444;
}

.section-home-services .carousel-btn:hover {
    border-color: #a96d57;
    background: #b97b62;
    color: #fff;
}

.section-home-salon .container {
    border: 1px solid #e2c4b2;
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.05rem, 2.2vw, 1.8rem);
    background:
        radial-gradient(circle at 100% 0%, rgba(197, 138, 115, 0.14), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 236, 228, 0.84));
    box-shadow: var(--shadow);
}

.section-home-salon .section-header {
    max-width: 64ch;
}

.salon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.salon-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.salon-photo {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

.salon-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.salon-photo:hover img {
    transform: scale(1.04);
}

.salon-caption {
    margin: 0;
    padding: 0.72rem 0.85rem 0.88rem;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .salon-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .salon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .salon-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 980px) {
    .hero-visual::before {
        content: none !important;
        display: none !important;
    }

    .hero-visual {
        margin-left: -64px;
        border-top-left-radius: 76px;
        border-bottom-left-radius: 76px;
    }
}
