/* ============================================================
   SITE ADVISORS — BILL BUSSEY
   Color: Red #C8102E | Black #1a1a1a | White #fff
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:       #C8102E;
    --red-dark:  #9e0b24;
    --red-light: #e8294a;
    --black:     #1a1a1a;
    --white:     #ffffff;
    --gray-light:#F5F5F5;
    --gray-mid:  #e0e0e0;
    --gray-dark: #555555;
    --text:      #333333;
    --font-body: 'Open Sans', sans-serif;
    --font-head: 'Montserrat', sans-serif;
    --shadow:    0 2px 12px rgba(0,0,0,0.12);
    --radius:    4px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

/* Utility */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

/* ============================================================
   HEADER — matches site-advisors.com single-bar style
============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 24px 0 16px;
    display: flex;
    align-items: center;
    gap: 0;
    height: 70px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; display: block; }

/* Nav — right-aligned, inline in header bar */
.main-nav { margin-left: auto; }
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0; padding: 0;
}
.main-nav ul li a {
    display: block;
    padding: 0 14px;
    height: 70px;
    line-height: 70px;
    color: var(--black);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.2s, border-color 0.2s;
}
.main-nav ul li a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

/* Right-side contact + Bradley */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 20px;
    border-left: 1px solid var(--gray-mid);
    margin-left: 12px;
    flex-shrink: 0;
}

.header-phone, .header-email {
    text-decoration: none;
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.header-phone:hover, .header-email:hover { color: var(--red); }

.header-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-mid);
    flex-shrink: 0;
}

.bradley-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.in-coop { font-size: 0.6rem; color: var(--gray-dark); white-space: nowrap; margin-bottom: 2px; }
.bradley-logo { height: 26px; width: auto; }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    margin-left: 16px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    max-width: 560px;
    margin-left: 6vw;
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    border-top: 5px solid var(--red);
}

.hero-card h1 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-card > p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 28px;
}
.hero-bullets li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
}
.hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
}

.hero-ctas { display: flex; flex-direction: column; gap: 12px; }

.btn-primary {
    display: block;
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
    display: block;
    background: transparent;
    color: var(--red);
    text-align: center;
    padding: 13px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--red);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.btn-secondary:hover { background: var(--red); color: var(--white); }

/* ============================================================
   PROPERTIES
============================================================ */
.properties {
    padding: 80px 0;
    background: var(--white);
}
.properties h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}
.section-intro {
    color: var(--gray-dark);
    max-width: 700px;
    margin-bottom: 48px;
    font-size: 0.95rem;
}
.prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.prop-card {
    background: var(--gray-light);
    border-top: 4px solid var(--red);
    padding: 32px 28px;
    border-radius: var(--radius);
    transition: box-shadow 0.2s, transform 0.2s;
}
.prop-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.prop-icon { font-size: 2.5rem; margin-bottom: 16px; }
.prop-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.prop-card p { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.6; }

/* ============================================================
   CTA STRIP
============================================================ */
.cta-strip {
    background: var(--red);
    padding: 48px 0;
    text-align: center;
}
.cta-strip h2 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-strip-btn {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}
.cta-strip-btn:hover { background: var(--black); color: var(--white); }

/* ============================================================
   TEAM
============================================================ */
.team {
    padding: 80px 0;
    background: var(--gray-light);
}
.team h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}
.team-grid { display: flex; flex-direction: column; gap: 40px; margin-top: 48px; }
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 36px;
    padding: 36px;
    border-left: 5px solid var(--red);
}
.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid var(--red);
}
.team-info { flex: 1; }
.team-info h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}
.credential { color: var(--red); }
.team-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 12px;
}
.team-contact { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.team-contact a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s;
}
.team-contact a:hover { color: var(--red); }
.team-info p { font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 16px; line-height: 1.7; }
.team-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================================
   OPPORTUNITY
============================================================ */
.opportunity {
    padding: 80px 0;
    background: var(--white);
}
.opportunity h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 48px;
}
.opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.opp-card {
    padding: 32px 28px;
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.opp-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.opp-icon { font-size: 2.5rem; margin-bottom: 16px; }
.opp-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}
.opp-card p { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
    background: var(--black);
    padding: 80px 0;
    color: var(--white);
}
.testimonials h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 48px;
}
.testimonial-track { position: relative; min-height: 200px; }
.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.testimonial-slide blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 800px;
    border-left: 4px solid var(--red);
    padding-left: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-weight: 700; }
