/* ===== Browner's Barbershop — base styles ===== */

:root {
    /* Navy/red/silver palette sampled directly from the Browner's Barbershop
       logo, replacing the old warm gold theme. Variable names are kept as-is
       (--color-gold etc.) even though the values are red now, so every rule
       already using them re-themes automatically. */
    --color-bg: #0a1120;
    --color-surface: #111e34;
    --color-surface-alt: #1a2d4d;
    --color-gold: #c8202e;
    --color-gold-dark: #96121f;
    --color-cream: #eef1f6;
    --color-muted: #8a96ab;
    --color-success: #3fae6d;
    --color-danger: #e2704a;
    --color-warning: #d99a3c;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', Arial, sans-serif;

    --radius: 10px;
    --shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    --container-width: 1180px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--color-bg);
    color: var(--color-cream);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin: 0 0 0.5em;
    line-height: 1.2;
}

a {
    color: var(--color-gold);
    text-decoration: none;
}
a:hover { color: var(--color-gold-dark); }

p { margin: 0 0 1em; }

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: var(--color-gold);
    color: #fff;
}
.btn-primary:hover { background: var(--color-gold-dark); }

.btn-outline {
    background: transparent;
    color: var(--color-cream);
    border-color: var(--color-muted);
}
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }

.btn-secondary { background: var(--color-surface-alt); color: var(--color-cream); border-color: var(--color-surface-alt); }
.btn-secondary:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-danger { background: var(--color-danger); color: var(--color-cream); }
.btn-success { background: var(--color-success); color: var(--color-cream); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ----- Demo access banner ----- */
.demo-banner {
    background: var(--color-gold);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 0;
}
.demo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.demo-banner a { color: #fff; text-decoration: underline; }
.demo-banner a:hover { color: rgba(255,255,255,0.8); }
.demo-banner-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* ----- Header / nav ----- */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-surface-alt);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo img { height: 40px; width: auto; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 1.6rem;
    cursor: pointer;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--color-cream);
    font-weight: 500;
}
.main-nav a:hover, .main-nav a.active { color: var(--color-gold); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    .main-nav.open { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        padding: 16px 0;
    }

    .site-header .container { flex-wrap: wrap; }
}

/* ----- Cards ----- */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

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

/* ----- Forms ----- */
.form-group { margin-bottom: 18px; }

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-muted);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--color-surface-alt);
    background: var(--color-bg);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.field-error {
    color: var(--color-danger);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ----- Alerts ----- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.alert-success { background: rgba(91, 140, 90, 0.15); border: 1px solid var(--color-success); color: var(--color-success); }
.alert-error   { background: rgba(179, 65, 58, 0.15); border: 1px solid var(--color-danger); color: #e08a83; }
.alert-info    { background: rgba(200, 32, 46, 0.12); border: 1px solid var(--color-gold); color: var(--color-gold); }

/* ----- Badges ----- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-pending   { background: rgba(201, 138, 60, 0.18); color: var(--color-warning); }
.badge-approved  { background: rgba(91, 140, 90, 0.18); color: var(--color-success); }
.badge-rejected  { background: rgba(179, 65, 58, 0.18); color: var(--color-danger); }
.badge-cancelled { background: rgba(163, 154, 135, 0.18); color: var(--color-muted); }
.badge-completed { background: rgba(200, 32, 46, 0.18); color: var(--color-gold); }

/* ----- Hero ----- */
.hero {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-surface-alt);
    padding: 90px 0 70px;
    text-align: center;
}
.hero h1 { font-size: 2.6rem; color: var(--color-cream); }
.hero > .container > p { color: var(--color-muted); font-size: 1.15rem; max-width: 560px; margin: 0 auto 28px; }

/* ----- Footer ----- */
.site-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-surface-alt);
    padding: 32px 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* ----- Notification bell ----- */
.notif-bell-wrap { position: relative; display: flex; align-items: center; }

.notif-bell {
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    padding: 4px;
}

.notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--color-danger);
    color: var(--color-cream);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 5px;
    line-height: 1.3;
}

.notif-panel {
    position: absolute;
    top: 36px;
    right: 0;
    width: 300px;
    max-height: 360px;
    overflow-y: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    z-index: 200;
}

.notif-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-surface-alt);
    font-size: 0.85rem;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { color: var(--color-cream); }
