/* ============================================
   WEBSTER ELECTRICAL - INNER PAGES (SHARED)
   ============================================ */

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi/Satoshi-Regular.woff2') format('woff2'),
         url('/fonts/satoshi/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Satoshi', sans-serif; color: #303231; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }

/* Section Title */
.we-section-title { font-family: 'Satoshi', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: #303231; margin-bottom: 24px; }
.we-section-title--light { color: #fff; }
.we-section-title--center { text-align: center; }
.we-section-title--center .we-section-title__line { margin: 12px auto 0; }
.we-section-title__line { display: block; width: 48px; height: 3px; background: #e8a020; margin-top: 12px; border-radius: 2px; }

/* Buttons */
.we-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-family: 'Satoshi', sans-serif; font-size: 0.95rem; font-weight: 700; text-decoration: none; border-radius: 6px; border: none; transition: background 0.2s ease; cursor: pointer; }
.we-btn--primary { background: #e8a020; color: #303231; }
.we-btn--primary:hover { background: #d4911a; }
.we-btn--dark { background: #303231; color: #fff; }
.we-btn--dark:hover { background: #1a1b1a; }
.we-btn--book { background: #303231; color: #fff; }
.we-btn--book:hover { background: #1a1b1a; }

/* Contextual Links */
.we-link { color: #303231; text-decoration: underline; text-decoration-color: #e8a020; text-underline-offset: 3px; text-decoration-thickness: 2px; font-weight: 500; transition: color 0.2s ease; }
.we-link:hover { color: #e8a020; }
.we-link--light { color: #fff; text-decoration-color: #e8a020; }
.we-link--light:hover { color: #e8a020; }

/* Utility */
.we-text--white { color: #fff !important; }

/* Content Section */
.we-section { padding: 80px 0; }
.we-section--light { background: #f7f7f4; }
.we-section--dark { background: #303231; color: #fff; }
.we-section--dark .we-section-title { color: #fff; }
.we-section--dark p { color: rgba(255,255,255,0.75); }
.we-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.we-section__inner--narrow { max-width: 800px; }
.we-section__inner--mid { max-width: 1060px; }

/* CTA Section */
.we-inner-cta { padding: 80px 0; background: #e8a020; text-align: center; }
.we-inner-cta__inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.we-inner-cta .we-section-title { color: #303231; }
.we-inner-cta .we-section-title__line { background: #303231; margin: 12px auto 0; }
.we-inner-cta p { font-size: 1.05rem; color: rgba(48,50,49,0.8); margin-bottom: 32px; }
.we-inner-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px; }
.we-inner-cta__reviews { padding-top: 4px; }


/* ============================================
   LOCATIONS HUB - GRADIENT HERO
   ============================================ */

.we-lochub-hero {
    padding: 56px 24px;
    text-align: center;
    background: linear-gradient(135deg, #303231 0%, #383a39 70%, #4a4330 100%);
}

.we-lochub-hero__inner { max-width: 1280px; margin: 0 auto; }

.we-lochub-hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.we-lochub-hero__breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.we-lochub-hero__breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s ease; }
.we-lochub-hero__breadcrumb a:hover { color: #fff; }
.we-lochub-hero__breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 6px; }
.we-lochub-hero__reviews { padding-top: 16px; }


/* ============================================
   LOCATIONS HUB - STACKED CARDS
   ============================================ */

.we-loc-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.we-loc-item {
    border-radius: 12px;
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.we-loc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Left accent bar */
.we-loc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: #e8a020;
}

.we-loc-item__content { flex: 1; }

.we-loc-item h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #303231;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.we-loc-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
}

.we-loc-item .we-btn { align-self: center; }

/* Badge */
.we-loc-item__badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #303231;
    color: #e8a020;
    padding: 3px 10px;
    border-radius: 4px;
}

/* --- Light variant --- */
.we-loc-item--light { background: #edeadf; }

/* --- Dark variant --- */
.we-loc-item--dark { background: #303231; }
.we-loc-item--dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.we-loc-item--dark h3 { color: #fff; }
.we-loc-item--dark p { color: rgba(255,255,255,0.75); }
.we-loc-item--dark::before { background: #e8a020; }

/* --- Gold variant --- */
.we-loc-item--gold { background: #e8a020; }
.we-loc-item--gold:hover { box-shadow: 0 8px 24px rgba(232,160,32,0.3); }
.we-loc-item--gold::before { background: #303231; }
.we-loc-item--gold h3 { color: #303231; }
.we-loc-item--gold p { color: rgba(48,50,49,0.85); }
.we-loc-item--gold .we-link { color: #303231; text-decoration-color: rgba(48,50,49,0.4); font-weight: 700; }
.we-loc-item--gold .we-link:hover { color: #fff; text-decoration-color: #fff; }
.we-loc-item--gold .we-loc-item__badge { background: #303231; color: #e8a020; }

/* Desktop/tablet - horizontal layout */
@media (min-width: 768px) {
    .we-loc-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 48px 44px 48px 48px;
    }

    .we-loc-item h3 { justify-content: flex-start; }
    .we-loc-item .we-btn { align-self: center; flex-shrink: 0; }
}