.testimonial-author span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.t-prev, .t-next {
    background: var(--red);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t-prev:hover, .t-next:hover { background: var(--red-light); }
.t-dots { display: flex; gap: 8px; }
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
}
.dot.active { background: var(--red); }

/* ============================================================
   STATS
============================================================ */
.stats {
    background: var(--red);
    padding: 64px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    display: inline;
    margin-left: 4px;
}
.stat-label {
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
    background: #1b2a3b;
    padding: 80px 0;
    color: #1c1c1c;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.contact-info {
    background: #f8f4ee;
    padding: 36px 32px;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    border-top: 4px solid #C8102E;
}
.contact-info h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 16px;
}
.contact-info > p { color: #5a4f45; margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-detail strong { color: #1c1c1c; font-weight: 700; font-size: 0.95rem; }
.contact-detail span { color: #6b5f52; font-size: 0.9rem; }
.contact-detail a { color: #C8102E; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: #a00d25; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    border-top: 4px solid #1b2a3b;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1c1c1c;
}
.form-group input,
.form-group textarea,
.form-group select {
    background: #ffffff;
    border: 1px solid #c4b49a;
    color: #1c1c1c;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a89880; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #C8102E;
    box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.btn-submit {
    background: #1b2a3b;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}
.btn-submit:hover { background: #C8102E; }
.form-notice { font-size: 0.75rem; color: #8a7a6a; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #111;
    padding: 48px 0 0;
    color: rgba(255,255,255,0.6);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 56px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-coop { font-size: 0.75rem; }
.footer-bradley { height: 22px; width: auto; display: block; margin-top: 6px; }
.footer h4 { color: var(--white); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a, .footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links ul li a:hover, .footer-contact a:hover { color: var(--red); }
.footer-contact p { margin-bottom: 8px; font-size: 0.85rem; }
.footer-bottom {
    padding: 16px 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .prop-grid { grid-template-columns: repeat(2, 1fr); }
    .opp-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-inner { flex-wrap: nowrap; }
    .header-right { display: none; }
    .main-nav { display: none; margin-left: 0; }
    .main-nav.open {
        display: block;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-mid);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        z-index: 999;
    }
    .main-nav.open ul { flex-direction: column; }
    .main-nav.open ul li a {
        height: auto;
        line-height: 1;
        padding: 14px 24px;
        border-bottom: 1px solid var(--gray-mid);
        border-bottom-color: var(--gray-mid) !important;
        margin-bottom: 0;
    }
    .hamburger { display: block; margin-left: auto; }
    .hero-card { margin: 0 16px; padding: 32px 24px; }
    .hero-card h1 { font-size: 1.5rem; }
    .prop-grid { grid-template-columns: 1fr; }
    .opp-grid { grid-template-columns: 1fr; }
    .team-card { flex-direction: column; align-items: center; text-align: center; }
    .team-contact { justify-content: center; }
    .team-badges { justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-item:last-child { border-bottom: none; }
    .cta-strip-btns { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { padding-top: 100px; }
    .hero-card { padding: 24px 18px; }
}

/* ============================================================
   INNER PAGE STYLES (multi-page layout)
============================================================ */

/* Inner page hero (smaller than homepage hero) */
.page-hero {
    background: var(--black);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 4px solid var(--red);
}
.page-hero h1 {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Nav active state */
.main-nav ul li a.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

/* Inner page content wrapper */
.page-content {
    padding: 72px 0;
}
.page-content h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}
.page-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================================
   HOMEPAGE — NEW SECTIONS
============================================================ */

/* Intro Statement */
.home-intro {
    padding: 72px 0 56px;
    background: var(--white);
    text-align: center;
}
.intro-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
}
.intro-headline {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--black);
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.2;
}
.intro-rule {
    width: 56px;
    height: 4px;
    background: var(--red);
    margin: 0 auto 24px;
    border-radius: 2px;
}
.intro-sub {
    max-width: 640px;
    margin: 0 auto;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.8;
}

/* Stats Strip */
.home-stats {
    background: var(--gray-light);
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
    padding: 40px 0;
}
.hstats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.hstat {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.hstat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}
.hstat-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-dark);
}
.hstat-divider {
    width: 1px;
    height: 52px;
    background: var(--gray-mid);
    flex-shrink: 0;
}

/* Split Section */
.home-split { padding: 80px 0; }
.bg-white { background: var(--white); }
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.split-text h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.25;
}
.split-text p { color: var(--gray-dark); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.btn-outline-red {
    display: inline-block;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    margin-top: 8px;
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.service-row {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-mid);
    align-items: flex-start;
}
.service-row:first-child { border-top: 1px solid var(--gray-mid); }
.service-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
}
.service-body h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}
.service-body p { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.6; }
.service-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
}
.service-more:hover { opacity: 0.7; }

/* Team Teaser */
.home-team {
    background: var(--black);
    padding: 80px 0;
    color: var(--white);
}
.home-team h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 48px;
}
.team-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.team-teaser-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--red);
    padding: 28px;
    border-radius: var(--radius);
}
.team-teaser-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--red);
}
.team-teaser-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}
.teaser-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 12px;
}
.team-teaser-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}
.teaser-link {
    color: var(--red);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.teaser-link:hover { opacity: 0.7; }

/* Pull Quote */
.home-quote {
    background: var(--gray-light);
    padding: 80px 0;
    text-align: center;
}
.pull-quote { max-width: 780px; margin: 0 auto; }
.quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--red);
    line-height: 0.6;
    margin-bottom: 24px;
    opacity: 0.4;
}
.pull-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--black);
    font-style: italic;
    margin-bottom: 20px;
}
.pull-quote cite {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
}

