/* ============================================================
   LUMIER COSMETOLOGÍA INTEGRAL — styles.css
   ============================================================ */

/* ======================== VARIABLES ======================== */
:root {
    --primary:       #D7C7BB;
    --secondary:     #A09C93;
    --black:         #1a1a1a;
    --dark:          #2c2c2c;
    --text:          #3a3a3a;
    --text-light:    #7a7068;
    --light:         #FAF7F5;
    --white:         #ffffff;
    --shadow:        0 4px 24px rgba(160,156,147,0.10);
    --shadow-hover:  0 10px 40px rgba(160,156,147,0.22);
    --radius:        16px;
    --radius-sm:     10px;
    --transition:    0.3s ease;
    --nav-height:    72px;
}

/* ======================== RESET ======================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ======================== SCROLL REVEAL ======================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== UTILITIES ======================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--secondary);
    margin: 14px auto 0;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: #7a7670;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(160, 156, 147, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(160, 156, 147, 0.6);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid rgba(160,156,147,0.97);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.04em;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================== HERO ======================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 48px) 5vw 64px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(160, 156, 147, 0.60);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-slogan {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-slogan em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

/* ======================== SERVICIOS ======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(215,199,187,0.5);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    color: var(--white);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
}

.service-short {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.04em;
    transition: letter-spacing var(--transition);
}

.service-card:hover .card-link {
    letter-spacing: 0.08em;
}

/* ======================== MODAL ======================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 40px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(24px);
    transition: transform 0.3s ease;
    text-align: center;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
    transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
    background: var(--secondary);
    color: var(--white);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0 auto 20px;
}

.modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
}

.modal p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ======================== NOSOTROS — ABOUT ======================== */
.about-content {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
    text-align: left;
}

.about-avatar {
    flex-shrink: 0;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    overflow: hidden;
    background: #A09C93;
    border: 3px solid #A09C93;
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-bio {
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.85;
}

.about-bio--second {
    margin-top: 16px;
    color: var(--text-light);
}

/* ======================== GOOGLE RATING ======================== */
.google-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid rgba(215,199,187,0.6);
    border-radius: 60px;
    padding: 16px 32px;
    box-shadow: var(--shadow);
}

.rating-badge > .fa-google {
    font-size: 1.8rem;
    color: var(--secondary);
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars .stars {
    color: #f5b800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.rating-count {
    font-size: 0.83rem;
    color: var(--text-light);
}

/* ======================== RESEÑAS CARRUSEL ======================== */
.reviews-section {
    text-align: center;
}

.reviews-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 36px;
}

.carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track-wrap {
    flex: 1;
    position: relative;
}

.carousel-track {
    position: relative;
    width: 100%;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: var(--white);
    border: 1px solid rgba(215,199,187,0.5);
    border-radius: var(--radius);
    padding: 32px 36px;
    text-align: left;
    box-shadow: var(--shadow);
}

.review-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

.reviewer-info .stars {
    color: #f5b800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
}

.carousel-btn {
    background: var(--white);
    border: 1px solid rgba(215,199,187,0.6);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--secondary);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* ======================== CONTACTO ======================== */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(215,199,187,0.5);
    border-radius: var(--radius);
    padding: 28px 24px;
    width: 180px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow);
}

a.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--secondary);
    transition: background var(--transition), color var(--transition);
}

a.contact-card:hover .contact-icon {
    background: var(--secondary);
    color: var(--white);
}