.notif-item:not(.unread) { color: var(--color-muted); }
.notif-item .notif-time { display: block; font-size: 0.75rem; color: var(--color-muted); margin-top: 2px; }

@media (max-width: 768px) {
    .notif-panel { position: static; width: 100%; margin-top: 8px; }
}

/* ----- Responsive tables ----- */
.table-responsive {
    overflow-x: auto;
}

/* ----- Booking flow ----- */

.booking-wrap {
    padding-bottom: 80px;
}

/* Progress steps bar */
.booking-steps-bar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-surface-alt);
    padding: 18px 0;
    position: sticky;
    top: 57px; /* below site header */
    z-index: 90;
}
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}
.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.step-bubble {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--color-surface-alt);
    background: var(--color-surface-alt);
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.step-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}
.step-line {
    flex: 1;
    height: 2px;
    background: var(--color-surface-alt);
    margin: 0 6px;
    margin-bottom: 20px;
}
.booking-step.active .step-bubble {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #fff;
}
.booking-step.active .step-label { color: var(--color-gold); }
.booking-step.done .step-bubble {
    border-color: var(--color-success);
    background: var(--color-success);
    color: #fff;
    font-size: 0;
}
.booking-step.done .step-bubble::after { content: '✓'; font-size: 0.8rem; }
.booking-step.done .step-label { color: var(--color-success); }

/* Two-column layout */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    padding-top: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .booking-layout { grid-template-columns: 1fr; }
    .booking-summary-col { order: -1; }
}

/* Each step section */
.booking-section {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: opacity 0.25s, filter 0.25s;
}
.booking-section.locked {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(0.3);
}
.booking-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.booking-section-head h2 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
}
.booking-section-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Service cards */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.svc-card {
    border: 2px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
    background: var(--color-bg);
}
.svc-card:hover { border-color: var(--color-gold); }
.svc-card.selected {
    border-color: var(--color-gold);
    background: rgba(200,32,46,0.07);
}
.svc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.svc-card-name {
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.3;
}
.svc-card-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-gold);
    white-space: nowrap;
}
.svc-card-desc {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}
.svc-card-meta {
    font-size: 0.75rem;
    color: var(--color-muted);
}
.svc-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.15s;
}
.svc-card.selected .svc-card-check { opacity: 1; }

/* Barber pick cards */
.barber-pick-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.barber-pick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 14px 16px;
    cursor: pointer;
    background: var(--color-bg);
    transition: border-color 0.15s, background 0.15s;
}
.barber-pick-card:hover { border-color: var(--color-gold); }
.barber-pick-card.selected {
    border-color: var(--color-gold);
    background: rgba(200,32,46,0.07);
}
.barber-pick-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface-alt);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gold);
    flex-shrink: 0;
    overflow: hidden;
}
.barber-pick-avatar img { width: 100%; height: 100%; object-fit: cover; }
.barber-pick-info { flex: 1; min-width: 0; }
.barber-pick-name {
    font-weight: 700;
    font-size: 0.92rem;
}
.barber-pick-spec {
    font-size: 0.78rem;
    color: var(--color-gold);
    margin-top: 2px;
}
.barber-pick-check {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.15s;
    flex-shrink: 0;
}
.barber-pick-card.selected .barber-pick-check { opacity: 1; }

/* Calendar */
.calendar-wrap { max-width: 360px; }
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cal-nav-btn {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-surface-alt);
    color: var(--color-cream);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}
.cal-nav-btn:hover { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }
.cal-month-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-cream);
}
.cal-dow-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}
.cal-dow {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    padding: 4px 0;
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    color: var(--color-cream);
    transition: background 0.12s, border-color 0.12s;
}
.cal-day:hover:not(.past):not(.empty) {
    background: var(--color-surface-alt);
    border-color: var(--color-gold);
}
.cal-day.past {
    color: var(--color-surface-alt);
    cursor: default;
}
.cal-day.empty { cursor: default; }
.cal-day.is-today {
    border-color: var(--color-muted);
    color: var(--color-cream);
}
.cal-day.selected {
    background: var(--color-gold);
    color: #fff;
    font-weight: 700;
    border-color: var(--color-gold);
}

