:root {
    --ink: #101b2d;
    --ink-soft: #334158;
    --muted: #707787;
    --blue: #a87a2a;
    --blue-strong: #741b36;
    --blue-pale: #f3e7d1;
    --blue-wash: #f7f3ea;
    --white: #fffdf7;
    --line: #ded5c6;
    --oxblood: #741b36;
    --oxblood-hover: #8e2444;
    --brass: #b88a3b;
    --brass-strong: #8a611c;
    --danger: #b52e3e;
    --success: #1d5d9b;
    --warning: #946015;
    --shadow: 0 24px 70px rgba(16, 27, 45, .14);
    --radius-lg: 28px;
    --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--blue-wash);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

:focus-visible {
    outline: 3px solid rgba(184, 138, 59, .42);
    outline-offset: 3px;
}

.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;
    z-index: 200;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-180%);
    transition: transform .18s ease;
}

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

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

.section-shell { padding: 104px 0; }

.site-header {
    position: sticky;
    z-index: 90;
    top: 0;
    background: rgba(247, 243, 234, .92);
    border-bottom: 1px solid rgba(222, 213, 198, .88);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 38px;
}

.brand {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.brand-logo { position: relative; width: 68px; height: 68px; flex: 0 0 auto; overflow: visible; border-radius: 0; background: transparent; }
.brand-logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.brand-logo-dark { display: none; }
[data-theme="dark"] .brand-logo-light,
.brand-on-dark .brand-logo-light { display: none; }
[data-theme="dark"] .brand-logo-dark,
.brand-on-dark .brand-logo-dark { display: block; }
.brand-footer .brand-logo { width: 104px; height: 104px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--blue-strong);
    transform: scaleX(0);
    transition: transform .18s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 22px; }

