/* ===== RESET & BASE ===== */
/* Last updated: added About, Before/After, Social/Facebook Feed sections */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:      #1a1a1a;
    --dark:       #2d2d2d;
    --mid-gray:   #888;
    --light-gray: #f5f5f5;
    --border:     #e0e0e0;
    --white:      #ffffff;
    --font-head:  'Playfair Display', Georgia, serif;
    --font-body:  'Lato', sans-serif;
    --font-ui:    'Montserrat', sans-serif;
    --ease:       all 0.3s ease;
    --shadow:     0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
    --radius:     4px;
    --max:        1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-dark  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 14px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: #666;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light .section-tag { color: rgba(255,255,255,0.45); }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.6); }

/* ===== SCROLL ANIMATION ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    height: 96px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo-img { height: 78px; width: auto; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }

.nav-links a {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--black); border-bottom-color: var(--black); }

.nav-phone {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-phone:hover { color: var(--black); }

.nav-cta { padding: 10px 22px; font-size: 12px; flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 24px 80px;
    background: var(--black);
    /* TO ADD A HERO PHOTO:
       1. Put the image at images/hero.jpg
       2. Replace the line above with:
          background-image: url('../images/hero.jpg');
          background-size: cover;
          background-position: center;
       3. The .hero-overlay will darken it automatically */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    /* When you add a background photo, change this to: background: rgba(0,0,0,0.58); */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    /* Width-driven, height auto -- keeps the image's native aspect ratio so it
       scales without warping. Sized to be at least as wide as the text block
       below it (hero-tagline/heading), and scales down smoothly on smaller
       screens via clamp() instead of jumping at breakpoints. */
    width: clamp(260px, 34vw, 460px);
    height: auto;
    max-width: 90%;
    display: block;
    margin: 0 auto 26px;
    /* Site logo is black line-art with transparent background, made for light surfaces.
       invert(1) flips it to white shapes with black text so it reads on this dark hero;
       brightness(1.15) pushes the inverted near-black background fully to white. */
    filter: invert(1) brightness(1.15);
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 22px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(38px, 6.5vw, 70px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   SERVICES
=========================== */
.services { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.service-card.featured {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.service-card.featured .service-icon { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p  { color: rgba(255,255,255,0.7); }
.service-card.featured .card-link { color: rgba(255,255,255,0.85); }
.service-card.featured .card-link:hover { color: var(--white); gap: 12px; }

.service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 24px;
    transition: var(--ease);
}
.service-card:hover .service-icon { border-color: var(--black); }

.service-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 14px;
}

.service-card p { font-size: 15px; color: #666; line-height: 1.75; margin-bottom: 28px; }

.card-link {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}
.card-link:hover { gap: 12px; color: var(--black); }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-us { background: var(--black); padding: 100px 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 80px;
}

.stat-item { background: var(--black); padding: 44px 24px; text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(38px, 4.5vw, 54px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.pillar { text-align: center; }
.pillar i { font-size: 26px; color: rgba(255,255,255,0.4); margin-bottom: 16px; display: block; }

.pillar h4 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.pillar p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ===========================
   HOW WE HELP YOU BUILD (process)
=========================== */
.process { background: var(--light-gray); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step { text-align: center; padding: 8px; }

.process-num {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--mid-gray);
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    margin: 16px auto 22px;
}

.process-step h3 {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.process-step p { font-size: 15px; color: #666; line-height: 1.75; }

/* ===========================
   PREFERRED LENDER
=========================== */
.lender { background: var(--white); }

.lender-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 56px;
    align-items: center;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px;
}

.lender-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lender-icon {
    font-size: 56px;
    color: var(--dark);
    opacity: 0.8;
}

.lender-info h3 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.lender-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 32px;
}

.lender-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
    flex-shrink: 0;
    min-width: 120px;
}

.lender-badge i { font-size: 36px; color: var(--dark); }

.lender-badge span {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid-gray);
    line-height: 1.5;
}

/* ===========================
   FAQ
=========================== */
.faq { background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
}

.faq-question i {
    flex-shrink: 0;
    color: var(--mid-gray);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer p { padding: 0 4px 22px; font-size: 15px; color: #555; line-height: 1.75; }

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--light-gray); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 17px;
    color: var(--dark);
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.contact-item div { display: flex; flex-direction: column; gap: 5px; }

.contact-item strong {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.contact-item a,
.contact-item span { font-size: 16px; color: var(--dark); }
.contact-item a:hover { color: var(--black); }

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 12px; color: var(--mid-gray); text-align: center; margin-top: 14px; }

/* ===========================
   ESTIMATE REQUEST (Handoff.ai AI estimating)
   Lives inside .contact/.contact-form (id="contact") — see index.html.
=========================== */
.file-drop {
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--ease);
}
.file-drop:hover,
.file-drop.dragover { border-color: var(--black); background: var(--white); }
.file-drop input[type="file"] { display: none; }
.file-drop-label { display: block; font-family: var(--font-ui); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--dark); }
.file-drop-hint { font-size: 12px; color: var(--mid-gray); margin-top: 6px; }

.file-list { margin-top: 14px; font-size: 13px; color: var(--dark); text-align: left; }
.file-list-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 4px; border-bottom: 1px solid var(--border); }
.file-list-item button { background: none; border: none; color: var(--mid-gray); cursor: pointer; font-size: 13px; font-family: var(--font-body); }
.file-list-item button:hover { color: var(--black); }

.estimate-status { margin-top: 20px; padding: 16px 20px; border-radius: var(--radius); font-size: 14px; display: none; }
.estimate-status.visible { display: block; }
.estimate-status.pending { background: var(--light-gray); color: var(--dark); border: 1px solid var(--border); }
.estimate-status.success { background: #eaf6ec; color: #1e5b2c; }
.estimate-status.error { background: #fdeaea; color: #8a1f1f; }

/* Honeypot field — present in the DOM for bots to fill in, invisible and
   unreachable by keyboard/screen readers for real visitors. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Post-submit confirmation pop-up */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}
.modal-overlay.visible { display: flex; }

.modal-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal-box h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.modal-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--black); padding: 80px 0 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 96px;
    width: auto;
    margin-bottom: 20px;
    /* invert(1) + brightness(1.15), not brightness(0) invert(1) — the old filter crushed
       the logo's white lettering to black before inverting, so both the shapes and the
       text came out solid white with no readable contrast between them. */
    filter: invert(1) brightness(1.15);
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--white); }