/* Time slots */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
}
.slot-btn {
    padding: 10px 6px;
    border-radius: var(--radius);
    border: 2px solid var(--color-surface-alt);
    background: var(--color-bg);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.12s, background 0.12s, color 0.12s;
}
.slot-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.slot-btn.selected {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* Loading state */
.booking-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 0.88rem;
    padding: 12px 0;
}
.booking-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-surface-alt);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.booking-placeholder {
    color: var(--color-muted);
    font-size: 0.88rem;
    margin: 0;
}

/* Summary panel */
.booking-summary-col {
    position: sticky;
    top: 110px;
}
.booking-summary {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 24px;
}
.booking-summary h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-surface-alt);
}
.summary-rows { margin-bottom: 20px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-surface-alt);
    font-size: 0.88rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-key { color: var(--color-muted); flex-shrink: 0; }
.summary-val {
    color: var(--color-cream);
    font-weight: 600;
    text-align: right;
}
.summary-notes label {
    color: var(--color-muted);
    font-size: 0.82rem;
    margin-bottom: 6px;
}
.summary-notes textarea {
    margin-bottom: 16px;
    font-size: 0.88rem;
    resize: vertical;
}
.summary-hint {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.4;
}

/* ----- Homepage ----- */
.hero {
    background: linear-gradient(160deg, #16233c 0%, #0a1120 60%);
    border-bottom: 1px solid var(--color-surface-alt);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,32,46,0.10) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 20px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 780px) {
    .hero-inner { grid-template-columns: 1fr; padding: 56px 20px 48px; }
    .hero-right { display: none; }
}

.hero-left .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}
.hero-left h1 {
    font-size: 3rem;
    color: var(--color-cream);
    margin-bottom: 16px;
    line-height: 1.1;
}
.hero-left h1 em {
    font-style: normal;
    color: var(--color-gold);
}
.hero-left p {
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 440px;
    margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--color-surface-alt);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 2px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-appt-card {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.15s;
}
.hero-appt-card:hover { border-color: var(--color-gold); }
.hero-appt-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-surface-alt);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gold);
    flex-shrink: 0;
    overflow: hidden;
}
.hero-appt-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-appt-info { flex: 1; min-width: 0; }
.hero-appt-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-cream);
    margin-bottom: 2px;
}
.hero-appt-meta { font-size: 0.78rem; color: var(--color-muted); }
.hero-appt-status { flex-shrink: 0; }
.avail-dot-on  { color: #7ec27d; font-size: 0.75rem; font-weight: 700; }
.avail-dot-off { color: var(--color-muted); font-size: 0.75rem; }

/* Homepage section rhythm */
.home-section {
    padding: 64px 0;
}
.home-section + .home-section {
    border-top: 1px solid var(--color-surface-alt);
}
.home-section-header {
    margin-bottom: 36px;
}
.home-section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.home-section-header p {
    color: var(--color-muted);
    margin: 0;
}

/* Barber cards */
.barber-card {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}
.barber-card:hover { border-color: var(--color-gold); }
.barber-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.barber-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-surface-alt);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    flex-shrink: 0;
    overflow: hidden;
}
.barber-avatar img { width: 100%; height: 100%; object-fit: cover; }
.barber-card-bio {
    font-size: 0.87rem;
    color: var(--color-muted);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.55;
}
.barber-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}
.avail-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
}
.avail-pill-on  { background: rgba(91,140,90,0.18); color: #7ec27d; }
.avail-pill-off { background: rgba(163,154,135,0.12); color: var(--color-muted); }

/* Service mini-cards */
.service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .service-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .service-row { grid-template-columns: 1fr; }
}
.service-mini {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.15s;
}
.service-mini:hover { border-color: var(--color-gold); }
.service-mini-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.service-mini-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.service-mini-meta { font-size: 0.8rem; color: var(--color-muted); }

/* Why section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.why-item {
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-surface-alt);
    border-radius: var(--radius);
    text-align: center;
}
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-item h3 { font-size: 1rem; margin-bottom: 8px; }
.why-item p  { font-size: 0.86rem; color: var(--color-muted); margin: 0; }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, #182741 0%, #0a1120 100%);
    border-top: 1px solid var(--color-surface-alt);
    padding: 64px 0;
    text-align: center;
}
.cta-band h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-band p  { color: var(--color-muted); max-width: 440px; margin: 0 auto 28px; }

@media (max-width: 600px) {
    .hero-left h1 { font-size: 2.1rem; }
    .hero-stats { gap: 18px; }
    .home-section { padding: 44px 0; }
}