.language-switcher {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--white);
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.language-button {
    min-width: 30px;
    min-height: 40px;
    padding: 7px 2px;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.language-button.is-active { color: var(--ink); }

.theme-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.theme-toggle:hover { transform: rotate(8deg); border-color: var(--blue-strong); }
.theme-sun, .theme-moon { position: absolute; line-height: 1; transition: opacity .18s ease, transform .18s ease; }
.theme-sun { font-size: 21px; }
.theme-moon { color: var(--blue); font-size: 18px; opacity: 0; transform: translateY(18px); }
[data-theme="dark"] .theme-sun { opacity: 0; transform: translateY(-18px); }
[data-theme="dark"] .theme-moon { opacity: 1; transform: translateY(0); }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    letter-spacing: .01em;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(16, 27, 45, .15); }
.button:disabled { cursor: not-allowed; opacity: .58; transform: none; box-shadow: none; }
.button-large { min-height: 56px; padding: 15px 24px; border-radius: 14px; }
.button-dark { background: linear-gradient(135deg, #101b2d, #263752); color: #fffdf7; box-shadow: 0 10px 24px rgba(16, 27, 45, .19); }
.button-dark:hover { background: linear-gradient(135deg, #1a2940, #344765); }
.button-blue { background: linear-gradient(135deg, var(--oxblood), var(--oxblood-hover)); border-color: var(--oxblood); color: #fffaf1; box-shadow: 0 10px 24px rgba(116, 27, 54, .18); }
.button-blue:hover { background: linear-gradient(135deg, var(--oxblood-hover), #a02d50); border-color: var(--oxblood-hover); }
.button-ghost { background: transparent; border-color: #c9baa2; color: var(--ink); }
.button-ghost:hover { background: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.button-block { width: 100%; }

.hero { position: relative; overflow: hidden; padding-top: 76px; }

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(184, 138, 59, .32);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(243, 231, 209, .35), 0 0 0 140px rgba(116, 27, 54, .055);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: clamp(45px, 7vw, 100px);
}

.eyebrow, .section-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px var(--blue-pale); }

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(58px, 6.5vw, 92px);
    font-weight: 780;
    letter-spacing: -.075em;
    line-height: .95;
    white-space: pre-line;
}

.hero h1::first-line { color: var(--ink); }

.hero-lead {
    max-width: 590px;
    margin-bottom: 33px;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual { position: relative; min-width: 0; }

.hero-image-wrap {
    position: relative;
    aspect-ratio: 5 / 5.35;
    overflow: hidden;
    border-radius: 44% 44% 24px 24px;
    border: 1px solid rgba(184, 138, 59, .38);
    background: var(--blue-pale);
    box-shadow: var(--shadow);
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 24px;
    width: 8px;
    height: 84px;
    border: 2px solid rgba(255, 253, 247, .75);
    border-radius: 99px;
    background: repeating-linear-gradient(180deg, var(--oxblood) 0 12px, #fffdf7 12px 24px, var(--brass) 24px 36px);
    box-shadow: 0 8px 24px rgba(16, 27, 45, .22);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 12, 20, .22));
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.availability-card {
    position: absolute;
    bottom: 30px;
    left: -42px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 40px rgba(16, 27, 45, .18);
    backdrop-filter: blur(12px);
}

.availability-card > span:last-child { display: grid; }
.availability-card strong { font-size: 13px; }
.availability-card small { color: var(--muted); font-size: 11px; }

.calendar-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue-pale);
    color: var(--blue-strong);
    font-size: 13px;
    font-weight: 900;
}

.hero-monogram {
    position: absolute;
    top: 38px;
    right: -32px;
    z-index: -1;
    color: rgba(184, 138, 59, .3);
    font-family: Georgia, serif;
    font-size: 112px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -.12em;
    transform: rotate(-8deg);
}

.benefits { position: relative; background: var(--white); border-block: 1px solid var(--line); }
.benefits::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ink) 0 34%, var(--oxblood) 34% 67%, var(--brass) 67%); opacity: .9; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.benefit-grid article {
    display: flex;
    gap: 22px;
    padding: 36px 34px;
    border-right: 1px solid var(--line);
}

.benefit-grid article:first-child { padding-left: 0; }
.benefit-grid article:last-child { padding-right: 0; border-right: 0; }
.feature-number { color: var(--blue-strong); font-size: 12px; font-weight: 900; }
.benefit-grid h2 { margin-bottom: 6px; font-size: 16px; }
.benefit-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 50px;
}

.section-heading h2, .status-cta h2 {
    margin-bottom: 0;
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(36px, 4.4vw, 58px);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.section-heading > p { max-width: 500px; margin-bottom: 3px; color: var(--muted); }
.services-section { background: var(--white); }
.services-list { border-top: 1px solid var(--ink); }

.service-row {
    min-height: 120px;
    display: grid;
    grid-template-columns: 50px 1fr 100px 130px 52px;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: background .18s ease, padding .18s ease;
}

.service-row:hover { padding-inline: 14px; background: #fbf6ec; }
.service-index { color: #8b8276; font-size: 12px; font-weight: 800; }
.service-copy h3 { margin-bottom: 4px; font-size: 20px; letter-spacing: -.02em; }
.service-copy p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.service-duration { color: var(--muted); font-size: 13px; }
.service-price { font-size: 18px; text-align: right; }

.circle-button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.circle-button:hover { background: var(--ink); color: var(--white); transform: rotate(45deg); }

.barbers-section { background: var(--blue-wash); }
.barber-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 22px; }

.barber-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(16, 27, 45, .08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.barber-card::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--ink), var(--oxblood) 58%, var(--brass));
}

.barber-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.barber-photo { position: relative; aspect-ratio: 4 / 4.5; overflow: hidden; background: var(--blue-pale); }
.barber-photo::after { content: ""; position: absolute; inset: 65% 0 0; background: linear-gradient(transparent, rgba(4, 9, 14, .18)); }
.barber-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.barber-card:hover .barber-photo img { transform: scale(1.025); }

.experience-pill {
    position: absolute;
    z-index: 2;
    right: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .94);
    font-size: 11px;
}

.experience-pill b { color: var(--blue-strong); font-size: 14px; }
.barber-info { padding: 23px; }
.barber-info h3 { margin-bottom: 2px; font-size: 22px; letter-spacing: -.03em; }
.barber-info > div > p { margin-bottom: 15px; color: var(--blue-strong); font-size: 12px; font-weight: 800; }
.barber-bio { min-height: 66px; margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.barber-info .button { justify-content: space-between; }

.status-cta { padding-top: 42px; background: var(--blue-wash); }

.status-cta-inner {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 45px 48px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(184, 138, 59, .35);
    background:
        linear-gradient(115deg, rgba(116, 27, 54, .3), transparent 45%),
        var(--ink);
    color: var(--white);
}

.status-cta .section-kicker { color: var(--blue); }
.status-cta h2 { margin-bottom: 8px; font-size: clamp(28px, 3vw, 42px); }
.status-cta p { margin-bottom: 0; color: #c9c4bb; }

.status-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: #222d41;
    color: var(--blue);
    font-size: 24px;
}

.site-footer { padding: 70px 0 34px; background: var(--blue-wash); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr auto; gap: 45px; align-items: start; }
.brand-footer { margin-bottom: 14px; }
.footer-grid strong { display: block; margin-bottom: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid p { margin-bottom: 2px; color: var(--muted); font-size: 13px; }
.copyright { align-self: end; white-space: nowrap; }

.modal { position: fixed; z-index: 150; inset: 0; display: none; }
.modal.is-open { display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7, 13, 24, .76); backdrop-filter: blur(7px); }

.booking-dialog {
    position: relative;
    width: min(calc(100% - 32px), 680px);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .28);
    animation: modal-in .2s ease both;
}

@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(.985); } }

