/* ── The Tribe Maker Landing Page Generator ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
.tm-lpg-wrap { font-family: inherit; line-height: 1.6; }
.tm-lpg-wrap img { max-width: 100%; height: auto; display: block; }

/* ── BUTTON ──────────────────────────────────────────────────────────────────── */
.tm-lpg-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 4px;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-top: 22px;
    transition: opacity .2s ease;
    cursor: pointer;
    border: none;
}
.tm-lpg-btn:hover { opacity: .85; }

/* ── SECTION BAR (coloured headline strips) ──────────────────────────────────── */
.tm-lpg-section-bar { text-align: center; padding: 18px 24px; }
.tm-lpg-section-bar h2 { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0; }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.tm-lpg-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}
.tm-lpg-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.tm-lpg-hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}
.tm-lpg-hero__line { color: #fff; margin: 0; line-height: 1.25; }
.tm-lpg-hero__line--1 { font-size: 1.1rem; font-style: italic; }
.tm-lpg-hero__line--2 { font-size: 2rem; font-weight: 700; margin-top: 6px; }
.tm-lpg-hero__line--3 { font-size: 1.15rem; margin-top: 8px; }

/* ── SUB-HERO BAR ────────────────────────────────────────────────────────────── */
.tm-lpg-subhero {
    text-align: center;
    padding: 22px 24px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.tm-lpg-subhero p { font-size: 1.05rem; font-weight: 600; margin: 0; color: #222; }

/* ── INFO BLOCK ──────────────────────────────────────────────────────────────── */
.tm-lpg-info { padding: 60px 24px; text-align: center; }
.tm-lpg-info__inner { max-width: 780px; margin: 0 auto; }
.tm-lpg-info h2 { font-size: 1.55rem; font-weight: 700; margin-bottom: 18px; }
.tm-lpg-info__body { font-size: 1rem; line-height: 1.75; color: #333; }
.tm-lpg-info__notice {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 16px 24px;
    margin: 24px auto;
    max-width: 600px;
    font-size: .95rem;
    color: #444;
    text-align: center;
}
.tm-lpg-info__notice p { margin: 0; }

/* ── DIFFERENTIATORS ─────────────────────────────────────────────────────────── */
.tm-lpg-diff__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 24px;
    flex-wrap: wrap;
}
.tm-lpg-diff__image { flex: 1 1 300px; }
.tm-lpg-diff__image img { width: 100%; border-radius: 8px; }
.tm-lpg-diff__content { flex: 1 1 320px; }
.tm-lpg-diff__list { list-style: none; padding: 0; margin: 0 0 8px; }
.tm-lpg-diff__list li {
    padding: 9px 0 9px 28px;
    position: relative;
    font-size: .97rem;
    color: #333;
    border-bottom: 1px solid #eee;
}
.tm-lpg-diff__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2e7d32;
}

/* ── REVIEWS ─────────────────────────────────────────────────────────────────── */
.tm-lpg-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}
.tm-lpg-reviews__item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgba(0,0,0,.10);
}

/* ── MEET THE OWNERS ─────────────────────────────────────────────────────────── */
.tm-lpg-owners {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}
.tm-lpg-owners__overlay { position: absolute; inset: 0; pointer-events: none; }
.tm-lpg-owners__content { position: relative; z-index: 2; max-width: 780px; }
.tm-lpg-owners__content h2 { color: #fff; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.tm-lpg-owners__body,
.tm-lpg-owners__body p { color: #fff; font-size: 1rem; line-height: 1.75; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
    .tm-lpg-hero { min-height: 320px; padding: 48px 16px; }
    .tm-lpg-hero__line--2 { font-size: 1.5rem; }
    .tm-lpg-diff__inner { flex-direction: column; gap: 24px; padding: 32px 16px; }
    .tm-lpg-reviews__grid { grid-template-columns: 1fr; padding: 24px 16px; }
    .tm-lpg-section-bar h2 { font-size: 1.1rem; }
}

