/*
============================================================
THE CUTTING EDGE — V2.2
Clean consolidated stylesheet
============================================================
*/

:root {
    --ink: #171717;
    --ink-soft: #343130;
    --paper: #f3f3f3;
    --white: #ffffff;
    --warm-white: #fffdfb;

    --blush: #e7b3b2;
    --blush-deep: #d79897;
    --blush-soft: #f7e6e2;
    --blush-row: #f9ece8;

    --muted: #6d6a68;
    --hairline: rgba(23, 23, 23, 0.12);

    --display: "The Nautigal", cursive;
    --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --shell: 1180px;
    --header-height: 88px;

    --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.08);
    --shadow-panel: 0 22px 60px rgba(0, 0, 0, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

/* Typography */
.eyebrow {
    margin: 0 0 0.65rem;
    color: #6c5b58;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.display {
    margin: 0.08em 0 0.28em;
    font-family: var(--display);
    font-size: clamp(4.7rem, 9vw, 8.5rem);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -0.02em;
}

.display strong {
    color: var(--ink);
    font-weight: 700;
}

.lead {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    font-weight: 350;
    line-height: 1.7;
}

.copy {
    max-width: 760px;
    color: var(--ink-soft);
}

.section {
    padding: clamp(48px, 6vw, 84px) 0;
}

.section--white {
    background: var(--white);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.55rem;
}

.section-head p {
    max-width: 520px;
    margin: 0;
}

/* Homepage service introduction: keep supporting copy connected to the title. */
.section-head--services {
    display: block;
}

.section-head--services > div {
    max-width: 900px;
}

.section-head--services > p {
    max-width: 720px;
    margin-top: 0.9rem;
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.76rem 1.25rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: var(--white);
}

.button--light {
    border-color: var(--white);
    color: var(--white);
}

.button--light:hover {
    background: var(--white);
    color: var(--ink);
}

.button--solid {
    border-color: var(--blush);
    background: var(--blush);
    color: var(--ink);
}

.button--solid:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.14);
    color: var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Painted line system */
.paint-divider {
    position: relative;
    width: 100%;
    height: 7px;
    margin: clamp(1.25rem, 2.5vw, 2.2rem) 0;
    overflow: hidden;
}

.paint-divider::before {
    content: "";
    position: absolute;
    inset: 2px 0;
    background: var(--blush);
    opacity: 0.78;
    clip-path: polygon(
        0 38%, 7% 25%, 15% 35%, 23% 20%, 32% 33%, 40% 18%,
        49% 31%, 58% 20%, 67% 34%, 76% 19%, 85% 31%, 93% 21%, 100% 29%,
        100% 68%, 92% 78%, 84% 67%, 75% 82%, 66% 69%, 57% 81%,
        48% 70%, 39% 83%, 30% 68%, 21% 80%, 13% 69%, 6% 79%, 0 70%
    );
}

.paint-divider--short {
    width: min(180px, 45%);
}

.paint-divider--subtle::before {
    opacity: 0.45;
}

.paint-divider--footer {
    width: min(calc(100% - 40px), var(--shell));
    margin: 32px auto 14px;
}

.paint-heading {
    position: relative;
    padding-bottom: 22px;
}

.paint-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 84px;
    height: 6px;
    background: var(--blush);
    opacity: 0.76;
    clip-path: polygon(
        0 35%, 15% 20%, 29% 33%, 44% 18%, 59% 31%, 74% 17%, 88% 29%, 100% 22%,
        100% 69%, 84% 80%, 68% 68%, 52% 82%, 36% 70%, 19% 79%, 0 68%
    );
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 0 max(20px, calc((100vw - var(--shell)) / 2));
    gap: 2rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(243, 243, 243, 0.9);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
    color: var(--ink);
}

.site-header.is-scrolled::before,
.page-inner .site-header::before {
    opacity: 1;
}

.brand {
    margin-right: auto;
}

