/* =============================================
   ShutterPhrase — FOUNDERS.CSS
   ============================================= */

FOUNDER'S PORTFOLIO TEASER ================= */
.founders-teaser {
    padding: 60px var(--pad-x);
    position: relative; z-index: 10;
}
.founders-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(245,166,35,0.15);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
    position: relative;
}
.founders-teaser-inner::before {
    content: "";
    position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.6), transparent);
    border-radius: 3px 0 0 3px;
    transition: opacity 0.4s;
}
.founders-teaser-inner:hover {
    border-color: rgba(245,166,35,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(245,166,35,0.08);
    transform: translateY(-4px);
}
.founders-teaser-left {
    padding: 50px 50px 50px 55px;
    display: flex; flex-direction: column; justify-content: center;
}
.founders-eyebrow {
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(245,166,35,0.8); margin-bottom: 20px; display: block;
}
.founders-headline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300; line-height: 1; color: #fff;
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
    margin-bottom: 20px;
}
.founders-credentials {
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(245,166,35,0.7); margin-bottom: 16px; margin-top: 4px;
}

.founders-rule {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, #f5a623, transparent);
    margin-bottom: 20px;
}
.founders-desc {
    font-size: 0.9rem; line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 380px; margin-bottom: 35px;
}
.founders-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(#050505, #050505) padding-box,
                linear-gradient(135deg, #f5a623, #ffdf85, #d48300) border-box;
    border: 1px solid transparent;
    padding: 12px 28px; border-radius: 50px;
    color: white; font-family: Inter, sans-serif;
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s, color 0.4s;
    box-shadow: 0 4px 20px rgba(245,166,35,0.1);
    width: fit-content;
}
.founders-btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(245,166,35,0.3); color: #ffdf85; }
.founders-btn svg { transition: transform 0.3s; }
.founders-btn:hover svg { transform: translateX(4px); }

.founders-teaser-right {
    position: relative; overflow: hidden; min-height: 380px;
}
.founders-video-wrap {
    position: absolute; inset: 0;
}
.founders-video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0.75;
    transition: opacity 0.4s, transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.founders-teaser-inner:hover .founders-video {
    opacity: 0.9; transform: scale(1.03);
}
.founders-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.1) 40%, transparent 100%);
}
.founders-video-tag {
    position: absolute; bottom: 20px; right: 20px;
    font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08);
    padding: 6px 14px; border-radius: 20px;
    backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    .founders-teaser-inner { grid-template-columns: 1fr; }
    .founders-teaser-left { padding: 40px 30px; }
    .founders-teaser-right { min-height: 240px; }
    .founders-video-overlay {
        background: linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.1) 50%, transparent 100%);
    }
}

/* ================= WHO WE WORK WITH ================= */
.who-strip {
    padding: 70px var(--pad-x); text-align: center; position: relative; z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.who-strip h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(1.6rem,3.5vw,2.2rem); margin-bottom: 30px; color: #fff; }
.who-clients {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 700px; margin: 0 auto 30px;
}
.who-tag {
    font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 18px; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.03);
    transition: 0.3s;
}
.who-tag:hover { border-color: rgba(245,166,35,0.4); color: #ffdf85; background: rgba(245,166,35,0.05); }
.who-strip p { font-size: 0.85rem; opacity: 0.5; font-style: italic; max-width: 500px; margin: 0 auto; }

/* ================= SOCIAL PROOF ================= */
.social-proof { padding: 70px var(--pad-x); text-align: center; position: relative; z-index: 10; }
.social-proof h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(1.6rem,3.5vw,2.2rem); margin-bottom: 10px; }
.social-proof .sp-sub { font-size: 0.85rem; opacity: 0.5; margin-bottom: 40px; font-style: italic; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.proof-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 28px 24px; text-align: left; transition: 0.3s;
    position: relative; overflow: hidden;
}
.proof-card::before {
    content: '"'; font-family: "Cormorant Garamond", serif; font-size: 5rem;
    color: rgba(245,166,35,0.08); position: absolute; top: -10px; left: 16px; line-height: 1;
}
.proof-card:hover { border-color: rgba(245,166,35,0.2); background: rgba(245,166,35,0.03); }
.proof-text { font-size: 0.9rem; line-height: 1.6; opacity: 0.7; margin-bottom: 16px; font-style: italic; }
.proof-name { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: #ffdf85; opacity: 0.8; }
.proof-role { font-size: 0.72rem; opacity: 0.4; margin-top: 3px; }
.proof-coming { opacity: 0.3; font-size: 0.8rem; font-style: italic; text-align: center; padding: 20px 0; }

footer { text-align: center; padding: 40px 20px 60px 20px; opacity: .4; letter-spacing: 2px; font-size: .75rem; position: relative; z-index: 10; }
