body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.hero {
    min-height: 100vh;

    background-image: url("crown-blade-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}
.hero-content {
    width: 42%;
    margin-left: 6%;
    color: white;
}

.location {
    color: #c79a4a;
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

h1 {
    font-family: Georgia, serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 2px;
    margin: 0 0 28px 0;
}

.tagline {
    color: #c8c2b8;
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.5;
    max-width: 420px;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 35px;
}

.button {
    display: inline-block;
    width: 210px;
    padding: 17px 0;

    text-align: center;
    text-decoration: none;

    font-family: Georgia, serif;
    font-size: 15px;
    letter-spacing: 2px;

    transition: all 0.3s ease;
}

.button.primary {
    background-color: #c79a4a;
    color: #0b0b0b;
    border: 1px solid #c79a4a;
}

.button.secondary {
    background-color: transparent;
    color: #c79a4a;
    border: 1px solid #c79a4a;
}
.button.primary:hover {
    background-color: #ddb35f;
    border-color: #ddb35f;
    transform: translateX(5px);
}

.button.secondary:hover {
    background-color: rgba(199, 154, 74, 0.1);
    color: #ddb35f;
    border-color: #ddb35f;
    transform: translateX(5px);
}
.logo {
    position: absolute;
    top: 45px;
    left: 130px;

    width: 250px;
    height: auto;

    z-index: 10;
}
.nav-links {
    position: absolute;
    top: 48px;
    right: 55px;

    display: flex;
    align-items: center;
    gap: 30px;

    z-index: 10;
}

.nav-links a {
    position: relative;

    color: #e9e5dc;
    text-decoration: none;

    font-size: 14px;
    letter-spacing: 1.5px;

    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background-color: #c79a4a;

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #c79a4a;
}

.nav-links a:hover::after {
    width: 100%;
}
.services {
    background-color: #0d0d0d;

    min-height: 80vh;

    padding: 100px 8%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.services-heading {
    text-align: center;
}

.services-heading p {
    color: #c79a4a;
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 18px;
}

.services-heading h2 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
}
.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
}

.service-card {
    width: 280px;
    padding: 35px;
    border: 1px solid #2c2c2c;
    color: white;
}

.service-card h3 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
}

.service-card p {
    color: #aaa49a;
    line-height: 1.6;
}

.service-card span {
    display: block;
    color: #c79a4a;
    font-family: Georgia, serif;
    font-size: 28px;
    margin-top: 25px;
}
.service-card {
    transition: transform 0.3s ease,
                border-color 0.3s ease,
                background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c79a4a;
    background-color: #121212;
}
.service-card p {
    min-height: 52px;
}
.service-link {
    display: inline-block;
    margin-top: 22px;

    color: #c79a4a;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 2px;

    border-bottom: 1px solid transparent;

    transition: border-color 0.25s ease,
                color 0.25s ease;
}

.service-link:hover {
    color: #ddb35f;
    border-color: #ddb35f;
}
html {
    scroll-behavior: smooth;
}
.barbers {
    background-color: #151311;

    min-height: 100vh;

    padding: 100px 8%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.barbers-heading {
    text-align: left;
    max-width: 700px;
}

.barbers-heading p {
    color: #c79a4a;
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 18px;
}

.barbers-heading h2 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
}
.barber-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.barber-card {
    flex: 1;
}

.barber-photo {
    width: 100%;
    height: 380px;

    background-color: #211e1a;
    border: 1px solid #302b25;

    margin-bottom: 25px;
}

.barber-card h3 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 1.5px;

    margin: 0 0 8px;
}

.barber-card span {
    color: #c79a4a;
    font-size: 11px;
    letter-spacing: 3px;
}

.barber-card p {
    color: #aaa49a;
    font-size: 14px;
    margin: 14px 0 20px;
}

.barber-card a {
    color: #c79a4a;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 2px;

    border-bottom: 1px solid transparent;

    transition: color 0.25s ease,
                border-color 0.25s ease;
}

.barber-card a:hover {
    color: #ddb35f;
    border-color: #ddb35f;
}
.barber-photo {
    overflow: hidden;
}

.barber-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.barber-card:hover .barber-photo img {
    transform: scale(1.04);
}
.barber-card:nth-child(1) .barber-photo img {
    object-position: center 35%;
}

.barber-card:nth-child(2) .barber-photo img {
    object-position: center 35%;
}

.barber-card:nth-child(3) .barber-photo img {
    object-position: center center;
}
.gallery {
    background-color: #0d0d0d;
    padding: 100px 8%;
    box-sizing: border-box;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 55px;
}

