:root {
    --ink: #111413;
    --ink-soft: #4b524e;
    --paper: #fbfaf7;
    --white: #ffffff;
    --mist: #edf2ee;
    --blush: #f7e6e9;
    --rose: #b6616d;
    --rose-deep: #77313f;
    --sage: #778f82;
    --brass: #bda078;
    --brass-gold: #ab8e60;
    --line: #e3ded6;
    --shadow: 0 20px 50px rgba(17, 20, 19, 0.08);
    --shadow-glow: 0 0 30px rgba(189, 160, 120, 0.15);
    --max: 1180px;
    --radius: 12px;
    --radius-sm: 8px;
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Plus Jakarta Sans", Inter, sans-serif;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --duration: 400ms;
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 14px;
    z-index: 30;
    transform: translateY(-140%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: transform var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px max(24px, calc((100vw - var(--max)) / 2));
    color: var(--white);
    transition: background var(--ease), box-shadow var(--ease), color var(--ease), padding var(--ease);
}

.site-header.is-scrolled,
.site-header.nav-active {
    background: rgba(251, 250, 247, 0.95);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(30, 37, 34, 0.08);
    backdrop-filter: blur(18px);
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.1;
}

.brand small {
    color: currentColor;
    font-size: 0.72rem;
    opacity: 0.72;
}

.primary-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.9rem;
}

.primary-nav a,
.footer-links a {
    position: relative;
}

.primary-nav a::after,
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta {
    justify-self: end;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    transition: background var(--ease), color var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--ink);
    color: var(--white);
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 82svh;
    display: grid;
    align-items: center;
    padding: 118px max(24px, calc((100vw - var(--max)) / 2)) 72px;
    color: var(--white);
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("assets/salon-hero.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(18, 25, 22, 0.82) 0%, rgba(18, 25, 22, 0.58) 38%, rgba(18, 25, 22, 0.08) 76%),
        linear-gradient(180deg, rgba(18, 25, 22, 0.34), rgba(18, 25, 22, 0.12) 52%, rgba(18, 25, 22, 0.35));
}

.hero-content {
    position: relative;
    width: min(680px, 100%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffd2d8;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.05;
    font-family: var(--font-heading);
}

h1,
h2 {
    font-weight: 500;
}

h1 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: 5.5rem;
}

h1 span {
    display: block;
}

h2 {
    margin-bottom: 18px;
    font-size: 3.35rem;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.42rem;
}

.hero-copy {
    max-width: 590px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 12px 22px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-weight: 750;
    transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
}

.button.ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.button.compact {
    min-height: 44px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--white);
}

.button.full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
    margin: 0;
}

.hero-stats div {
    border-left: 1px solid rgba(255, 255, 255, 0.32);
    padding-left: 18px;
}

.hero-stats dt {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.05rem;
    line-height: 1;
}

.hero-stats dd {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
}

.quick-book {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 18px;
    align-items: center;
    width: min(calc(100% - 48px), var(--max));
    margin: -32px auto 0;
    position: relative;
    z-index: 3;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.quick-book span,
.service-meta span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.quick-book strong {
    display: block;
    margin-top: 4px;
}

.section {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: 104px 0;
}

.section-heading {
    width: min(720px, 100%);
    margin-bottom: 38px;
}

.section-heading p:not(.eyebrow),
.experience-copy > p,
.booking-copy > p {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

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

.service-card,
.review-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.service-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover,
.service-card:focus-within {
    border-color: rgba(199, 114, 126, 0.55);
    box-shadow: 0 18px 44px rgba(30, 37, 34, 0.11);
    transform: translateY(-4px);
}

.service-index {
    color: var(--rose-deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.service-card p {
    color: var(--ink-soft);
}

.service-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.service-meta strong {
    color: var(--rose-deep);
}

.experience {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.experience-image {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 520px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 32px 0 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}

.feature-list span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--mist);
    color: var(--rose-deep);
    font-size: 0.82rem;
    font-weight: 800;
}

.feature-list strong {
    display: block;
    margin-bottom: 4px;
}

.feature-list p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.lookbook {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.lookbook-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--mist);
}

.lookbook-item.large {
    grid-row: span 2;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.lookbook-item:nth-child(3) img {
    object-position: 74% 50%;
}

.lookbook-item:hover img {
    transform: scale(1.035);
}

.lookbook-item figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    border-radius: 999px;
    background: rgba(251, 250, 247, 0.88);
    color: var(--ink);
    padding: 9px 14px;
    font-size: 0.88rem;
    font-weight: 750;
}

.reviews {
    padding-bottom: 96px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    margin: 0;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(247, 231, 234, 0.66), rgba(255, 255, 255, 0.9)),
        var(--white);
}

.review-card p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.34rem;
    line-height: 1.25;
}

.review-card cite {
    color: var(--ink-soft);
    font-style: normal;
    font-weight: 800;
}