/* Opportunity Rows */
.home-opp {
    background: var(--white);
    padding: 80px 0;
}
.home-opp h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
}
.opp-rows { display: flex; flex-direction: column; gap: 0; }
.opp-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-mid);
}
.opp-row:first-child { border-top: 1px solid var(--gray-mid); }
.opp-row-icon { font-size: 2rem; text-align: center; }
.opp-row-body h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}
.opp-row-body p { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.6; }
.opp-row-link {
    color: var(--red);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.opp-row-link:hover { opacity: 0.7; }

/* CTA Bar */
.home-cta-bar {
    background: var(--red);
    padding: 56px 0;
}
.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-bar-text h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-bar-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.cta-bar-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cta-bar-btn {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    padding: 13px 24px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.cta-bar-btn:hover { background: var(--black); color: var(--white); }
.cta-bar-btn.outlined {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.cta-bar-btn.outlined:hover { background: var(--white); color: var(--red); }

/* Responsive — Homepage additions */
@media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; gap: 48px; }
    .team-teaser-grid { grid-template-columns: 1fr; }
    .cta-bar-inner { flex-direction: column; text-align: center; }
    .cta-bar-actions { justify-content: center; }
}
@media (max-width: 768px) {
    .intro-headline { font-size: 1.8rem; }
    .hstats-grid { flex-wrap: wrap; }
    .hstat { flex: 0 0 50%; padding: 16px; }
    .hstat-divider { display: none; }
    .opp-row { grid-template-columns: 48px 1fr; }
    .opp-row-link { display: none; }
    .pull-quote blockquote { font-size: 1.1rem; }
}

/* Clean page-level CTA block (replaces red cta-strip on inner pages) */
.page-cta-clean {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-left: 6px solid var(--red);
    border-radius: var(--radius);
    padding: 40px 48px;
    margin-top: 48px;
}
.page-cta-clean-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.page-cta-clean h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}
.page-cta-clean p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 0;
}
.page-cta-clean-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .page-cta-clean { padding: 28px 24px; }
    .page-cta-clean-inner { flex-direction: column; align-items: flex-start; }
    .page-cta-clean-btns { justify-content: flex-start; }
}

/* ── Viewport Debug Indicator ───────────────────────────── */
#viewport-indicator {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    pointer-events: none;
    letter-spacing: 0.5px;
}
#vp-label {
    font-size: 0.85rem;
    font-weight: 800;
}
#vp-size { opacity: 0.8; }

#viewport-indicator.vp-xl  { background: #1565C0; color: #fff; }
#viewport-indicator.vp-lg  { background: #2E7D32; color: #fff; }
#viewport-indicator.vp-md  { background: #E65100; color: #fff; }
#viewport-indicator.vp-sm  { background: #6A1B9A; color: #fff; }
#viewport-indicator.vp-xs  { background: #B71C1C; color: #fff; }

/* Home icon nav button */
.nav-home-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 14px !important;
}
.nav-home-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: color 0.2s;
}
