:root {
    --ink: #211a20;
    --muted: #6e646b;
    --plum: #30202f;
    --plum-2: #452c42;
    --rose: #b47b84;
    --rose-dark: #8d555f;
    --cream: #f6f0ec;
    --paper: #fffdfb;
    --line: #ded4d7;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(47, 31, 45, 0.12);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Lato', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
address { font-style: normal; }

h1, h2, h3, .footer-brand {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 400;
    line-height: 1.08;
    margin-top: 0;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.15rem); }
h3 { font-size: 1.45rem; }
p { margin-top: 0; }

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}
.container.narrow { max-width: 860px; }
.section { padding: 96px 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--white);
    color: var(--ink);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 251, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(222, 212, 215, 0.8);
}
.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: grid;
    gap: 5px;
    text-decoration: none;
    min-width: 0;
}
.brand-logo {
    width: min(290px, 34vw);
    height: auto;
}
.brand-place { color: var(--muted); font-size: 0.66rem; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav > a:not(.btn) {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    position: relative;
}
.primary-nav > a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--rose-dark);
    transform: scaleX(0);
    transition: transform 160ms ease;
}
.primary-nav > a:not(.btn):hover::after,
.primary-nav > a[aria-current="page"]::after,
.primary-nav > a:not(.btn):focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    line-height: 1.2;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid #c56a7a;
    outline-offset: 4px;
}
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { background: var(--plum-2); }
.btn-secondary { background: var(--rose-dark); color: var(--white); }
.btn-secondary:hover { background: #75424b; }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.66); background: rgba(255,255,255,.07); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-light { background: var(--white); color: var(--plum); }
.btn-light:hover { background: var(--cream); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }

.eyebrow {
    margin-bottom: 18px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #f0d7dc;
}
.eyebrow.dark { color: var(--rose-dark); }
.eyebrow.light { color: #f3dce1; }

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 86px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--plum);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    background: linear-gradient(90deg, rgba(27,17,27,.87) 0%, rgba(31,19,30,.66) 46%, rgba(31,19,30,.18) 80%, rgba(31,19,30,.08) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 96px 0; }
.hero-content > * { max-width: 740px; }
.hero-content h1 { margin-bottom: 24px; text-wrap: balance; }
.hero-lead { font-size: 1.17rem; color: #f2e9ed; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.quick-info { background: var(--plum); color: var(--white); border-top: 1px solid rgba(255,255,255,.12); }
.quick-info-grid { display: grid; grid-template-columns: 1fr 1.45fr 1fr; }
.quick-item {
    padding: 24px 28px;
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,.14);
}
.quick-item:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.quick-item[href]:hover { background: rgba(255,255,255,.05); }
.quick-label { color: #d9c6d2; text-transform: uppercase; font-size: 0.72rem; font-weight: 900; margin-bottom: 4px; }
.quick-item strong { font-size: 0.98rem; }

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { color: var(--muted); margin-bottom: 5px; }

.salon-life-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .7fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 30px;
}
.salon-life-photo, .salon-life-note, .showcase-card, .about-photo, .location-photo { margin: 0; overflow: hidden; border-radius: var(--radius); }
.salon-life-photo { min-height: 360px; background: var(--cream); }
.salon-life-photo img, .about-photo img, .location-photo img { width: 100%; height: 100%; object-fit: cover; }
.salon-life-note {
    padding: 34px;
    background: var(--plum);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.salon-life-note h3 { font-size: 1.9rem; margin-bottom: 16px; }
.salon-life-note p:not(.eyebrow) { color: #eee5eb; margin-bottom: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    min-height: 300px;
    padding: 30px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d6c7cc; }
.service-card:focus-visible { outline: 3px solid #9b5360; outline-offset: 4px; }
.service-number { color: var(--rose-dark); font-weight: 900; font-size: .78rem; margin-bottom: 48px; }
.service-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-card p { color: var(--muted); font-size: .95rem; }
.card-link { margin-top: auto; font-weight: 900; color: var(--plum); }

.story-strip { background: var(--plum); color: var(--white); }
.story-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 90px; align-items: center; }
.story-stat { display: flex; flex-direction: column; padding: 10px 0; }
.story-stat strong { font-family: 'Marcellus', Georgia, serif; font-size: clamp(4rem, 10vw, 7rem); line-height: .85; }
.story-stat span { margin-top: 16px; font-weight: 900; font-size: 1.15rem; }
.story-stat small { color: #cfbec9; margin-top: 2px; }
.story-copy h2 { color: var(--white); margin-bottom: 24px; }
.story-copy p { color: #ede5ea; max-width: 720px; }
.text-link { color: var(--white); font-weight: 900; text-underline-offset: 6px; }

.work-showcase { background: var(--cream); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.showcase-card { aspect-ratio: 3 / 4; background: #e9e1df; box-shadow: 0 10px 32px rgba(47,31,45,.08); }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.showcase-card:hover img { transform: scale(1.015); }

.team-names { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.team-names span {
    padding: 22px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    text-align: center;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.05rem;
}

.cta-panel-section { padding-top: 24px; }
.cta-panel {
    background: linear-gradient(125deg, var(--plum), #5a394f);
    color: var(--white);
    border-radius: 30px;
    padding: 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
    align-items: center;
}
.cta-panel h2 { margin-bottom: 16px; color: var(--white); }
.cta-panel p { color: #f0e7ec; max-width: 700px; margin-bottom: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.page-hero {
    background: var(--plum);
    color: var(--white);
    padding: 112px 0 100px;
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { color: #eee5eb; font-size: 1.08rem; max-width: 760px; }
.page-hero .btn { margin-top: 16px; }

.about-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.about-photo-section { padding-top: 0; }
.about-photo-grid { display: grid; grid-template-columns: 1.45fr .7fr; gap: 18px; align-items: stretch; }
.about-photo { min-height: 440px; background: var(--cream); }
.about-photo-wide { min-height: 440px; }
.about-layout h2 { margin-bottom: 0; }
.prose { max-width: 720px; }
.prose p { color: var(--muted); }
.prose p:last-child { margin-bottom: 0; }
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { background: var(--paper); padding: 34px; border-radius: var(--radius); }
.value-kicker { display: inline-block; margin-bottom: 48px; color: var(--rose-dark); font-weight: 900; font-size: .78rem; }
.value-card h2 { font-size: 2rem; }
.value-card p { color: var(--muted); margin-bottom: 0; }
.team-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.team-person { display: flex; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
.team-person span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--plum); color: var(--white); font-family: 'Marcellus', Georgia, serif; }

.pricing-section { background: var(--cream); }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.price-card {
    scroll-margin-top: 110px;
    background: var(--paper);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 8px 30px rgba(47,31,45,.05);
}
.price-card h2 { font-size: 1.65rem; margin-bottom: 18px; }
.price-card ul { list-style: none; margin: 0; padding: 0; }
.price-card li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); }
.price-card li span { color: var(--muted); overflow-wrap: anywhere; }
.price-card li strong { color: var(--plum); white-space: nowrap; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr); gap: 70px; align-items: start; }
.contact-primary h2 { margin-bottom: 20px; }
.contact-primary > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.contact-card { background: var(--cream); padding: 34px; border-radius: var(--radius); }
.contact-card > div + div { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-label { display: block; margin-bottom: 8px; color: var(--rose-dark); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.contact-card a { color: var(--plum); font-weight: 900; overflow-wrap: anywhere; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 18px; padding: 5px 0; }
.location-photo-section { padding: 0 0 96px; }
.location-photo { aspect-ratio: 16 / 7.57; background: var(--cream); }
.location-photo img { object-position: center; }
.social-section { background: var(--cream); }
.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.social-links a { padding: 14px 20px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 900; background: var(--paper); }
.social-links a:hover { border-color: var(--rose-dark); }

.site-footer { margin-top: 96px; background: #211820; color: #eee5eb; padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr .9fr; gap: 48px; }
.footer-brand { font-size: 1.7rem; color: var(--white); margin-bottom: 14px; }
.site-footer p { color: #cdbfca; }
.footer-since { font-size: .9rem; }
.site-footer h2 { font-family: 'Lato', Arial, sans-serif; font-size: .78rem; text-transform: uppercase; font-weight: 900; color: #f6edf2; margin-bottom: 16px; }
.site-footer a { color: #f5edf2; text-underline-offset: 4px; }
.footer-hours, .footer-links { margin: 0; padding: 0; list-style: none; }
.footer-hours li { display: flex; justify-content: space-between; gap: 14px; color: #cdbfca; font-size: .9rem; }
.footer-links li + li { margin-top: 8px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 24px; align-items: center; font-size: .86rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 980px) {
    .site-header { backdrop-filter: none; }
    .menu-toggle {
        width: 48px;
        height: 48px;
        display: grid;
        align-content: center;
        gap: 5px;
        padding: 10px;
        border: 1px solid var(--line);
        background: var(--paper);
        border-radius: 12px;
        cursor: pointer;
    }
    .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
    .primary-nav {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 22px 24px 28px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 50px rgba(47,31,45,.14);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav > a:not(.btn) { padding: 14px 4px; font-size: 1.05rem; }
    .primary-nav > a:not(.btn)::after { display: none; }
    .nav-book { margin-top: 14px; }
    .quick-info-grid { grid-template-columns: 1fr; }
    .quick-item, .quick-item:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); min-height: auto; }
    .split-heading, .story-grid, .about-layout, .contact-grid, .salon-life-feature { grid-template-columns: 1fr; gap: 34px; }
    .salon-life-photo { min-height: 420px; }
    .about-photo-grid { grid-template-columns: 1fr 1fr; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .story-stat { flex-direction: row; gap: 18px; align-items: end; flex-wrap: wrap; }
    .story-stat strong { font-size: 5.2rem; }
    .story-stat span { margin-top: 0; }
    .story-stat small { width: 100%; }
    .team-names { grid-template-columns: repeat(3, 1fr); }
    .cta-panel { grid-template-columns: 1fr; }
    .cta-actions { justify-content: flex-start; }
    .values-grid { grid-template-columns: 1fr; }
    .value-kicker { margin-bottom: 22px; }
    .team-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    html { scroll-behavior: auto; }
    body { font-size: 16px; }
    .container { width: min(var(--container), calc(100% - 32px)); }
    .section { padding: 68px 0; }
    .header-inner { min-height: 76px; }
    .brand-logo { width: min(230px, 62vw); }
    .brand-place { font-size: .6rem; }
    .primary-nav { top: 76px; }
    .hero { min-height: 650px; }
    .hero-content { padding: 74px 0; }
    .hero-content h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
    .hero-overlay { background: linear-gradient(90deg, rgba(27,17,27,.9), rgba(31,19,30,.63)); }
    .hero-media img { object-position: 52% center; }
    .hero-actions, .contact-actions, .cta-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn, .contact-actions .btn, .cta-actions .btn { width: 100%; }
    .quick-item { padding-inline: 16px; }
    .split-heading { margin-bottom: 34px; }
    .split-heading h2, .page-hero h1 { font-size: clamp(2.25rem, 11vw, 2.85rem); }
    .service-grid, .price-grid, .team-list, .showcase-grid, .about-photo-grid { grid-template-columns: 1fr; }
    .salon-life-photo, .about-photo, .about-photo-wide { min-height: 320px; }
    .showcase-card { aspect-ratio: 4 / 5; }
    .location-photo-section { padding-bottom: 68px; }
    .service-card { min-height: 260px; }
    .team-names { grid-template-columns: repeat(2, 1fr); }
    .cta-panel { padding: 34px 24px; border-radius: 22px; }
    .page-hero { padding: 80px 0 72px; }
    .price-card { padding: 26px 22px; }
    .price-card li { gap: 12px; }
    .contact-card { padding: 26px 22px; }
    .hours-list li { flex-direction: column; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .site-footer { margin-top: 68px; }
}

@media (max-width: 390px) {
    .brand-place { display: none; }
    .brand-logo { width: min(205px, 62vw); }
    .hero-content h1 { font-size: 2.25rem; }
    .page-hero h1, .split-heading h2 { font-size: 2.2rem; overflow-wrap: anywhere; }
    .team-names { grid-template-columns: 1fr; }
    .price-card li { grid-template-columns: 1fr; }
    .price-card li strong { justify-self: start; }
}

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