.booking {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    padding-top: 96px;
}

.booking-copy {
    position: sticky;
    top: 96px;
}

address {
    margin-top: 28px;
    color: var(--ink-soft);
    font-style: normal;
}

address a {
    font-weight: 800;
    color: var(--rose-deep);
}

.booking-form {
    margin: 0;
    padding: 0;
    width: 100%;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row.full,
.booking-form .full,
.form-status {
    grid-column: 1 / -1;
}

label {
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    background: var(--white);
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(199, 114, 126, 0.16);
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--rose-deep);
    font-weight: 800;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 44px max(24px, calc((100vw - var(--max)) / 2));
    background: var(--ink);
    color: var(--white);
}

.site-footer p {
    max-width: 430px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Theme Switcher Header Actions & Toggle */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}


/* Custom Cursor */
@media (pointer: fine) {
    .custom-cursor-dot,
    .custom-cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 200ms ease, transform 200ms ease;
        opacity: 0;
    }
    .custom-cursor-dot {
        width: 6px;
        height: 6px;
        background: var(--brass-gold);
    }
    .custom-cursor-ring {
        width: 32px;
        height: 32px;
        border: 1.5px solid var(--brass-gold);
        transition: width 300ms var(--ease), height 300ms var(--ease), border-color 300ms var(--ease), background-color 300ms var(--ease);
    }
    body.cursor-active .custom-cursor-dot,
    body.cursor-active .custom-cursor-ring {
        opacity: 1;
    }
    body.cursor-hovering .custom-cursor-ring {
        width: 48px;
        height: 48px;
        background: rgba(189, 160, 120, 0.08);
        border-color: var(--rose);
    }
    body, a, button, input, select, textarea {
        cursor: none !important;
    }
}

/* Stylists Section */
.stylists {
    border-top: 1px solid var(--line);
}

.stylist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stylist-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--ease) var(--duration), box-shadow var(--ease) var(--duration), border-color var(--ease) var(--duration);
    display: flex;
    flex-direction: column;
}

.stylist-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--brass);
}

.stylist-image-container {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--mist);
}

.stylist-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}

.stylist-card:hover .stylist-image-container img {
    transform: scale(1.04);
}

.stylist-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stylist-details h3 {
    margin-bottom: 4px;
    font-size: 1.6rem;
}

.stylist-role {
    color: var(--brass-gold);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.stylist-bio {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.stylist-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink-soft);
}

/* Lookbook Filters */
.lookbook-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all var(--ease) var(--duration);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.lookbook-item {
    transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}

.lookbook-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

/* Before/After Transformation Slider */
.lookbook-transformation {
    margin-top: 80px;
    text-align: center;
}

.transformation-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.transformation-subtitle {
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto 36px;
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 750px;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    user-select: none;
}

.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--clip-percent, 50%)) 0 0);
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--clip-percent, 50%);
    width: 2px;
    background: var(--white);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--brass-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    color: var(--ink);
    gap: 2px;
}

.ba-handle svg {
    width: 12px;
    height: 12px;
    stroke-width: 3px;
    color: var(--brass-gold);
}

/* Booking Wizard */
.booking-wizard-container {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wizard-progress {
    position: relative;
    margin-bottom: 12px;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--brass);
    width: 25%;
    transform: translateY(-50%);
    z-index: 1;
    transition: width 300ms var(--ease);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--line);
    color: var(--ink-soft);
    display: grid;
    place-items: center;
    font-size: 0.88rem;
    font-weight: 800;
    transition: all 300ms var(--ease);
}

.step-dot.active {
    background: var(--brass);
    border-color: var(--brass);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.step-dot.completed {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeInStep 350ms var(--ease) forwards;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.8rem;
    margin: 0;
    color: var(--ink);
    border-left: 3px solid var(--brass);
    padding-left: 12px;
    line-height: 1.2;
}

.wizard-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wizard-service-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all var(--ease) 250ms;
    background: var(--paper);
}

.wizard-service-card:hover {
    border-color: var(--brass);
    background: var(--white);
}

.wizard-service-card.selected {
    border-color: var(--rose);
    background: var(--white);
    box-shadow: var(--shadow-glow);
}

.card-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: var(--white);
    transition: all var(--ease) 250ms;
}

.wizard-service-card.selected .card-check,
.wizard-stylist-card.selected .card-check {
    background: var(--rose);
    border-color: var(--rose);
}

.wizard-service-card.selected .card-check::after,
.wizard-stylist-card.selected .card-check::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

.wizard-service-card h4,
.wizard-stylist-card h4 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.wizard-service-card p {
    margin: 0 0 14px;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.card-duration {
    font-size: 0.84rem;
    font-weight: 750;
    color: var(--rose-deep);
}

/* Wizard Stylists */
.wizard-stylists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.wizard-stylist-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    background: var(--paper);
    transition: all var(--ease) 250ms;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wizard-stylist-card:hover {
    border-color: var(--brass);
    background: var(--white);
}

.wizard-stylist-card.selected {
    border-color: var(--rose);
    background: var(--white);
    box-shadow: var(--shadow-glow);
}

.wizard-stylist-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid var(--line);
    transition: border-color 250ms var(--ease);
}