.brand img {
    width: 150px;
    height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.site-header.is-scrolled .brand img,
.page-inner .brand img {
    filter: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.desktop-nav a {
    position: relative;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: -8px;
    left: 0;
    height: 3px;
    background: var(--blush);
    transition: right 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    right: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.book-link--header {
    padding: 0.55rem 1rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.book-link--header:hover {
    border-color: var(--blush);
    background: var(--blush);
    color: var(--ink);
}

.menu-toggle {
    position: relative;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: top 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.is-open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 76px;
    right: 16px;
    display: grid;
    width: min(330px, calc(100vw - 32px));
    padding: 12px;
    border: 2px solid rgba(231, 179, 178, 0.65);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: var(--shadow-panel);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.mobile-menu a {
    padding: 13px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
    background: var(--blush-soft);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: end;
    min-height: 100svh;
    background: #4a403d;
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../img/salon/salon-hero.svg") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.08) 40%,
            rgba(0, 0, 0, 0.68)
        );
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: end;
    gap: 2rem;
    padding: 160px 0 48px;
}

.hero__copy .eyebrow {
    color: var(--white);
}

.hero__copy h1 {
    margin: 0 0 1.2rem;
    font-family: var(--display);
    font-size: clamp(5.2rem, 11vw, 10rem);
    font-weight: 400;
    line-height: 0.67;
}

.hero__copy h1 strong {
    color: #f3cbc5;
    font-weight: 700;
}

.hero__copy p {
    max-width: 560px;
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.7rem;
}

.hero-review {
    min-height: 142px;
    padding: 0.9rem 0 0.9rem 1.35rem;
    border-left: 6px solid var(--blush);
}

.hero-review__stars {
    letter-spacing: 0.13em;
}

.hero-review blockquote {
    margin: 0.55rem 0;
    font-size: 1rem;
    line-height: 1.52;
}

.hero-review cite {
    font-size: 0.76rem;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fade-swap {
    animation: reviewFade 0.45s ease;
}

@keyframes reviewFade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: none; }
}

/* Homepage */
.intro-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
}

.intro-number {
    color: var(--blush-deep);
    font-family: var(--display);
    font-size: 7rem;
    line-height: 0.7;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    padding: 1.8rem;
    border: 10px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.service-card:nth-child(even) {
    background: var(--blush-soft);
}

.service-card:hover {
    transform: translateY(-4px);
    background: var(--blush);
}

.service-card span {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 3.25rem;
    line-height: 0.8;
}

.photo-frame {
    min-height: 420px;
    border: 12px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    min-height: 396px;
    object-fit: cover;
}

/* Inner pages */
.page-inner main {
    padding-top: var(--header-height);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 6vw, 72px) 0 52px;
    background: var(--warm-white);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -3%;
    bottom: -34px;
    left: -3%;
    height: 64px;
    background: var(--paper);
    transform: rotate(-1deg);
}

.page-hero .shell {
    position: relative;
    z-index: 1;
}

.page-hero .display {
    color: var(--blush-deep);
}

/* Services */
.services-nav-wrap {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    padding: 12px 0 8px;
    background: rgba(243, 243, 243, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.services-nav-shell {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 8px;
}

.scroll-arrow {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 2px solid var(--blush);
    border-radius: 50%;
    background: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.scroll-arrow:not(:disabled):hover {
    background: var(--blush);
}

.scroll-arrow:disabled {
    opacity: 0.2;
    cursor: default;
}

.services-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.services-nav::-webkit-scrollbar {
    display: none;
}

.services-nav button {
    flex: 0 0 auto;
    padding: 0.72rem 1rem;
    border: 1px solid #dfcfcb;
    border-radius: 999px;
    background: var(--white);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    scroll-snap-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.services-nav button:hover {
    background: var(--blush-soft);
}

.services-nav button.is-active {
    border-color: var(--blush);
    background: var(--blush);
}

.swipe-hint {
    display: none;
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
}

.service-panel {
    display: none;
    padding: clamp(32px, 4vw, 52px) 0 clamp(44px, 5vw, 66px);
}

.service-panel.is-active {
    display: block;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.62fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.service-main h2 {
    margin: 0 0 1rem;
    color: var(--blush-deep);
    font-family: var(--display);
    font-size: clamp(4.3rem, 7vw, 7rem);
    line-height: 0.72;
}

.service-description {
    max-width: 760px;
    margin-bottom: 0.9rem;
}

.service-note {
    max-width: 700px;
    color: var(--muted);
    font-size: 0.84rem;
}

.service-groups {
    margin-top: 1.35rem;
}

.price-group {
    margin-bottom: 1.55rem;
}

.price-group__title {
    margin: 0 0 0.55rem;
    font-size: 1rem;
    font-weight: 700;
}

.price-table {
    overflow: hidden;
    border-radius: 2px;
}

.price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 0.52rem 0.8rem;
    background: var(--white);
}

.price-row:nth-child(even) {
    background: var(--blush-row);
}

.price-row strong {
    font-weight: 600;
}

.price-row span {
    color: var(--muted);
    white-space: nowrap;
}

.price-group .paint-divider {
    margin: 1rem 0 0;
}



.service-gallery figure {
    margin: 0;
    border: 10px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-gallery {
    display: grid;
    gap: 0.85rem;
    position: sticky;
    top: calc(var(--header-height) + 92px);

    width: min(100%, 280px);
    margin: 0 auto;
}

.service-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.service-gallery figcaption {
    padding: 0.55rem 0.7rem 0.7rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.service-testimonial {
    margin: 2rem 0 0;
    padding-left: 1.3rem;
    border-left: 5px solid var(--blush);
}

.service-testimonial blockquote {
    margin: 0;
    max-width: 690px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-testimonial cite {
    display: block;
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-booking {
    margin-top: 2rem;
}

/* Team */
.team-list {
    display: grid;
}

.team-member {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding: 34px 0;
}

.team-photo {
    width: 260px;
    height: 260px;
    border: 12px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    background: #d9d0cc;
    box-shadow: var(--shadow-soft);
}

.team-role {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-name {
    margin: 0;
    color: var(--blush-deep);
    font-family: var(--display);
    font-size: 4.7rem;
    line-height: 0.75;
}

.team-name strong {
    color: var(--ink);
}

.team-bio {
    max-width: 720px;
}

.education-btn {
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
}

.education-btn:hover {
    background: var(--blush-soft);
}

dialog {
    width: min(720px, calc(100vw - 32px));
    max-height: 84vh;
    padding: 0;
    border: 0;
    border-radius: 18px;
    box-shadow: var(--shadow-panel);
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.62);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.dialog-head {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.7rem;
    background: var(--blush);
}

.dialog-head h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--display);
    font-size: 3.3rem;
    line-height: 0.8;
}

.dialog-close {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--white);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.education-list {
    margin: 0;
    padding: 1rem 1.7rem 1.7rem;
    list-style: none;
}

.education-list li {
    padding: 0.82rem 0.9rem;
}

.education-list li:nth-child(even) {
    background: var(--blush-row);
}

/* Salon */
.salon-hero-image {
    margin-top: 1.5rem;
    border: 12px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.salon-hero-image img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--blush);
}

.info-block {
    padding: 1.25rem;
    background: var(--white);
}

.info-block h3 {
    margin-top: 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.review-card {
    padding: 1.2rem;
    border-top: 5px solid var(--blush);
    background: var(--white);
}

.review-card p {
    margin: 0;
}

.review-card cite {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-frame {
    overflow: hidden;
    border: 10px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 440px;
    border: 0;
}

.join-band {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.join-band__image {
    border: 10px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.join-band__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Join */
.join-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--blush);
}

.join-benefit {
    padding: 1.25rem;
    background: var(--white);
}

/* Footer */
.site-footer {
    padding: 48px 0 20px;
    background: #1e1d1c;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 2rem;
}

.footer-grid h3 {
    color: var(--blush);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid p {
    color: #dddddd;
    font-size: 0.9rem;
}

.footer-grid a:hover {
    color: var(--blush);
}

.footer-script {
    margin: 0.15rem 0 1.5rem;
    font-family: var(--display);
    font-size: 4rem;
    line-height: 0.76;
}

.copyright {
    color: #aaaaaa;
    font-size: 0.72rem;
}

/* Tablet / mobile */
@media (max-width: 800px) {
    :root {
        --header-height: 72px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .site-header {
        height: var(--header-height);
        padding: 0 14px;
        gap: 0.55rem;
    }

    .brand img {
        width: 112px;
        height: 48px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .book-link--header {
        padding: 0.48rem 0.75rem;
        font-size: 0.64rem;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 126px 0 26px;
    }

    .hero__copy h1 {
        font-size: clamp(4.9rem, 23vw, 7rem);
    }

    .hero-review {
        min-height: 122px;
    }

    .intro-grid,
    .content-grid,
    .join-band {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .service-card {
        min-height: 185px;
        padding: 1.35rem;
    }

    .page-inner main {
        padding-top: var(--header-height);
    }

    .services-nav-wrap {
        top: var(--header-height);
    }

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

    .scroll-arrow {
        width: 38px;
        height: 38px;
    }

    .services-nav {
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0,
            #000 16px,
            #000 calc(100% - 16px),
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0,
            #000 16px,
            #000 calc(100% - 16px),
            transparent 100%
        );
    }

    .swipe-hint {
        display: block;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-gallery {
        display: none;
    }

    .service-panel {
        padding-top: 42px;
    }

    .service-main h2 {
        font-size: clamp(4rem, 18vw, 5.7rem);
    }

    .price-row {
        padding: 0.78rem 0.85rem;
    }

    .service-booking {
        width: 100%;
    }

    .team-member {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        padding: 38px 0;
    }

    .team-photo {
        justify-self: center;
        width: 200px;
        height: 200px;
    }

    .team-name {
        font-size: 4rem;
    }

    .review-grid,
    .join-benefits {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .salon-hero-image img {
        aspect-ratio: 4 / 3;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .service-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        flex: 1 1 100%;
    }

    .display {
        font-size: clamp(4rem, 20vw, 6rem);
    }

    .page-hero {
        padding-top: 56px;
    }

    .dialog-head {
        padding: 1.15rem;
    }

    .dialog-head h2 {
        font-size: 2.8rem;
    }

    .education-list {
        padding: 0.8rem 1.15rem 1.35rem;
    }
}

/* Accessibility */
:focus-visible {
    outline: 3px solid var(--blush-deep);
    outline-offset: 4px;
}

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


/* ==========================================================
   V2.3 COMPACT RHYTHM
   Less unnecessary vertical scrolling, especially on Services.
   ========================================================== */

.service-panel .paint-divider:first-child {
    margin-top: 0;
    margin-bottom: 1.35rem;
}

.service-main .eyebrow {
    margin-bottom: 0.35rem;
}

.service-main h2 {
    margin-bottom: 0.7rem;
}

.service-description {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

.service-note {
    margin: 0.55rem 0 0;
    line-height: 1.45;
}

.price-group__title {
    line-height: 1.25;
}

.price-row {
    min-height: 34px;
    align-items: center;
    line-height: 1.3;
}

.price-row strong,
.price-row span {
    font-size: 0.86rem;
}

.service-booking {
    margin-top: 1.25rem;
}

.team-bio {
    margin-top: 0.65rem;
    margin-bottom: 0;
}

.team-member .paint-divider {
    margin-block: 1.15rem;
}

.footer-grid p {
    line-height: 1.55;
}

@media (max-width: 800px) {
    .section {
        padding: 42px 0;
    }

    .page-hero {
        padding: 42px 0 38px;
    }

    .service-panel {
        padding: 28px 0 42px;
    }

    .service-main h2 {
        margin-bottom: 0.55rem;
    }

    .service-description {
        margin-bottom: 0.55rem;
    }

    .service-groups {
        margin-top: 1rem;
    }

    .price-group {
        margin-bottom: 1.15rem;
    }

    .price-row {
        padding: 0.5rem 0.7rem;
        min-height: 32px;
    }

    .price-row strong,
    .price-row span {
        font-size: 0.82rem;
    }

    .paint-divider {
        margin-block: 1rem;
    }

    .team-member {
        padding: 26px 0;
    }

    .site-footer {
        padding-top: 38px;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 36px 0;
    }

    .page-hero {
        padding: 36px 0 32px;
    }

    .price-row {
        padding: 0.45rem 0.65rem;
    }
}


/* ==========================================================
   V2.4 — COMPACT SERVICE PRICING
   Dense, scan-friendly pricing without card-like spacing.
   ========================================================== */

.service-groups {
    margin-top: 1rem;
    border-top: 1px solid rgba(221, 154, 156, 0.32);
}

.price-group {
    margin: 0;
}

.price-group + .price-group {
    margin-top: 0;
}

.price-group__title {
    margin: 0;
    padding: 0.62rem 0.72rem 0.28rem;
    font-size: 0.92rem;
    line-height: 1.25;
}

.price-table {
    border-radius: 0;
}

.price-row {
    min-height: 34px;
    padding: 0.48rem 0.72rem;
    border: 0;
    line-height: 1.25;
}

.price-group:nth-child(odd) .price-row--service,
.price-table .price-row:nth-child(odd) {
    background: rgba(249, 230, 230, 0.62);
}

.price-group:nth-child(even) .price-row--service,
.price-table .price-row:nth-child(even) {
    background: var(--white);
}

.price-row--service strong {
    font-size: 0.9rem;
    font-weight: 650;
}

.price-row--service span {
    font-size: 0.86rem;
}

.price-group--single .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.price-group .paint-divider {
    display: none;
}

@media (max-width: 800px) {
    .service-groups {
        margin-top: 0.85rem;
    }

    .price-group__title {
        padding: 0.52rem 0.62rem 0.22rem;
        font-size: 0.88rem;
    }

    .price-row {
        min-height: 32px;
        padding: 0.44rem 0.62rem;
        gap: 0.75rem;
    }

    .price-row--service strong,
    .price-row--service span {
        font-size: 0.82rem;
    }
}


/* ==========================================================
   V2.5 — STYLIST LEVEL PRICING
   ========================================================== */

.price-group {
    margin: 0 0 0.9rem;
}

.price-group:last-child {
    margin-bottom: 0;
}

.price-group__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem;
    padding: 0.58rem 0.72rem 0.3rem;
}

.price-group__heading .price-group__title {
    padding: 0;
    margin: 0;
}

.price-group__column-label {
    font-size: 0.86rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}

.price-table .price-row {
    padding-block: 0.46rem;
}

.price-table .price-row strong {
    font-weight: 520;
}

.price-table .price-row span {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

@media (max-width: 800px) {
    .price-group {
        margin-bottom: 0.78rem;
    }

    .price-group__heading {
        padding: 0.5rem 0.62rem 0.25rem;
        gap: 0.75rem;
    }

    .price-group__column-label {
        font-size: 0.78rem;
    }
}


/* ==========================================================
   V2.7 — CONSISTENT SERVICE LEVEL LISTS
   Applies the compact group / level / price pattern everywhere.
   ========================================================== */

.service-groups .price-group {
    margin-bottom: 0.95rem;
}

.service-groups .price-group__heading {
    padding-bottom: 0.28rem;
}

.service-groups .price-table .price-row {
    min-height: 32px;
    padding-top: 0.43rem;
    padding-bottom: 0.43rem;
}

.service-groups .price-table .price-row:nth-child(odd) {
    background: rgba(249, 230, 230, 0.62);
}

.service-groups .price-table .price-row:nth-child(even) {
    background: transparent;
}

@media (max-width: 800px) {
    .service-groups .price-group {
        margin-bottom: 0.8rem;
    }

    .service-groups .price-table .price-row {
        min-height: 30px;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
}


/* ==========================================================
   V2.9 — FULL TEAM EDUCATION
   Complete education histories live in a scrollable native dialog
   so the main Team page remains compact.
   ========================================================== */

.team-bio-copy {
    display: grid;
    gap: 0.55rem;
}

.team-bio-copy .team-bio {
    margin: 0;
}

.education-dialog {
    width: min(760px, calc(100% - 2rem));
    max-height: min(82vh, 820px);
    padding: 0;
    overflow: hidden;
}

.education-dialog .dialog-head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--white);
    padding: 1.15rem 1.25rem 0.9rem;
    border-bottom: 1px solid rgba(221, 154, 156, 0.3);
}

.dialog-eyebrow {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.education-dialog__body {
    max-height: calc(82vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.8rem 1.25rem 1.25rem;
}

.education-dialog .education-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.education-dialog .education-list li {
    margin: 0;
    padding: 0.56rem 0.7rem;
    line-height: 1.35;
}

.education-dialog .education-list li:nth-child(odd) {
    background: rgba(249, 230, 230, 0.62);
}

.education-dialog .education-list li:nth-child(even) {
    background: transparent;
}

@media (max-width: 800px) {
    .education-dialog {
        width: calc(100% - 1rem);
        max-height: 88vh;
    }

    .education-dialog .dialog-head {
        padding: 0.9rem 0.9rem 0.72rem;
    }

    .education-dialog__body {
        max-height: calc(88vh - 82px);
        padding: 0.65rem 0.9rem 0.9rem;
    }

    .education-dialog .education-list li {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
}


/* ==========================================================
   V2.10 — EDUCATION DIALOG FIX
   Fixed, consistent dialog height; header never scrolls away.
   ========================================================== */

.education-dialog {
    width: min(760px, calc(100% - 2rem)) !important;
    height: min(720px, calc(100dvh - 4rem)) !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0;
    border-radius: 24px;
}

.education-dialog[open] {
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr);
}

.education-dialog .dialog-head {
    position: relative !important;
    top: auto !important;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    min-height: 108px;
    padding: 1.2rem 1.3rem 1rem !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(221, 154, 156, 0.38);
}

.education-dialog .dialog-head h2 {
    display: block !important;
    margin: 0.18rem 0 0 !important;
    font-family: "The Nautigal", serif;
    font-size: clamp(2.25rem, 5vw, 3.6rem);
    line-height: 0.9;
    font-weight: 400;
    color: #111;
}

.education-dialog .dialog-eyebrow {
    display: block !important;
    margin: 0 !important;
}

.education-dialog .dialog-close {
    flex: 0 0 auto;
    position: static !important;
    width: 52px;
    height: 52px;
    margin: 0 !important;
    color: #000;
}

.education-dialog__body {
    min-height: 0 !important;
    max-height: none !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0.65rem 1.3rem 1.25rem !important;
    background: #fff;
}

.education-dialog .education-list li {
    padding: 0.58rem 0.72rem !important;
}

@media (max-width: 800px) {
    .education-dialog {
        width: calc(100% - 1rem) !important;
        height: min(680px, calc(100dvh - 1rem)) !important;
        border-radius: 20px;
    }

    .education-dialog .dialog-head {
        min-height: 94px;
        padding: 0.9rem 0.95rem 0.75rem !important;
    }

    .education-dialog .dialog-head h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .education-dialog .dialog-close {
        width: 46px;
        height: 46px;
    }

    .education-dialog__body {
        padding: 0.55rem 0.95rem 0.95rem !important;
    }
}

/* V2.15 homepage photography + mobile composition */
.welcome-grid {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.welcome-visual {
    position: relative;
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow-panel);
}

.welcome-visual::before,
.welcome-visual::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    height: 5px;
    /* background: var(--blush); */
    opacity: .78;
}

.welcome-visual::before { top: 24px; }
.welcome-visual::after { bottom: 24px; }

.welcome-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.welcome-partners {
    max-width: 430px;
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(231, 179, 178, .55);
}

.welcome-partners .eyebrow { margin-bottom: .55rem; }
.welcome-partners img {
    display: block;
    width: min(100%, 390px);
    height: auto;
    mix-blend-mode: multiply;
}

.content-grid .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 800px) {
    .hero {
        min-height: 100svh;
        align-items: stretch;
    }

    .hero__content {
        min-height: 100svh;
        align-content: end;
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
        padding: calc(var(--header-height) + 42px) 0 22px;
    }

    .hero__copy h1 {
        margin-bottom: .85rem;
        font-size: clamp(4.2rem, 20vw, 6.2rem);
        line-height: .74;
    }

    .hero__copy p {
        max-width: 34rem;
        margin-bottom: 0;
        font-size: .98rem;
        line-height: 1.55;
    }

    .hero__actions {
        margin-top: 1.15rem;
    }

    .hero-review {
        min-height: 0;
        margin-top: .25rem;
        padding: .8rem 1rem;
        border: 0;
        border-left: 4px solid var(--blush);
        background: rgba(20, 17, 16, .48);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .hero-review blockquote {
        margin: .35rem 0;
        font-size: .9rem;
        line-height: 1.4;
    }

    .hero-review cite { font-size: .66rem; }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .welcome-visual {
        padding: 10px;
    }

    .welcome-visual::before { top: 18px; left: 10px; right: 10px; height: 4px; }
    .welcome-visual::after { bottom: 18px; left: 10px; right: 10px; height: 4px; }

    .welcome-visual img { aspect-ratio: 16 / 10; }
    .welcome-partners { margin-top: 1.25rem; }
}

@media (max-width: 520px) {
    .hero__content {
        padding-top: calc(var(--header-height) + 28px);
        padding-bottom: 16px;
    }

    .hero__copy .eyebrow { margin-bottom: .55rem; }
    .hero__copy h1 { font-size: clamp(3.9rem, 19vw, 5.2rem); }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .55rem;
    }

    .hero__actions .button {
        min-width: 0;
        padding-inline: .7rem;
        font-size: .68rem;
        white-space: nowrap;
    }

    .hero-review__stars { font-size: .72rem; }
    .hero-review blockquote { font-size: .82rem; }

    .welcome-visual img { aspect-ratio: 4 / 3; }
    .welcome-partners img { width: 100%; }
}

/* V2.16 homepage hero, reviews and partner bar */
.hero::before {
    background-image: url("../img/salon/hero-team.jpg");
    background-position: center 32%;
}

/* Give the controlled Google-review treatment enough presence on desktop. */
.hero-review {
    background: rgba(24, 20, 19, .24);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 1rem 1.2rem 1rem 1.35rem;
}
.hero-review cite::before {
    content: "Google Review · ";
}

/* Welcome: salon/lifestyle image at left. */
.welcome-visual img {
    aspect-ratio: 4 / 3;
    object-position: center;
}

/* Professional Partners is a clean white logo bar, not a screenshot/card. */
.welcome-partners {
    max-width: none;
    margin-top: 1.35rem;
}
.welcome-partners img {
    width: 100%;
    max-width: 560px;
    height: 88px;
    object-fit: contain;
    object-position: left center;
    padding: .65rem .85rem;
    background: #fff;
    mix-blend-mode: normal;
}

@media (max-width: 800px) {
    .hero::before { background-position: 57% center; }
    .hero-review { display: block; }
    .welcome-partners img {
        height: 74px;
        object-position: center;
        padding: .55rem .65rem;
    }
}

/* v2.17 — preserve the complete team in the Join Our Team photo */
.join-band__image img {
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 720px) {
    .join-band__image {
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }
    .join-band__image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        background: #f7f5f3;
    }
}


/* ==========================================================
   V2.18 — FINAL CLEANUP / RESPONSIVE QA
   ========================================================== */

.hero-review,
.hero-review blockquote,
.hero-review cite,
.hero-review__stars {
    color: #fff;
}

.hero-review {
    position: relative;
    z-index: 2;
}

.hero-review blockquote {
    display: block;
    opacity: 1;
}

.hero-review cite {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .55rem;
    align-items: center;
}

.hero-review cite::before {
    content: none;
}

.review-name,
.review-source {
    display: inline-block;
}

.review-source {
    padding-left: .55rem;
    border-left: 1px solid rgba(255,255,255,.5);
    font-weight: 700;
}

.swipe-hint {
    display: none;
}

@media (max-width: 800px) {
    .swipe-hint {
        display: block;
        margin: .55rem auto 0;
        padding-inline: 1rem;
        text-align: center;
        font-size: .72rem;
        line-height: 1.35;
        color: var(--muted);
    }

    .hero {
        min-height: max(100svh, 650px);
    }

    .hero__content {
        grid-template-columns: 1fr;
        align-content: end;
        gap: .75rem;
    }

    .hero-review {
        width: 100%;
        margin-top: .15rem;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: max(100svh, 680px);
    }

    .hero__copy h1 {
        max-width: 100%;
    }

    .hero-review {
        padding: .72rem .82rem .72rem .95rem;
    }

    .hero-review blockquote {
        margin: .28rem 0;
        font-size: .8rem;
        line-height: 1.35;
    }

    .hero-review cite {
        font-size: .62rem;
    }
}


/* ==========================================================
   V2.19 — CLIENT REVIEW POLISH
   Final desktop + mobile refinement before client review.
   ========================================================== */

/* Desktop: a touch more separation before Professional Partners. */
.welcome-partners {
    margin-top: 1.85rem;
}

/* Keep the partner strip compact and intentional. */
.welcome-partners .eyebrow {
    margin-bottom: .65rem;
}

@media (max-width: 800px) {
    /* Keep the full Welcome In team/dog image visible on phones. */
    .welcome-visual img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
    }

    /* Mobile hero: preserve the people while leaving a readable text zone. */
    .hero::before {
        background-position: 55% center;
    }

    /* Review remains full social proof, but takes less vertical space. */
    .hero-review {
        padding: .65rem .8rem .65rem .9rem;
        border-left-width: 3px;
    }

    .hero-review__stars {
        font-size: .7rem;
        line-height: 1;
    }

    .hero-review blockquote {
        margin: .22rem 0;
        font-size: .79rem;
        line-height: 1.32;
    }

    .hero-review cite {
        gap: .25rem .4rem;
        font-size: .6rem;
        line-height: 1.25;
    }

    .review-source {
        padding-left: .4rem;
    }

    /* Keep the Welcome content grouped without excessive scrolling. */
    .welcome-grid {
        gap: 1.35rem;
    }

    .welcome-partners {
        margin-top: 1.1rem;
    }
}

@media (max-width: 520px) {
    /* Slightly tighter still on narrow phones, without shrinking readability. */
    .hero__content {
        gap: .62rem;
        padding-bottom: 14px;
    }

    .hero__actions {
        margin-top: .9rem;
    }

    .hero-review {
        margin-top: 0;
        padding: .6rem .72rem .6rem .82rem;
    }

    .hero-review blockquote {
        font-size: .78rem;
    }

    .welcome-partners img {
        height: 68px;
        padding: .45rem .55rem;
    }
}