.contact-card.whatsapp .contact-icon  { background: #e7f9ef; color: #25D366; }
.contact-card.instagram .contact-icon { background: #fce4ec; color: #C13584; }
.contact-card.phone .contact-icon     { background: var(--primary); color: var(--secondary); }

a.contact-card.whatsapp:hover .contact-icon  { background: #25D366; color: #fff; }
a.contact-card.instagram:hover .contact-icon { background: #C13584; color: #fff; }

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-value {
    font-size: 0.88rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.4;
}

.contact-btn {
    display: inline-block;
    background: var(--light);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    transition: background var(--transition), color var(--transition);
}

a.contact-card:hover .contact-btn {
    background: var(--secondary);
    color: var(--white);
}

/* Specific contact btn overrides */
.contact-card.whatsapp .contact-btn  { background: #e7f9ef; color: #25D366; }
.contact-card.instagram .contact-btn { background: #fce4ec; color: #C13584; }

a.contact-card.whatsapp:hover .contact-btn  { background: #25D366; color: #fff; }
a.contact-card.instagram:hover .contact-btn { background: #C13584; color: #fff; }

/* Schedule bar (horarios horizontal) */
.schedule-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 32px;
    background: var(--white);
    border: 1px solid rgba(215,199,187,0.5);
    border-radius: var(--radius);
    padding: 24px 32px;
    margin-bottom: 36px;
    box-shadow: var(--shadow);
}

.schedule-bar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.schedule-bar-title i {
    color: var(--secondary);
    font-size: 1rem;
}

.schedule-days {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    flex: 1;
}

.schedule-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    min-width: 78px;
    text-align: center;
}

.sday-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sday-hours {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
}

.schedule-day--closed .sday-hours {
    color: var(--text-light);
    font-weight: 400;
}

.schedule-day--closed {
    opacity: 0.55;
}

/* Map */
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(215,199,187,0.4);
}

.map-wrap iframe {
    display: block;
}

/* ======================== FOOTER ======================== */
.footer {
    background: #A09C93;
    color: rgba(255,255,255,0.95);
    padding: 56px 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 320px;
}

.footer-logo {
    height: 68px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid #A09C93;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-slogan {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    font-style: italic;
}

.footer-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}

.footer-nav a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
    letter-spacing: 0.03em;
}

.footer-nav a:hover {
    color: var(--white);
}

/* ======================== WHATSAPP FAB ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-wpp 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
    animation: none;
}

@keyframes pulse-wpp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 960px ---- */
@media (max-width: 960px) {
    .hero {
        padding-top: calc(var(--nav-height) + 32px);
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        margin-bottom: 18px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .section {
        padding: 64px 0;
    }
}

/* ---- 660px ---- */
@media (max-width: 660px) {
    /* Hamburger */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(160,156,147,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .nav-links.open {
        max-height: 280px;
    }

    .nav-links li a {
        display: block;
        padding: 14px 0;
        font-size: 0.95rem;
        border-bottom: none;
    }

    /* Hero */
    .hero {
        padding: calc(var(--nav-height) + 24px) 24px 48px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Modal from bottom */
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .modal {
        border-radius: var(--radius) var(--radius) 0 0;
        max-height: 78vh;
        padding: 20px 20px 28px;
        transform: translateY(100%);
        display: flex;
        flex-direction: column;
    }

    .modal-overlay.active .modal {
        transform: translateY(0);
    }

    /* Drag handle visual cue */
    .modal::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(0,0,0,0.12);
        border-radius: 2px;
        margin: 0 auto 16px;
        flex-shrink: 0;
    }

    .modal-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 12px;
        flex-shrink: 0;
    }

    .modal h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
        flex-shrink: 0;
    }

    .modal p {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 18px;
        overflow-y: auto;
        flex: 1;
        -webkit-overflow-scrolling: touch;
    }

    .modal .btn-primary {
        flex-shrink: 0;
        width: 100%;
        text-align: center;
    }

    /* Carousel buttons hidden on mobile (swipe only) */
    .carousel-btn {
        display: none;
    }

    .review-card {
        padding: 24px 20px;
    }

    /* Contact cards 2 columns */
    .contact-card {
        width: calc(50% - 10px);
        min-width: 140px;
    }

    /* Schedule bar mobile: lista compacta */
    .schedule-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px;
    }

    .schedule-bar-title {
        justify-content: center;
    }

    .schedule-days {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .schedule-day {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: unset;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
    }

    .sday-name {
        font-size: 0.82rem;
        letter-spacing: 0;
    }

    .sday-hours {
        font-size: 0.82rem;
    }

    /* Footer */
    .footer {
        padding: 40px 24px;
    }
}

/* ---- 440px ---- */
@media (max-width: 440px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .about-avatar {
        width: 220px;
        height: 220px;
    }
}