.gallery-heading p {
    color: #c79a4a;
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 18px;
}

.gallery-heading h2 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 230px 230px;
    gap: 18px;
}

.gallery-item {
    background-color: #1a1816;
    border: 1px solid #2b2824;
    overflow: hidden;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}
.reveal {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.25s;
}

.delay-3 {
    transition-delay: 0.4s;
}
.gallery-item {
    opacity: 0;
    transform: scale(0.96);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1);
}
.gallery-item.reveal {
    transform: scale(0.96);
}

.gallery-item.reveal.active {
    transform: scale(1);
}
/* BOOKING FLOW - FULL SCREEN SECTIONS */

.services {
    min-height: 100vh !important;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 8% !important;
    box-sizing: border-box;
}

.barbers {
    min-height: 100vh !important;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 8% !important;
    box-sizing: border-box;
}
.booking-page {
    min-height: 100vh;
    background-color: #0d0d0d;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 60px 20px;
    box-sizing: border-box;
}

.booking-container {
    width: 100%;
    max-width: 760px;

    padding: 50px;

    background-color: #121212;
    border: 1px solid #2c2c2c;

    box-sizing: border-box;
}

.booking-label {
    color: #c79a4a;
    font-size: 12px;
    letter-spacing: 5px;

    margin-bottom: 15px;
}

.booking-container h1 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;

    margin: 0 0 35px;
}

