body {
            position: relative;
            font-family: Arial, sans-serif;
            background: #fffaf6;
            color: #3d3a36;
            margin: 0;
            padding: 0;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: url('/assets/images/hair-dryer.svg');
            background-repeat: repeat;
            background-size: 520px auto;
            background-position: 80px -60px;
            opacity: 0.06;
            pointer-events: none;
            z-index: 0;
        }

        header,
        main,
        footer {
            position: relative;
            z-index: 1;
        }

        header {
            padding: 1rem 2rem 1.5rem;
            text-align: center;
            background: linear-gradient(
                135deg,
                #f2b5c4 0%,
                #a8d8d8 50%,
                #f6d186 100%
            );
            color: #3d3a36;
        }

        header p {
            margin: 0.5rem 0;
        }

        .tagline {
            margin-top: -1.25rem;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }

        main {
            max-width: 1000px;
            margin: auto;
            padding: 2rem;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
        }

        .card {
            background: #ffffffcc;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border: 2px solid #f0e3da;
            padding: 0 1.5rem;
        }

        .card:nth-child(5n+1) {
            border-top: 6px solid #f2b5c4;
        }

        .card:nth-child(5n+2) {
            border-top: 6px solid #a8d8d8;
        }

        .card:nth-child(5n+3) {
            border-top: 6px solid #b8d8b8;
        }

        .card:nth-child(5n+4) {
            border-top: 6px solid #f6d186;
        }

        .card:nth-child(5n+5) {
            border-top: 6px solid #d7b8ff;
        }

        footer {
            position: relative;
            margin-top: 4rem;
            padding: 2rem;
            text-align: center;
            background: #5d9595;
            color: #fffaf6;
            border-top: 6px solid #f2b5c4;
        }

        footer a {
            color: #ffe08a;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        footer p {
            font-weight: 500;
        }    

        .version-wrap {
            position: absolute;
            left: 0.75rem;
            bottom: 0.5rem;
            min-width: 5rem;
            min-height: 1rem;
            text-align: left;
        }

        .version {
            opacity: 0;
            transition: opacity 0.2s ease;
            font-size: 0.75rem;
            color: #ffe08a;
        }

        .version-wrap:hover .version {
            opacity: 1;
        }

        .wordmark {
            width: min(92vw, 720px);
            height: auto;
            display: block;
            margin: 0 auto 0.25rem;
        }

        @media (max-width: 600px) {
            .wordmark {
                width: 118vw;
                max-width: none;
                margin-left: 50%;
                transform: translateX(-50%);
                margin-bottom: -0.75rem;
            }

            header {
                overflow: hidden;
                padding-top: 0.75rem;
            }
        }

    .site-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .site-nav a {
        display: inline-block;
        padding: 0.55rem 1rem;
        border-radius: 999px;
        background: #fffaf6cc;
        color: #3d3a36;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .site-nav a:hover {
        background: #ffffff;
        transform: translateY(-2px);
    }

    .contact-section {
        margin-top: 3rem;
    }

    .contact-card {
        background: #ffffffcc;
        border-radius: 20px;
        border-top: 6px solid #a8d8d8;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        padding: 1.5rem;
    }

    .contact-card a {
        color: #c05c7a;
        text-decoration: none;
        font-weight: 700;
    }

    .contact-card a:hover {
        color: #8f3f58;
    }

    .map-button {
        display: inline-block;
        margin-top: 0.5rem;
        padding: 0.7rem 1.1rem;
        border: 0;
        border-radius: 999px;
        background: #a8d8d8;
        color: #3d3a36 !important;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .map-button:hover {
        background: #8fc7c7;
    }

    .map-embed {
        margin-top: 1rem;
        overflow: hidden;
        border-radius: 18px;
        border: 2px solid #f0e3da;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

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

    .contact-details {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: start;
        margin-bottom: 1.5rem;
    }

    .opening-hours {
        text-align: right;
    }

    @media (max-width: 700px) {
        .contact-details {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }

        .opening-hours {
            text-align: left;
        }
    }

    .services-intro {
        margin-top: -0.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        color: #6b625d;
    }

    .service-card {
        width: 100%;
        text-align: left;
        font: inherit;
        color: inherit;
        cursor: pointer;
    }

    .service-card:hover {
        transform: translateY(-3px);
    }

    .service-overlay {
        position: fixed;
        inset: 0;
        background: rgba(61, 58, 54, 0.45);
        display: grid;
        place-items: center;
        padding: 1rem;
        z-index: 50;
    }

    .service-overlay[hidden] {
        display: none;
    }

    .service-overlay-panel {
        position: relative;
        width: min(92vw, 560px);
        max-height: 85vh;
        overflow: auto;
        background: #fffaf6;
        border-radius: 24px;
        box-shadow: 0 18px 45px rgba(0,0,0,0.22);
        padding: 1.5rem;
        border-top: 8px solid #f2b5c4;
    }

    .service-overlay-close {
        position: absolute;
        top: 0.75rem;
        right: 0.9rem;
        border: 0;
        background: transparent;
        font-size: 2rem;
        cursor: pointer;
        color: #3d3a36;
    }

    .service-option {
        display: flex;
        gap: 0.85rem;
        align-items: flex-start;
        padding: 0.9rem 0;
        border-bottom: 1px solid #f0e3da;
        cursor: pointer;
    }

    .service-option input {
        margin-top: 0.25rem;
    }

    .map-button:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    .booking-overlay {
        position: fixed;
        inset: 0;
        background: rgba(61, 58, 54, 0.45);
        display: grid;
        place-items: center;
        padding: 1rem;
        z-index: 60;
    }

    .booking-overlay[hidden] {
        display: none;
    }

    .booking-overlay-panel {
        position: relative;
        width: min(92vw, 640px);
        max-height: 85vh;
        overflow: auto;
        background: #fffaf6;
        border-radius: 24px;
        box-shadow: 0 18px 45px rgba(0,0,0,0.22);
        padding: 1.5rem;
        border-top: 8px solid #a8d8d8;
    }

    .booking-overlay-panel h2 {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .booking-note {
        color: #6b625d;
    }

    .booking-calendar {
        margin-top: 1.5rem;
    }

    .booking-days {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    .booking-day {
        border: 0;
        border-radius: 14px;
        padding: 0.75rem 0.5rem;
        background: #ffffffcc;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        cursor: pointer;
        font-weight: 700;
    }

    .booking-day:hover {
        background: #f6d186;
    }

    .booking-times {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .booking-time {
        border: 0;
        border-radius: 999px;
        padding: 0.55rem 0.9rem;
        background: #a8d8d8;
        cursor: pointer;
        font-weight: 700;
    }

    .booking-time:hover {
        background: #f2b5c4;
    }

    .booking-time.selected,
    .booking-time.selected:hover {
        background: #f6d186;
    }

    .accent-pink {
        border-top-color: #f2b5c4 !important;
    }

    .accent-aqua {
        border-top-color: #a8d8d8 !important;
    }

    .accent-mint {
        border-top-color: #b8d8b8 !important;
    }

    .accent-yellow {
        border-top-color: #f6d186 !important;
    }

    .accent-violet {
        border-top-color: #d7b8ff !important;
    }

    .booking-day.selected {
        background: #f6d186;
    }

    .booking-nav {
        display: flex;
        justify-content: space-between;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .booking-nav button {
        border: 0;
        border-radius: 999px;
        padding: 0.55rem 1rem;
        background: #ffffffcc;
        color: #3d3a36;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .booking-nav button:hover:not(:disabled) {
        background: #f6d186;
    }

    .booking-nav button:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    .booking-customer-form {
        margin-top: 1.5rem;
        border-top: 1px solid #f0e3da;
        padding-top: 1rem;
    }

    .booking-customer-form input,
    .booking-customer-form textarea {
        width: 100%;
        box-sizing: border-box;
        border: 2px solid #f0e3da;
        border-radius: 12px;
        padding: 0.65rem;
        font: inherit;
        background: #ffffffcc;
    }

    .booking-customer-form textarea {
        resize: vertical;
    }

    .booking-field {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .booking-field label {
        margin: 0;
        font-weight: 600;
    }

    .booking-field input {
        width: 100%;
    }

    .booking-time:disabled {
        opacity: 0.35;
        cursor: not-allowed;
        background: #d8d8d8;
    }

    /* v 260603.0001 */

.header-phone {
    display: inline-block;

    margin-top: 0.75rem;

    padding: 0.8rem 1.4rem;

    border-radius: 999px;

    background: #f2b5c4;

    color: #3d3a36 !important;

    text-decoration: none;

    font-size: 1.1rem;

    font-weight: 800;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.10);

    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

.header-phone:hover {
    transform: translateY(-2px);

    background: #ec9fb4;
}

.header-phone::before {
    content: "💬 ";
}

.brochure-services {
    background: #ffffffcc;
    border-radius: 24px;
    border-top: 8px solid #f2b5c4;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 2rem;
}

.brochure-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
}

.service-price-group {
    margin-top: 2rem;
}

.service-price-group h3 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.35rem;
    color: #3d3a36;
}

.service-price-list {
    max-width: 760px;
    margin: 0 auto;
}

.service-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(240, 227, 218, 0.75);
    font-size: 1.1rem;
}

.service-price-row span:first-child {
    color: #5d7f95;
    font-weight: 700;
}

.service-price-row span:last-child {
    color: #6b625d;
    font-style: italic;
    white-space: nowrap;
}

.booking-cta {
    margin-top: 2rem;
    text-align: center;
    background: #ffffffcc;
    border-radius: 24px;
    border-top: 8px solid #a8d8d8;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.secondary-button {
    background: #f6d186;
}

@media (max-width: 600px) {
    .brochure-services,
    .booking-cta {
        padding: 1.25rem;
    }

    .service-price-row {
        grid-template-columns: 1fr;
        gap: 0.1rem;
        text-align: center;
        padding: 0.6rem 0;
    }
}

.service-price-group {
    margin-top: 3rem;
}

.service-price-group:first-of-type {
    margin-top: 1rem;
}

.service-price-group h3 {
    margin-bottom: 1.5rem;
}

.service-price-list {
    max-width: 900px;

    margin: auto;
}

.service-price-row {
    display: grid;

    grid-template-columns:
        minmax(240px, 1fr)
        auto;

    gap: 2rem;

    align-items: baseline;

    padding:
        0.6rem
        0;

    border-bottom:
        1px solid
        rgba(240,227,218,0.75);
}

.service-price-row:last-child {
    border-bottom: none;
}

.service-price-row span:first-child {
    font-size: 1.3rem;

    color: #6a89a3;

    font-weight: 500;

    letter-spacing: 0.01em;
}

.service-price-row span:last-child {
    font-size: 1.15rem;

    color: #7a6c66;

    font-style: italic;
}

@media (max-width: 700px) {

    .service-price-row {

        grid-template-columns:
            1fr;

        gap:
            0.15rem;

        text-align:
            center;

        padding:
            0.9rem
            0;
    }

    .service-price-row span:last-child {

        font-size:
            1rem;
    }
}