.wizard-stylist-card.selected img {
    border-color: var(--rose);
}

.stylist-placeholder-mark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--mist);
    color: var(--brass-gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.88rem;
    border: 2px solid var(--line);
    margin-bottom: 12px;
}

.wizard-stylist-card.selected .stylist-placeholder-mark {
    border-color: var(--rose);
    background: var(--blush);
    color: var(--rose);
}

.wizard-stylist-card span {
    font-size: 0.78rem;
    color: var(--ink-soft);
}

/* Wizard Step 3 */
.date-picker-row,
.time-picker-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all var(--ease) 200ms;
}

.time-slot:hover {
    border-color: var(--brass);
    background: var(--white);
}

.time-slot.selected {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* Wizard Step 4 */
.booking-summary-card {
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-details-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-summary-card h4 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.summary-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}

.summary-details-list li {
    display: flex;
    justify-content: space-between;
}

.summary-total-price {
    color: var(--rose-deep);
    font-weight: 800;
    font-size: 1.15rem;
}

/* Wizard Actions */
.wizard-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.wizard-actions button {
    flex: 1;
}

.wizard-actions button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Wizard Success */
.wizard-success-state {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInStep 350ms var(--ease) forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--mist);
    color: var(--sage);
    display: grid;
    place-items: center;
}

.success-icon-wrap svg {
    stroke: var(--sage);
}

.wizard-success-state h3 {
    font-size: 2.1rem;
    margin: 0;
}

.wizard-success-state p {
    color: var(--ink-soft);
    max-width: 420px;
    margin: 0 auto;
    font-size: 1.04rem;
}

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

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        padding-right: 80px;
    }

    .primary-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        display: none;
        flex-direction: column;
        align-items: start;
        gap: 0;
        padding: 14px 0 4px;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        width: 100%;
        padding: 14px 0;
        border-top: 1px solid var(--line);
    }

    .header-cta {
        display: none;
    }
    
    .header-actions {
        grid-column: 3;
        margin-right: 8px;
    }

    .nav-toggle {
        display: grid;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 31;
        justify-self: end;
        gap: 6px;
        width: 44px;
        height: 44px;
        place-content: center;
        border: 1px solid currentColor;
        border-radius: 50%;
        background: var(--paper);
        color: var(--ink);
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(30, 37, 34, 0.12);
        transition: transform var(--ease) var(--duration), background var(--ease) var(--duration), color var(--ease) var(--duration);
    }

    .site-header:not(.is-scrolled):not(.nav-active) .nav-toggle {
        background: var(--paper);
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: currentColor;
        transition: transform var(--ease);
    }

    .nav-toggle.is-open span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .nav-toggle.is-open span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .hero {
        min-height: 76svh;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.65rem;
    }

    .quick-book,
    .service-grid,
    .review-grid,
    .booking {
        grid-template-columns: 1fr 1fr;
    }

    .quick-book .button {
        grid-column: 1 / -1;
    }

    .service-grid {
        gap: 14px;
    }

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

    .experience-copy {
        order: -1;
    }

    .booking-copy {
        position: static;
    }
    
    .stylist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .wizard-services-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-stylists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .site-header {
        padding-left: 18px;
        padding-right: 80px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 74svh;
        padding: 104px 18px 50px;
    }

    .hero-media {
        background-position: 67% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(18, 25, 22, 0.88), rgba(18, 25, 22, 0.56)),
            linear-gradient(180deg, rgba(18, 25, 22, 0.22), rgba(18, 25, 22, 0.34));
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        margin-bottom: 30px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-stats div {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .hero-stats dd {
        margin: 0;
    }

    .quick-book,
    .service-grid,
    .review-grid,
    .booking,
    .booking-wizard-container {
        grid-template-columns: 1fr;
    }

    .section,
    .quick-book {
        width: calc(100% - 36px);
    }

    .section {
        padding: 72px 0;
    }

    .quick-book {
        margin-top: -18px;
        padding: 18px;
    }

    .service-card {
        min-height: 260px;
    }

    .experience-image,
    .experience-image img {
        min-height: 360px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 260px);
    }

    .lookbook-item.large {
        grid-row: auto;
    }

    .review-card p {
        font-size: 1.18rem;
    }

    .booking-wizard-container {
        padding: 20px;
    }

    .site-footer {
        display: grid;
    }

    .footer-links {
        flex-wrap: wrap;
    }
    
    .stylist-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-stylists-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .brand-mark {
        width: 36px;
        height: 36px;
    }

    h1 {
        font-size: 2.32rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .button {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