.footer-contact p { margin-bottom: 10px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--white); }
.footer-contact p:last-child { font-size: 14px; color: rgba(255,255,255,0.5); }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }

/* ===========================
   ABOUT
=========================== */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text .section-tag { margin-bottom: 14px; }

.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-quote {
    background: var(--black);
    color: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius);
    position: relative;
}

.about-quote i {
    font-size: 28px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 20px;
    display: block;
}

.about-quote blockquote {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
}

.about-quote cite {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-style: normal;
}

/* ===========================
   BEFORE & AFTER
=========================== */
.before-after { background: var(--light-gray); }

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ba-wrap { display: flex; flex-direction: column; gap: 14px; }

.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    background: #ddd;
}

.ba-after,
.ba-before {
    position: absolute;
    inset: 0;
}

.ba-after img,
.ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.ba-before { clip-path: inset(0 50% 0 0); }

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ba-handle::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.ba-handle i {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--black);
}

.ba-label {
    position: absolute;
    top: 14px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0,0,0,0.45);
    padding: 5px 10px;
    border-radius: 2px;
    pointer-events: none;
}

.label-before { left: 14px; }
.label-after  { right: 14px; }

.ba-caption {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    letter-spacing: 0.04em;
}

/* ===========================
   SOCIAL / FACEBOOK FEED
=========================== */
.social { background: var(--black); padding: 100px 0; }

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.social-text .section-tag { color: rgba(255,255,255,0.45); }

.social-text h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.social-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 32px;
}

.social-text .section-tag { display: block; margin-bottom: 14px; }

.social-feed {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
    .process-grid   { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid    { grid-template-columns: 1fr 1fr; }
    .footer-brand   { grid-column: 1 / -1; }

    .lender-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
    .lender-brand { display: none; }
    .lender-badge { width: fit-content; }

    .about-grid   { grid-template-columns: 1fr; gap: 48px; }
    .ba-grid      { grid-template-columns: repeat(2, 1fr); }
    .social-grid  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }

    /* Nav mobile */
    .nav-links, .nav-phone, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: var(--white);
        padding: 20px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.open li { border-bottom: 1px solid var(--border); }
    .nav-links.open a { display: block; padding: 14px 0; font-size: 14px; }

    .services-grid  { grid-template-columns: 1fr; }
    .ba-grid        { grid-template-columns: 1fr; }
    .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
    .contact-form   { padding: 32px 24px; }
    .form-row       { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand   { grid-column: auto; }
}

@media (max-width: 480px) {
    .hero-btns      { flex-direction: column; align-items: center; }
    .stats-grid     { grid-template-columns: 1fr; }
    .pillars-grid   { grid-template-columns: 1fr; }
    .modal-box      { padding: 32px 24px; }
}
