/* Luxury Chiropractic Locations — 2c3c4be5 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');

.lcl-2c3c4be5 {
    background: #0F0A1A;
    padding: 160px 80px;
    width: 100%;
    box-sizing: border-box;
}

.lcl-2c3c4be5 *,
.lcl-2c3c4be5 *::before,
.lcl-2c3c4be5 *::after {
    box-sizing: border-box;
}

.lcl-2c3c4be5-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Section Intro ── */

.lcl-2c3c4be5-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 32px;
}

.lcl-2c3c4be5-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #F5F2FA;
    margin: 0 0 32px 0;
    padding: 0;
}

.lcl-2c3c4be5-editorial {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 242, 250, 0.78);
    max-width: 760px;
    margin: 0 0 96px 0;
    padding: 0;
}

/* ── Two-Column Layout ── */

.lcl-2c3c4be5-columns {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 80px;
    align-items: start;
}

/* ── Left: Map ── */

.lcl-2c3c4be5-map-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(155, 150, 174, 0.1);
}

.lcl-2c3c4be5-map-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(50%) contrast(1.05);
}

.lcl-2c3c4be5-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Right: Info Card ── */

.lcl-2c3c4be5-card {
    background: rgba(28, 21, 48, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(155, 150, 174, 0.1);
    border-radius: 4px;
    padding: 48px;
}

.lcl-2c3c4be5-block {
    margin-bottom: 40px;
}

.lcl-2c3c4be5-hours-block {
    margin-bottom: 48px;
}

.lcl-2c3c4be5-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #9B96AE;
    margin-bottom: 12px;
}

.lcl-2c3c4be5-address {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #F5F2FA;
}

.lcl-2c3c4be5-phone {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: #F5F2FA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lcl-2c3c4be5-phone:hover {
    color: #B794FF;
}

/* ── Hours Grid ── */

.lcl-2c3c4be5-hours-grid {
    display: flex;
    flex-direction: column;
}

.lcl-2c3c4be5-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.8;
}

.lcl-2c3c4be5-day {
    color: rgba(245, 242, 250, 0.6);
    flex-shrink: 0;
    min-width: 120px;
}

.lcl-2c3c4be5-time {
    color: rgba(245, 242, 250, 0.92);
    text-align: right;
}

/* ── Booking Button ── */

.lcl-2c3c4be5-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #A73EFF 0%, #C788FF 100%);
    color: #F5F2FA;
    box-shadow: 0 0 24px rgba(167, 62, 255, 0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.lcl-2c3c4be5-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(167, 62, 255, 0.5);
    color: #F5F2FA;
}

/* ── Mobile Responsive ── */

@media (max-width: 767px) {
    .lcl-2c3c4be5 {
        padding: 96px 24px;
    }

    .lcl-2c3c4be5-columns {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lcl-2c3c4be5-card {
        padding: 32px;
    }

    .lcl-2c3c4be5-editorial {
        margin-bottom: 48px;
    }

    .lcl-2c3c4be5-day {
        min-width: 90px;
    }

    .lcl-2c3c4be5-hours-row {
        font-size: 0.8125rem;
    }
}


.lcl-2c3c4be5-email {
    font-size: 1rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}