.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; margin-bottom: 20px; }
.modal-header .section-kicker { margin-bottom: 8px; }
.modal-header h2 { margin-bottom: 3px; font-size: 34px; letter-spacing: -.045em; line-height: 1.15; }
.modal-header p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.modal-close {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--blue-wash);
    color: var(--ink);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.booking-notice { display: flex; gap: 11px; padding: 12px 14px; margin-bottom: 22px; border: 1px solid #ead8ba; border-radius: 12px; background: var(--blue-pale); color: #5e3d11; font-size: 12px; }
.booking-notice span { flex: 0 0 auto; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--white); font-weight: 900; }
.booking-notice p { margin: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

.field { display: grid; gap: 7px; margin-bottom: 15px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.field-full { grid-column: 1 / -1; }

.field input, .field select, .field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #d6cbbb;
    border-radius: 11px;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 4px rgba(184, 138, 59, .15); }
.time-fieldset { padding: 0; margin: 2px 0 18px; border: 0; }
.time-fieldset legend { margin-bottom: 8px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.time-slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; min-height: 45px; }

.time-slot {
    min-height: 43px;
    border: 1px solid #d5c9b8;
    border-radius: 10px;
    background: var(--white);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.time-slot:hover:not(:disabled) { border-color: var(--oxblood); color: var(--oxblood); }
.time-slot.is-selected { border-color: var(--oxblood); background: #f6e8ec; color: var(--oxblood); box-shadow: inset 0 0 0 1px var(--oxblood); }
.time-slot:disabled { background: #f1f4f6; color: #9aa4af; cursor: not-allowed; text-decoration: line-through; }
.slots-message { grid-column: 1 / -1; margin: 8px 0; color: var(--muted); font-size: 13px; }
.form-message { min-height: 22px; margin: -2px 0 8px; color: var(--danger); font-size: 13px; font-weight: 700; }
.booking-success { padding: 18px 8px 8px; text-align: center; }
.success-check { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: #e3eef9; color: var(--success); font-size: 31px; }
.booking-success .section-kicker { justify-content: center; margin-bottom: 8px; }
.booking-success h2 { margin-bottom: 9px; font-size: 30px; letter-spacing: -.04em; }
.booking-success > p:not(.section-kicker) { max-width: 470px; margin-inline: auto; color: var(--muted); }
.success-actions { display: flex; justify-content: center; gap: 10px; }

@media (max-width: 1040px) {
    .header-inner { gap: 20px; }
    .main-nav { gap: 18px; }
    .header-book { display: none; }
    .hero-grid { gap: 50px; }
    .service-row { grid-template-columns: 42px 1fr 80px 105px 48px; }
}

@media (max-width: 820px) {
    .section-shell { padding: 76px 0; }
    .header-inner { min-height: 70px; }
    .menu-toggle { display: block; margin-left: auto; }
    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: 12px; }
    .main-nav a::after { display: none; }
    .header-actions { gap: 8px; }
    .hero { padding-top: 54px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .eyebrow { justify-content: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { width: min(100%, 590px); margin-inline: auto; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-grid article, .benefit-grid article:first-child, .benefit-grid article:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .benefit-grid article:last-child { border-bottom: 0; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .barber-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
    .status-cta-inner { grid-template-columns: 60px 1fr; padding: 36px; }
    .status-cta .button { grid-column: 2; justify-self: start; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .copyright { align-self: start; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section-shell { padding: 62px 0; }
    .brand-logo { width: 58px; height: 58px; border-radius: 12px; }
    .language-switcher { gap: 2px; padding-inline: 6px; }
    .header-actions { order: 2; }
    .menu-toggle { order: 3; margin-left: 0; }
    .hero { padding-top: 44px; }
    .hero h1 { font-size: clamp(48px, 15.5vw, 70px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-image-wrap { border-radius: 39% 39% 20px 20px; }
    .availability-card { bottom: 18px; left: 14px; }
    .hero-monogram { right: 0; }
    .section-heading { margin-bottom: 34px; }
    .section-heading h2 { font-size: 37px; }
    .service-row { grid-template-columns: 34px 1fr auto; gap: 10px; min-height: 105px; }
    .service-copy { padding-right: 4px; }
    .service-copy h3 { font-size: 17px; }
    .service-copy p { display: none; }
    .service-duration { display: none; }
    .service-price { grid-column: 2; grid-row: 2; text-align: left; font-size: 15px; }
    .circle-button { grid-column: 3; grid-row: 1 / span 2; width: 44px; height: 44px; }
    .barber-grid { grid-template-columns: 1fr; }
    .barber-photo { aspect-ratio: 4 / 4.1; }
    .barber-bio { min-height: auto; }
    .status-cta { padding-top: 22px; }
    .status-cta-inner { grid-template-columns: 1fr; gap: 17px; padding: 30px 24px; }
    .status-cta .button { grid-column: 1; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .modal.is-open { align-items: end; }
    .booking-dialog { width: 100%; max-height: 94dvh; padding: 24px 18px calc(20px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; }
    .modal-header {
        position: sticky;
        z-index: 4;
        top: -24px;
        margin: -24px -18px 20px;
        padding: 20px 18px 14px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
    }
    .modal-header h2 { font-size: 29px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .field-full { grid-column: auto; }
    .time-slots { grid-template-columns: repeat(4, 1fr); }
    .submit-booking {
        position: sticky;
        z-index: 3;
        bottom: 0;
        box-shadow: 0 -10px 24px var(--white), 0 10px 24px rgba(11, 17, 27, .12);
    }
    .success-actions { display: grid; }
}

@media (max-width: 430px) {
    .brand-logo { width: 52px; height: 52px; }
    .header-inner { gap: 10px; }
    .header-actions { margin-left: auto; }
    .theme-toggle { width: 39px; height: 39px; }
}

[data-theme="dark"] {
    color-scheme: dark;
    --ink: #f6f0e5;
    --ink-soft: #ddd4c7;
    --muted: #aaa294;
    --blue: #d4aa5e;
    --blue-strong: #e0b86d;
    --blue-pale: #302719;
    --blue-wash: #0b1220;
    --white: #121c2d;
    --line: #303c50;
    --oxblood: #a83253;
    --oxblood-hover: #c04364;
    --brass: #d4aa5e;
    --brass-strong: #e1bb72;
    --danger: #ff8b93;
    --success: #76b2ec;
    --warning: #e5bb70;
    --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

[data-theme="dark"] body { background: var(--blue-wash); }
[data-theme="dark"] .site-header { background: rgba(11, 18, 32, .92); border-color: var(--line); }
[data-theme="dark"] .button-dark { background: linear-gradient(135deg, #f6f0e5, #d9c49f); color: #101b2d; }
[data-theme="dark"] .button-dark:hover { background: linear-gradient(135deg, #fffaf1, var(--blue)); }
[data-theme="dark"] .button-blue { color: #fffaf1; }
[data-theme="dark"] .button-ghost { border-color: #4a566b; }
[data-theme="dark"] .button-ghost:hover { background: #1b273a; }
[data-theme="dark"] .button-light { background: #f6f0e5; color: #101b2d; }
[data-theme="dark"] .hero::before { border-color: rgba(212, 170, 94, .22); box-shadow: 0 0 0 70px rgba(48, 39, 25, .22), 0 0 0 140px rgba(168, 50, 83, .1); }
[data-theme="dark"] .hero-image-wrap { background: #1a2232; }
[data-theme="dark"] .availability-card { border-color: rgba(255, 255, 255, .08); background: rgba(15, 24, 39, .95); }
[data-theme="dark"] .services-section,
[data-theme="dark"] .benefits { background: #0e1727; }
[data-theme="dark"] .service-row:hover { background: #172236; }
[data-theme="dark"] .circle-button { background: #121c2d; }
[data-theme="dark"] .circle-button:hover { background: var(--blue); color: #101622; }
[data-theme="dark"] .barber-card { background: #121c2d; }
[data-theme="dark"] .experience-pill { background: rgba(13, 22, 37, .95); }
[data-theme="dark"] .status-cta-inner { background: linear-gradient(115deg, rgba(168, 50, 83, .26), transparent 48%), #0e1727; color: #f6f0e5; border: 1px solid var(--line); }
[data-theme="dark"] .status-cta p { color: #b8b0a3; }
[data-theme="dark"] .status-icon { background: #202b3e; }
[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea,
[data-theme="dark"] .time-slot { border-color: #3b485e; background: #0e1727; color: #f1eade; }
[data-theme="dark"] .time-slot.is-selected { border-color: var(--brass); background: #352b1d; color: #f0c878; box-shadow: inset 0 0 0 1px var(--brass); }
[data-theme="dark"] .time-slot:disabled { background: #1b2434; color: #788295; }
[data-theme="dark"] .booking-dialog { border-color: #354258; background: #121c2d; }
[data-theme="dark"] .modal-close { background: #0e1727; }
[data-theme="dark"] .booking-notice { border-color: #56462c; color: #e5c887; }

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