.booking-summary {
    padding: 20px 0;
    margin-bottom: 30px;

    border-top: 1px solid #2c2c2c;
    border-bottom: 1px solid #2c2c2c;

    color: #c79a4a;
    letter-spacing: 1px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-form label {
    color: #f2efe9;
    font-size: 13px;
    letter-spacing: 1px;

    margin-top: 12px;
}

.booking-form input,
.booking-form select {
    background-color: #0d0d0d;
    color: #f2efe9;

    border: 1px solid #343434;

    padding: 15px 16px;

    font-size: 15px;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #c79a4a;
}

.confirm-booking {
    margin-top: 25px;

    background-color: #c79a4a;
    color: #0b0b0b;

    border: 1px solid #c79a4a;

    padding: 17px 25px;

    font-size: 13px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s ease;
}

.confirm-booking:hover {
    background-color: #ddb35f;
    border-color: #ddb35f;

    transform: translateY(-2px);
}
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.time-message {
    grid-column: 1 / -1;
    color: #8f8a82;
    font-size: 14px;
}

.time-slot {
    background-color: #0d0d0d;
    color: #f2efe9;

    border: 1px solid #343434;

    padding: 14px 10px;

    cursor: pointer;

    font-size: 14px;
    letter-spacing: 1px;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.time-slot:hover {
    border-color: #c79a4a;
    color: #c79a4a;

    transform: translateY(-2px);
}

.time-slot.selected {
    background-color: #c79a4a;
    border-color: #c79a4a;
    color: #0b0b0b;
}
.date-slots {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 8px 0 22px;
}

.date-slot {
    background-color: #0d0d0d;
    border: 1px solid #343434;
    color: #f2efe9;

    padding: 16px 8px;

    cursor: pointer;
    text-align: center;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}

.date-slot:hover {
    border-color: #c79a4a;
    transform: translateY(-2px);
}

.date-slot.selected {
    border-color: #c79a4a;
    background-color: #191611;
}

.date-day {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa49a;
    margin-bottom: 7px;
}

.date-number {
    display: block;
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.availability-dot {
    display: block;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    margin: 0 auto;
}

.availability-good {
    background-color: #4f9b62;
}

.availability-limited {
    background-color: #c79a4a;
}

.availability-low {
    background-color: #a64b42;
}

.availability-closed {
    background-color: #555555;
}
.booking-confirmation {
    display: none;
    text-align: center;
}

.booking-confirmation h2 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin: 10px 0 35px;
}

.confirmation-details {
    border-top: 1px solid #2c2c2c;
    border-bottom: 1px solid #2c2c2c;
    padding: 25px 0;
    margin-bottom: 35px;
}

.confirmation-details p {
    color: #c8c2b8;
    margin: 10px 0;
}

.back-home {
    display: inline-block;
    color: #c79a4a;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
}
.confirmation-details {
    text-align: left;
    padding: 30px 0;
    margin-bottom: 35px;

    border-top: 1px solid #2c2c2c;
    border-bottom: 1px solid #2c2c2c;
}

.confirmation-label {
    color: #c79a4a !important;
    font-size: 12px;
    letter-spacing: 4px;
    margin: 0 0 18px !important;
}

.confirmation-details h3 {
    color: #f2efe9;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px;
}

.confirmation-barber {
    color: #c79a4a !important;
    font-size: 16px;
}

.confirmation-divider {
    width: 40px;
    height: 1px;
    background-color: #c79a4a;
    margin: 25px 0;
}

.confirmation-date {
    color: #f2efe9 !important;
    font-size: 19px;
    margin-bottom: 8px !important;
}

.confirmation-name {
    color: #8f8a82 !important;
    font-size: 15px;
}
.availability-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 4px 0 22px;
}

.availability-legend span {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #8f8a82;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.good {
    background-color: #4f9b62;
}

.legend-dot.limited {
    background-color: #c79a4a;
}

.legend-dot.low {
    background-color: #a64b42;
}

.legend-dot.closed {
    background-color: #555555;
}
.booking-change-links {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.booking-change-links a {
    color: #8f8a82;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 1.5px;

    transition: color 0.25s ease;
}

.booking-change-links a:hover {
    color: #c79a4a;
}
.booking-error {
    min-height: 18px;
    margin: 8px 0 0;

    color: #c76b62;
    font-size: 13px;
    letter-spacing: 0.5px;
}
/* =========================
   MOBILE RESPONSIVE DESIGN
   ========================= */
.menu-toggle {
    display: none;
}
@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
        background-position: 60% center;
    }
.booking-page {
    padding: 20px 12px;
    align-items: flex-start;
}

.booking-container {
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
}

.date-slots {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slots {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.booking-container h1 {
    font-size: 34px;
}

.booking-form input,
.booking-form select {
    width: 100%;
}

.confirm-booking {
    width: 100%;
}
h1 {
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: 1px;
}
.nav-links {
    top: 25px;
    right: 20px;

    gap: 14px;

    flex-wrap: wrap;
    justify-content: flex-end;

    max-width: 220px;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 1px;
}
.logo {
    width: 180px;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}
.menu-toggle {
    display: block;

    position: absolute;
    top: 25px;
    right: 20px;

    background: transparent;
    border: none;

    color: #f2efe9;
    font-size: 28px;

    cursor: pointer;

    z-index: 20;
}

.nav-links {
    display: none;

    position: absolute;
    top: 70px;
    right: 20px;

    width: 220px;

    background-color: #0d0d0d;
    border: 1px solid #2c2c2c;

    padding: 20px;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    z-index: 19;
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    font-size: 12px;
    letter-spacing: 1.5px;
}

.mobile-book-link {
    width: 100%;
    box-sizing: border-box;

    margin-top: 5px;
    padding: 12px 14px;

    border: 1px solid #c79a4a;

    color: #c79a4a !important;
}
.services {
    min-height: auto;
    padding: 80px 24px;
}

.services-heading h2 {
    font-size: 34px;
    line-height: 1.1;
}

.service-cards {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 25px;
}

.service-card {
    width: 100%;
    min-height: 0;
    padding: 20px 24px;
    box-sizing: border-box;
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-card p {
    min-height: 0;
    margin: 8px 0 12px;
    line-height: 1.4;
}

.service-card span {
    margin-top: 8px;
    font-size: 25px;
}

.service-link {
    margin-top: 10px;
}
}

/* Contact and footer */
.contact {
    background: #151311;
    padding: 110px 8%;
    text-align: center;
}

.contact-inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact-label {
    color: #c79a4a;
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 18px;
}

.contact h2 {
    color: #f2efe9;
    font: 400 48px/1.1 Georgia, serif;
    letter-spacing: 2px;
    margin: 0 0 18px;
}

.contact-inner > p:not(.contact-label) {
    color: #aaa49a;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto 32px;
}

.contact .button { margin: 0 auto; }

.site-footer {
    background: #090909;
    border-top: 1px solid #24211e;
    padding: 42px 8%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-footer img { width: 150px; height: auto; }
.site-footer p { color: #8f8a82; margin: 0; flex: 1; }
.site-footer a {
    color: #c79a4a;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
}

/* Complete mobile pass */
@media (max-width: 768px) {
    html, body { max-width: 100%; overflow-x: hidden; }

    .hero {
        min-height: 100svh;
        align-items: flex-end;
        position: relative;
        background-position: 64% center;
        padding: 0 24px 64px;
        box-sizing: border-box;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.12) 18%, rgba(0,0,0,.25) 44%, rgba(0,0,0,.9) 100%);
    }

    .logo {
        width: 172px;
        top: 28px;
        left: 24px;
        transform: none;
    }

    .menu-toggle {
        position: absolute;
        top: 27px;
        right: 22px;
        width: 46px;
        height: 46px;
        padding: 0;
        display: grid;
        place-items: center;
        background: rgba(8,8,8,.82);
        border: 1px solid rgba(199,154,74,.55);
        color: #f2efe9;
        font-size: 25px;
        line-height: 1;
        z-index: 30;
    }

    .nav-links {
        position: absolute;
        inset: 0;
        width: auto;
        max-width: none;
        padding: 110px 30px 38px;
        box-sizing: border-box;
        background: rgba(9,9,9,.98);
        border: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        z-index: 25;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #2c2824;
        color: #f2efe9;
        font: 400 21px/1.2 Georgia, serif;
        letter-spacing: 1px;
    }

    .nav-links a::after { display: none; }
    .nav-links .mobile-book-link {
        margin-top: 24px;
        padding: 16px 18px;
        text-align: center;
        font: 13px Arial, sans-serif;
        letter-spacing: 2px;
        border: 1px solid #c79a4a;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        margin: 0;
    }

    h1 {
        max-width: 340px;
        font-size: clamp(45px, 13vw, 62px);
        line-height: .96;
        letter-spacing: 0;
        margin-bottom: 22px;
    }

    .tagline {
        max-width: 300px;
        margin: 0;
        color: #ded8cf;
        font-size: 19px;
        line-height: 1.45;
    }

    .hero-buttons { margin-top: 28px; }
    .button {
        width: min(100%, 270px);
        min-height: 52px;
        padding: 16px 20px;
        box-sizing: border-box;
    }

    .services, .barbers, .gallery, .contact {
        min-height: auto !important;
        padding: 78px 24px !important;
    }

    .services-heading, .gallery-heading { text-align: left; }
    .services-heading p, .barbers-heading p, .gallery-heading p, .contact-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .services-heading h2, .barbers-heading h2, .gallery-heading h2, .contact h2 {
        font-size: clamp(32px, 10vw, 42px);
        line-height: 1.05;
        letter-spacing: 1px;
    }

    .service-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 38px;
    }

    .service-card {
        width: 100%;
        min-height: 0;
        padding: 28px 24px;
    }

    .service-card p { min-height: 0; }
    .service-card:hover, .barber-card:hover .barber-photo img, .gallery-item:hover img { transform: none; }

    .barbers-heading { max-width: 360px; }
    .barber-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 46px;
        margin-top: 42px;
    }

    .barber-card { min-width: 0; }
    .barber-photo {
        height: auto;
        aspect-ratio: 4 / 3;
        margin-bottom: 20px;
    }

    .barber-card h3 { font-size: 24px; }
    .barber-card p { line-height: 1.55; }
    .barber-card a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .gallery-heading { margin-bottom: 34px; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        gap: 10px;
    }

    .gallery-item, .gallery-large {
        grid-column: auto;
        grid-row: auto;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .gallery-large {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 3;
    }

    .contact { text-align: left; }
    .contact-inner { margin: 0; }
    .contact-inner > p:not(.contact-label) { margin-left: 0; }
    .contact .button { margin: 0; }

    .site-footer {
        padding: 38px 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .site-footer img { width: 145px; }

    .booking-page {
        min-height: 100svh;
        padding: 14px;
    }

    .booking-container { padding: 30px 20px; }
    .booking-container h1, .booking-confirmation h2 {
        font-size: clamp(32px, 10vw, 40px);
        line-height: 1.08;
        margin-bottom: 28px;
    }

    .booking-summary { padding: 18px 0; }
    .booking-change-links { flex-wrap: wrap; gap: 12px 20px; }
    .booking-change-links a { min-height: 32px; display: inline-flex; align-items: center; }

    .date-slots {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        margin-right: -20px;
        padding-right: 20px;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .date-slots::-webkit-scrollbar { display: none; }

    .delay-1, .delay-2, .delay-3 { transition-delay: 0s; }

    .date-slot {
        flex: 0 0 64px;
        padding: 14px 7px;
        scroll-snap-align: start;
    }

    .availability-legend { gap: 10px 16px; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .time-slot { min-height: 48px; }

    .booking-form input, .booking-form select {
        min-height: 52px;
        font-size: 16px;
    }

    .confirm-booking { min-height: 54px; }
}

@media (max-width: 380px) {
    .hero { padding-inline: 20px; }
    .logo { left: 20px; width: 155px; }
    h1 { font-size: 43px; }
    .services, .barbers, .gallery, .contact { padding-inline: 20px !important; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-large, .gallery-item { grid-column: auto; aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .reveal, .gallery-item { opacity: 1; transform: none; }
}
