/* ============================================================
   Liberty Harbor Home — mobile-only styles
   All rules scoped under .lh-home-mb so they can't leak onto desktop.
   ============================================================ */

.lh-home-mb {
    background-color: #12203B;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0 -12px; /* offset main.blade's #app container if any */
}

.lh-home-mb h1,
.lh-home-mb h2,
.lh-home-mb h3 {
    font-family: 'Big Caslon', 'Times New Roman', serif;
    margin: 0;
}

/* Hero (no big LH logo — nav has it) */
.lh-home-mb .hero {
    padding: 26px 18px 12px;
    text-align: center;
}
.lh-home-mb .hero .tagline {
    font-size: 26px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
}
.lh-home-mb .hero .subtagline {
    font-size: 13px;
    opacity: .85;
    margin: 0 auto 18px;
    max-width: 320px;
    line-height: 1.4;
}

/* 2x2 business photo grid */
.lh-home-mb .biz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 14px 24px;
}
.lh-home-mb .biz-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.lh-home-mb .biz-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.lh-home-mb .biz-card:hover img { transform: scale(1.05); }
.lh-home-mb .biz-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.78) 100%);
}
.lh-home-mb .biz-card .label {
    position: absolute;
    left: 0; right: 0; bottom: 12px;
    text-align: center;
    font-family: 'Big Caslon', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .9);
    z-index: 1;
    line-height: 1.1;
    padding: 0 6px;
}

/* About section (lighter tint) */
.lh-home-mb .about {
    background-color: #182A4C;
    padding: 36px 20px 28px;
    text-align: center;
}
.lh-home-mb .about-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
}
.lh-home-mb .about h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
}
.lh-home-mb .about-body {
    font-size: 14px;
    line-height: 1.5;
    opacity: .9;
    margin: 0;
    text-align: left;
}
.lh-home-mb .about-body.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lh-home-mb .about-body p { margin: 0 0 10px; }
.lh-home-mb .about-body p:last-child { margin-bottom: 0; }
.lh-home-mb .read-more {
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-family: inherit;
}

/* Location section (darker tint) */
.lh-home-mb .location {
    background-color: #0E1B33;
    padding: 24px 18px 36px;
}
.lh-home-mb .location h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 14px;
}
.lh-home-mb .map-frame {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px;
    display: block;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
}
.lh-home-mb .address-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    margin-bottom: 20px;
}
.lh-home-mb .address-card .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 6px;
}
.lh-home-mb .address-card .addr {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.lh-home-mb .address-card .phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* Business directory accordion */
.lh-home-mb .directory h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 14px;
}
.lh-home-mb .biz-item {
    background: #284b65;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}
.lh-home-mb .biz-toggle {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.lh-home-mb .biz-toggle .biz-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lh-home-mb .biz-toggle .biz-logo img { max-width: 100%; max-height: 100%; }
.lh-home-mb .biz-toggle .name {
    font-family: 'Big Caslon', 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 600;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.lh-home-mb .biz-toggle .name .sub {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .65;
    margin-top: 2px;
}
.lh-home-mb .biz-toggle .chev {
    color: #fff;
    transition: transform .2s;
}
.lh-home-mb .biz-item.open .biz-toggle .chev { transform: rotate(180deg); }

.lh-home-mb .biz-body {
    display: none;
    padding: 0 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.lh-home-mb .biz-item.open .biz-body { display: block; padding-top: 12px; }
.lh-home-mb .biz-body .biz-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}
.lh-home-mb .biz-body .biz-phone i { margin-right: 4px; }
.lh-home-mb .biz-body .hours-list { font-size: 13px; line-height: 1.6; }
.lh-home-mb .biz-body .row-line {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    opacity: .9;
}
.lh-home-mb .biz-body .visit-link {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    margin-top: 10px;
    font-weight: 600;
}
