/* ═══════════════════════════════════════════════
   Studio 347 — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
    --orange:     #F47B20;
    --orange-lt:  #FFB347;
    --orange-dk:  #C45F0A;
    --bg:         #111111;
    --bg2:        #1A1A1A;
    --bg3:        #222222;
    --white:      #FFFFFF;
    --grey:       #888888;
    --grey-lt:    #CCCCCC;
    --panel-w:    42%;
    --nav-h:      72px;
    --radius:     3px;
}

/* ── Utility Classes ───────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-orange-lt { color: var(--orange-lt) !important; }

/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.s347-body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Navigation ────────────────────────────────── */
.s347-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    height: var(--nav-h);
    transition: background 0.3s, box-shadow 0.3s;
}
.s347-nav.scrolled {
    background: rgba(17,17,17,0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(244,123,32,0.15);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo .logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--orange);
    transition: width 0.25s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active {
    color: var(--white);
    border: 1px solid rgba(244,123,32,0.5);
    border-radius: 999px;
    padding: 0.3rem 1.1rem;
}
.nav-link.active::after { display: none; }
.nav-dot {
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
}

/* ── Hamburger ─────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem;
    background: rgba(17,17,17,0.98);
    border-top: 1px solid var(--bg3);
}
.mobile-menu a {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: none;
    color: var(--grey-lt);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu.open { display: flex; }

/* ── Full-screen Video Sections (Home) ─────────── */
.video-section {
    position: relative;
    width: 100vw;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg);
}
.video-section.hero-section {
    height: 100vh;
    cursor: default;
}
.video-section:not(.hero-section) {
    width: 100vw;
    margin: 0 0 1px 0 !important;
    aspect-ratio: 16 / 9;
    height: auto;
}
.video-section iframe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    border: none;
    pointer-events: none;
}
.video-section:not(.hero-section) iframe {
    width: 100%;
    height: 100%;
    min-height: initial;
    min-width: initial;
    top: 0; left: 0;
    transform: none;
}

/* Gradient overlay — charcoal tinted */
.video-section:not(.hero-section)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17,17,17,0.75) 0%,
        rgba(17,17,17,0.2) 50%,
        rgba(17,17,17,0.1) 100%
    );
    transition: background 0.3s;
}
.video-section:not(.hero-section):hover::after {
    background: linear-gradient(
        to top,
        rgba(17,17,17,0.5) 0%,
        rgba(17,17,17,0.1) 60%,
        transparent 100%
    );
}

/* Play icon centered by default */
.video-play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -120%);
    width: auto; height: auto;
    border: none;
    background: none;
    z-index: 5;
    opacity: 0.95;
    transition: opacity 0.3s, transform 0.3s;
}
.video-play-icon i {
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.video-section:not(.hero-section):hover .video-play-icon {
    transform: translate(-50%, -120%) scale(1.1);
    opacity: 1;
}

/* Labels centered by default */
.video-label {
    position: absolute;
    top: 60%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.3s;
    pointer-events: none;
}
.video-label .v-brand {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.3rem;
    font-weight: 800;
}
.video-label .v-title {
    font-size: clamp(1.2rem, 3.2vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-section:not(.hero-section):hover .video-label {
    opacity: 1;
}

/* Hero text */
.hero-text {
    position: absolute;
    bottom: 12%;
    left: 2.5rem;
    z-index: 2;
    pointer-events: none;
}
.hero-text .line1 {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.hero-text .line2 {
    font-size: clamp(3rem, 8.5vw, 7.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
/* Orange underline accent */
.hero-text .line2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin-top: 0.6rem;
}

/* Explore more */
.explore-more {
    position: fixed;
    bottom: 5.5rem;
    right: 2.5rem;
    z-index: 100;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.explore-more.hidden-explore {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}
.explore-more:hover { color: var(--orange); }
.explore-more i { animation: bounceDown 1.6s infinite; }
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ── Page hero banner (non-home pages) ─────────── */
.page-banner {
    background: var(--bg2);
    border-bottom: 1px solid var(--bg3);
    padding: calc(var(--nav-h) + 3rem) 2.5rem 3rem;
}
.page-banner h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--white);
}
.page-banner h1 span { color: var(--orange); }
.page-banner .banner-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin-top: 1rem;
}
.page-banner p {
    color: var(--grey-lt);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-top: 1.2rem;
    font-weight: 300;
}

/* ── Work Page ──────────────────────────────────── */
.work-page {
    min-height: 100vh;
    background: var(--bg);
    padding-bottom: 4rem;
}
.work-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    flex-wrap: wrap;
    background: var(--bg2);
    border-bottom: 1px solid var(--bg3);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
}

/* Search */
.work-search {
    position: relative;
    flex: 0 0 220px;
}
.work-search input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--orange);
    border-radius: 999px;
    color: var(--white);
    padding: 0.4rem 2rem 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    outline: none;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.2s;
}
.work-search input:focus { border-color: var(--orange-lt); }
.work-search input::placeholder { color: var(--grey); }
.work-search .search-icon {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 0.85rem;
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    flex: 1;
    overflow: hidden;
}
.filter-tab {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-lt);
    cursor: pointer;
    white-space: nowrap;
    padding: 0.3rem 0.2rem;
    transition: color 0.2s;
    background: none;
    border: none;
    font-family: 'Lato', sans-serif;
}
.filter-tab:hover { color: var(--orange); }
.filter-tab.active {
    border: 1px solid var(--orange);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.filter-tab.active .tab-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
}

/* Show more */
.show-more-wrap { position: relative; }
.show-more-btn {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    transition: color 0.2s;
}
.show-more-btn:hover { color: var(--orange-lt); }
.show-more-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--bg2);
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    min-width: 170px;
    max-height: 230px;
    overflow-y: auto;
    z-index: 500;
    display: none;
    padding: 0.4rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.show-more-dropdown.open { display: block; }
.show-more-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--grey-lt);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    font-family: 'Lato', sans-serif;
}
.show-more-dropdown button:hover { color: var(--orange); background: var(--bg3); }
.show-more-dropdown::-webkit-scrollbar { width: 3px; }
.show-more-dropdown::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* Sort */
.sort-wrap { position: relative; margin-left: auto; }
.sort-btn {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: color 0.2s;
}
.sort-btn:hover { color: var(--orange-lt); }
.sort-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg2);
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    min-width: 130px;
    z-index: 500;
    display: none;
    padding: 0.4rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.sort-dropdown.open { display: block; }
.sort-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--grey-lt);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    font-family: 'Lato', sans-serif;
}
.sort-dropdown button.selected { color: var(--orange); }
.sort-dropdown button:hover { color: var(--orange); background: var(--bg3); }

/* Video grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
    background: var(--bg3);
}
.video-sections-layout {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--bg3);
}
.video-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg2);
}
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover img { transform: scale(1.06); }
.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17,17,17,0.9) 0%,
        rgba(17,17,17,0.3) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s;
    z-index: 2;
}
.video-card:hover .video-card-overlay { opacity: 1; }
.video-card-overlay .play-btn {
    width: 52px; height: 52px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background: rgba(244,123,32,0.1);
    transition: background 0.2s, transform 0.2s;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.video-card-overlay .play-btn i { font-size: 1.1rem; color: var(--orange); margin-left: 3px; }
.video-card-overlay .card-brand {
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.3rem;
    font-weight: 800;
}
.video-card-overlay .card-title {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 1rem;
    color: var(--white);
    line-height: 1.3;
    max-width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.no-results {
    grid-column: 1/-1;
    text-align: center;
    color: var(--grey);
    padding: 5rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── Clients Page ───────────────────────────────── */
.clients-page {
    min-height: 100vh;
    background: var(--bg);
    padding-bottom: 5rem;
}
.clients-grid-section {
    padding: 3rem 2.5rem;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
    background: var(--bg3);
    border: none;
}
.client-card {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    transition: background 0.3s, transform 0.3s;
    min-height: 140px;
    border-radius: var(--radius);
}
.client-card:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}
.client-card img {
    width: auto;
    max-width: 315px;
    object-fit: contain;
}
.client-card .client-name-only {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111111;
    text-align: center;
    transition: color 0.3s;
}
.client-card:hover .client-name-only { color: var(--orange); }

/* ── Connect Page ───────────────────────────────── */
.connect-page {
    min-height: 100vh;
    background: var(--bg);
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 5rem;
}
.connect-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}
.connect-info h2 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.info-item i { font-size: 1rem; color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.info-item p { font-size: 0.95rem; line-height: 1.7; color: var(--grey-lt); }
.info-item a { color: var(--grey-lt); transition: color 0.2s; }
.info-item a:hover { color: var(--orange); }

/* Contact Person Block Card */
.contact-person-block {
    margin-bottom: 2.2rem;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 420px;
}
.contact-person-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.contact-person-name i {
    color: var(--orange);
    font-size: 1.05rem;
}
.contact-person-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.92rem;
    color: var(--grey-lt);
}
.contact-detail-item i {
    color: var(--orange);
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}
.contact-detail-item a {
    color: var(--grey-lt);
    transition: color 0.2s;
}
.contact-detail-item a:hover {
    color: var(--orange);
}
.social-links { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-link {
    width: 38px; height: 38px;
    border: 1px solid var(--bg3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--grey);
    transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.map-embed { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 220px; border: none; filter: grayscale(1) contrast(1.1); }

/* Contact form */
.connect-form h2 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.8rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--bg3);
    color: var(--white);
    padding: 0.7rem 0;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; font-size: 0.9rem; }
.form-group textarea { resize: none; min-height: 110px; }
.hp-field { display: none !important; }
.submit-btn {
    background: var(--orange);
    border: none;
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.8rem 2.2rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.submit-btn:hover { background: var(--orange-dk); transform: translateY(-1px); }
.form-alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    display: none;
}
.form-alert.success { background: #0d3320; border: 1px solid #1a5c3a; color: #4ade80; display: block; }
.form-alert.error   { background: #3a1a0d; border: 1px solid #5c2a1a; color: #fb923c; display: block; }

/* ── Video Modal ────────────────────────────────── */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.94);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.video-modal-overlay.active { opacity: 1; pointer-events: all; }
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.video-modal.active { opacity: 1; pointer-events: all; }
.video-modal-inner {
    position: relative;
    width: 88vw;
    max-width: min(1080px, 142vh);
}
.video-modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(17,17,17,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2200;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.video-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: scale(1.05);
}
.video-modal-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
}
#vimeoPlayerWrap {
    position: relative;
    width: 100%;
    height: 100%;
}
#vimeoPlayerWrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ── Scroll to top ──────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--bg3);
    background: var(--bg2);
    color: var(--grey-lt);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: border-color 0.2s, color 0.2s;
}
.scroll-top-btn.visible { display: flex; }
.scroll-top-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ── Section divider ────────────────────────────── */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 0 2.5rem 0;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1199px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .stills-grid { grid-template-columns: repeat(3, 1fr); }
    .connect-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .client-card { padding: 2rem 1.2rem; min-height: 120px; }
    .client-card img {
        width: 100% !important;
        max-width: 244px !important;
        max-height: 87px !important;
        height: auto !important;
    }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .filter-tabs { flex-wrap: wrap; }
    .work-toolbar { position: static; }
    .nav-logo .logo-img {
        height: 52px !important;
    }
    .hamburger {
        display: flex;
        gap: 6px !important;
    }
    .hamburger span {
        width: 32px !important;
        height: 3px !important;
        border-radius: 3px !important;
    }
    .hamburger.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }
    .mobile-menu {
        position: fixed !important;
        top: var(--nav-h) !important;
        left: -100% !important;
        width: 85vw !important;
        max-width: 360px !important;
        height: calc(100vh - var(--nav-h)) !important;
        background: rgba(10,10,10,0.98) !important;
        backdrop-filter: blur(12px) !important;
        border-right: 1px solid rgba(255,255,255,0.08) !important;
        border-top: none !important;
        z-index: 999 !important;
        padding: 2.5rem 2.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.8rem !important;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        align-items: flex-start !important;
    }
    .mobile-menu.open {
        left: 0 !important;
    }
    .mobile-menu a:not(.mobile-sub-link) {
        font-size: 1.25rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.12em !important;
        color: var(--white) !important;
    }

    /* Visible Mobile Details (Overlay) */
    .video-card-overlay {
        opacity: 1 !important;
        justify-content: flex-end !important;
        padding: 1rem 0.5rem !important;
        background: linear-gradient(
            to top,
            rgba(11, 11, 11, 0.95) 0%,
            rgba(11, 11, 11, 0.4) 65%,
            transparent 100%
        ) !important;
    }
    .still-card-overlay {
        display: none !important;
        opacity: 0 !important;
    }
    .video-card-overlay .play-btn {
        display: none !important;
    }
    .video-card-overlay .card-title {
        font-size: 0.82rem !important;
        margin-bottom: 0.2rem !important;
    }
}
@media (max-width: 767px) {
    body.s347-body {
        font-size: 0.88rem !important;
    }
    .video-section {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .video-section.hero-section {
        height: 70vh !important;
    }
    .video-section.hero-section iframe {
        width: 125vh !important;
        height: 100% !important;
        min-width: 100vw !important;
        min-height: 100% !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    .video-section:not(.hero-section) {
        width: 100vw !important;
        max-width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        margin: 2px 0 !important;
    }
    .video-section:not(.hero-section) iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: initial !important;
        min-width: initial !important;
        top: 0 !important; left: 0 !important;
        transform: none !important;
    }
    .hero-text {
        bottom: 10%;
        left: 1.5rem;
    }
    .hero-text .line1 {
        font-size: 1.2rem;
    }
    .hero-text .line2 {
        font-size: 2.2rem;
    }
    .hero-text .line2::after {
        width: 50px;
        margin-top: 0.4rem;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-img-wrap { max-width: 95%; }

    /* About Us page - half vertical gaps in mobile */
    .about-hero-section {
        padding: 3.5rem 0 2rem !important;
    }
    .about-team-section {
        padding: 2rem 0 !important;
    }
    .about-who-section {
        padding: 1.5rem 0 !important;
    }
    .about-do-section {
        padding: 2rem 0 !important;
    }
    .about-approach-section {
        padding: 2rem 0 !important;
    }
    .about-brand-section {
        padding: 2rem 0 !important;
    }
    .about-cta-section {
        padding: 1.5rem 0 2.5rem !important;
    }
    .about-stats-section {
        padding: 2.5rem 0 !important;
        margin: 2rem 0 !important;
    }

    /* Reduce title text size on mobile */
    .video-label .v-title {
        font-size: 0.95rem !important;
    }
    .video-card-overlay .card-title {
        font-size: 0.75rem !important;
    }
    .lightbox-caption .lb-title {
        font-size: 0.85rem !important;
    }

    /* Mobile-wide vertical gap reductions */
    .page-banner {
        padding: calc(var(--nav-h) + 1.5rem) 1.5rem 1.5rem !important;
    }
    .work-toolbar {
        padding: 1rem 1.5rem !important;
    }
    .clients-grid-section {
        padding: 1.5rem 1.5rem !important;
    }
    .connect-page {
        padding-top: calc(var(--nav-h) + 1rem) !important;
        padding-bottom: 2rem !important;
    }
    .connect-wrap {
        padding: 1rem 1.5rem 0 !important;
        gap: 2.5rem !important;
    }
    .cta-section {
        padding: 3rem 1.5rem !important;
    }
}
@media (max-width: 575px) {
    body.s347-body {
        font-size: 0.82rem !important;
    }
    .video-grid { grid-template-columns: 1fr; }
    .stills-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .clients-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1px !important; }
    .client-card { padding: 1.2rem 0.8rem !important; min-height: 120px !important; }
    .client-card img {
        width: 100% !important;
        max-width: 191px !important;
        max-height: 70px !important;
        height: auto !important;
    }
    .work-toolbar { flex-direction: column; align-items: flex-start; }
    .work-search { flex: 0 0 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-text-wrap h2 { font-size: 1.8rem; }
    .feature-item { gap: 1rem; }
    .feature-icon { width: 44px; height: 44px; }
    .feature-icon i { font-size: 1.1rem; }
    .philosophy-text { font-size: 1.1rem; }
}

/* ── Secondary Video Thumbnails ────────────────── */
.video-thumbnail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.video-section:hover .video-thumbnail-bg {
    transform: scale(1.04);
}

/* ── Works Dropdown ────────────────────────────── */
.nav-dropdown-wrap {
    position: relative;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26,26,26,0.98);
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    min-width: 240px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1010;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--grey-lt);
    text-transform: none;
    transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active-sub {
    color: var(--orange);
    background: var(--bg3);
}
.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    margin-left: 0.2rem;
}
.nav-dropdown-wrap:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ── Stills Grid & Cards ───────────────────────── */
.stills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
    background: var(--bg3);
}
.still-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg2);
}
.still-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.still-card:hover img {
    transform: scale(1.05);
}
.still-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
.still-card:hover .still-card-overlay {
    opacity: 1;
}
.still-card-overlay .zoom-btn {
    width: 52px; height: 52px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background: rgba(255,255,255,0.1);
    transition: transform 0.2s;
}
.still-card:hover .zoom-btn {
    transform: scale(1.1);
}
.still-card-overlay .zoom-btn i {
    font-size: 1.2rem;
    color: var(--white);
}
.still-card-overlay .card-brand {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.3rem;
    font-weight: 800;
}
.still-card-overlay .card-title {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0 1rem;
    color: var(--white);
}

/* ── Image Lightbox ────────────────────────────── */
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.image-lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-inner {
    position: relative;
    width: 90vw;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap {
    position: relative;
    max-width: 80%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.lightbox-caption {
    margin-top: 1.2rem;
    text-align: center;
}
.lightbox-caption .lb-brand {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
}
.lightbox-caption .lb-title {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    margin-top: 0.2rem;
    text-transform: uppercase;
}
.lightbox-close {
    position: absolute;
    top: 0; right: 0;
    background: none;
    border: none;
    color: var(--grey-lt);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 3100;
}
.lightbox-close:hover {
    color: var(--orange);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34,34,34,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    z-index: 3100;
}
.lightbox-nav:hover {
    background: rgba(244,123,32,0.9);
    border-color: var(--orange);
}
.lightbox-nav.prev { left: 0; }
.lightbox-nav.next { right: 0; }

/* ── About Page Styling ────────────────────────── */
.about-page-new {
    background: var(--bg);
    padding-bottom: 2rem;
}

.about-new-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.about-hero-section {
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.about-hero-sub {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}
.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.about-hero-title .text-orange {
    color: var(--orange);
}
.about-hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--grey-lt);
    font-weight: 300;
    margin-bottom: 2rem;
}
.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--orange);
    color: var(--white);
    background: transparent;
    padding: 0.8rem 1.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(244,123,32,0.1);
}
.about-hero-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,123,32,0.3);
}
.about-hero-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    background: #151515;
}
.about-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%),
                linear-gradient(to bottom, var(--bg) 0%, transparent 10%, transparent 90%, var(--bg) 100%);
    pointer-events: none;
}

/* Team Section */
.about-team-section {
    padding: 4rem 0;
}
.about-section-heading-centered {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}
.about-section-heading-centered .text-orange {
    color: var(--orange);
}
.team-member-card {
    background: rgba(26,26,26,0.3);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    height: 100%;
    transition: transform 0.25s, border-color 0.25s;
}
.team-member-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244,123,32,0.15);
    background: rgba(26,26,26,0.5);
}
.team-member-photo-wrap {
    width: 180px;
    height: 220px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.team-member-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.team-member-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.team-member-role {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}
.team-member-role::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
}
.team-member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grey-lt);
    margin-top: 0.5rem;
    font-weight: 300;
}

/* Who We Are Box */
.about-who-section {
    padding: 3rem 0;
}
.about-who-card {
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 3.5rem;
    backdrop-filter: blur(5px);
}
.about-card-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.about-card-title .text-orange {
    color: var(--orange);
}
.about-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange);
}
.about-who-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-lt);
    font-weight: 300;
}
.about-who-text p {
    margin-bottom: 1.2rem;
}
.about-who-text p:last-child {
    margin-bottom: 0;
}
.about-who-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}
.about-who-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-who-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.4) 0%, transparent 20%, transparent 80%, rgba(26,26,26,0.4) 100%);
    pointer-events: none;
}

/* What We Do */
.about-do-section {
    padding: 4rem 0;
}
.do-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.do-card {
    background: rgba(26,26,26,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 1.8rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.25s ease;
}
.do-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    background: rgba(26,26,26,0.5);
    box-shadow: 0 5px 15px rgba(244,123,32,0.1);
}
.do-card-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
    line-height: 1;
}
.do-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}
.do-summary-text {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-lt);
    font-weight: 300;
}

/* Our Approach */
.about-approach-section {
    padding: 4rem 0;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.approach-col {
    position: relative;
    padding-right: 1rem;
}
.approach-col::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.approach-col:last-child::after {
    display: none;
}
.approach-icon {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 1.2rem;
    line-height: 1;
}
.approach-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.approach-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grey-lt);
    font-weight: 300;
    margin: 0;
}

/* Built Through Diverse Brand Work */
.about-brand-section {
    padding: 4rem 0;
}
.brand-work-box {
    background: rgba(26,26,26,0.25);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 3rem;
}
.brand-work-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.brand-work-title .text-orange {
    color: var(--orange);
}
.brand-work-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-lt);
    font-weight: 300;
}
.brand-work-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.brand-work-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.brand-work-item-icon {
    font-size: 1.6rem;
    color: var(--orange);
    width: 45px;
    height: 45px;
    background: rgba(244,123,32,0.06);
    border: 1px solid rgba(244,123,32,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-work-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* Bespoke CTA */
.about-cta-section {
    padding: 3rem 0 5rem;
}
.about-cta-card {
    background: #181818;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}
.about-cta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.about-cta-img-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(244,123,32,0.3);
    flex-shrink: 0;
}
.about-cta-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-cta-text-wrap {
    display: flex;
    flex-direction: column;
}
.about-cta-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.about-cta-title .text-orange {
    color: var(--orange);
}
.about-cta-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--grey-lt);
    font-weight: 300;
    margin: 0;
}
.about-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.about-cta-btn-primary {
    background: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(244,123,32,0.25);
}
.about-cta-btn-primary:hover {
    background: var(--orange-lt);
    border-color: var(--orange-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,123,32,0.4);
    color: var(--white);
}
.about-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    transition: all 0.25s ease;
}
.about-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ── Responsive Styling for New About Us Layout ───── */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 5rem 0 3rem;
    }
    .about-hero-img-wrap {
        min-height: 300px;
        margin-top: 2rem;
    }
    .team-member-card {
        padding: 1.2rem;
    }
    .team-member-photo-wrap {
        width: 140px;
        height: 180px;
    }
    .about-who-card {
        padding: 2.5rem;
    }
    .about-who-img-wrap {
        min-height: 250px;
        margin-top: 1.5rem;
    }
    .do-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
    .approach-col::after {
        display: none;
    }
    .brand-work-box {
        padding: 2rem;
    }
    .brand-work-list {
        margin-top: 2rem;
    }
    .about-cta-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    .about-cta-left {
        flex-direction: column;
        gap: 1.2rem;
    }
    .about-cta-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .team-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }
    .team-member-photo-wrap {
        width: 150px;
        height: 200px;
    }
    .team-member-role::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-card-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-who-card {
        text-align: center;
    }
    .do-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .about-cta-btn-primary, .about-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ── Client Portfolio Customization ──────────────── */
.client-banner-logo {
    max-height: 70px;
    background: rgba(255,255,255,0.05);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
}
.client-banner-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.8) opacity(0.8);
}
.client-portfolio-page .work-toolbar {
    margin-top: -1.5rem;
    border-top: none;
    border-bottom: 1px solid var(--bg3);
}

/* ── Collapsible nested mobile nav styling ───────── */
.mobile-section-title {
    font-size: 0.72rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}
.mobile-sub-link {
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    padding-left: 1.2rem;
    color: var(--grey-lt) !important;
}

/* ── Hero Audio Button ─────────────────────────── */
.hero-audio-btn {
    position: absolute;
    bottom: 12%;
    right: 2.5rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(17,17,17,0.7);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.hero-audio-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.08);
}
.hero-audio-btn i {
    font-size: 1.15rem;
}
.hero-audio-btn.unmuted {
    border-color: var(--orange);
    background: rgba(244,123,32,0.2);
    color: var(--orange);
}

/* ── CTA Section ────────────────────────────────── */
.cta-section {
    padding: 6rem 2.5rem;
    background: var(--bg2);
    border-top: 1px solid var(--bg3);
    text-align: center;
}
.cta-container {
    max-width: 800px;
    margin: 0 auto;
}
.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
}
.cta-section p {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--grey-lt);
    font-weight: 300;
    margin-bottom: 2.2rem;
    line-height: 1.5;
}
.cta-btn {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.95rem 2.6rem;
    border-radius: var(--radius);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 15px rgba(244,123,32,0.2);
}
.cta-btn:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,123,32,0.35);
    color: var(--white);
}

/* ── Client Portfolio Banner ────────────────────── */
.client-banner {
    flex-wrap: nowrap; /* Prevent wrapping on desktop/tablet */
    gap: 2.5rem;
}
.client-banner h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem) !important; /* Shrunk font size for client headers */
    word-break: break-word;
}
.client-banner-logo {
    flex-shrink: 0; /* Logo must never shrink */
    max-width: 160px;
    height: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-banner-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

@media (max-width: 575px) {
    .client-banner {
        flex-wrap: wrap !important; /* Allow wrap on mobile */
        justify-content: center !important;
        text-align: center !important;
        gap: 1.5rem;
    }
    .client-banner h1 {
        font-size: 1.8rem !important;
    }
    .client-banner .banner-line {
        margin: 1rem auto 0 !important; /* Center the underline accent */
    }
    .client-banner-logo {
        margin: 0 auto;
    }
}

.back-to-clients:hover {
    color: var(--orange-lt) !important;
}

/* ── About Stats Section (Counters) ──────────────── */
.about-stats-section {
    background: var(--bg2);
    border-top: 1px solid var(--bg3);
    border-bottom: 1px solid var(--bg3);
    padding: 5rem 0;
    margin: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-card-front {
    text-align: center;
}
.stat-card-front .stat-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0.5rem;
}
.stat-card-front .stat-label {
    font-size: 0.78rem;
    color: var(--grey-lt);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    margin: 0;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}
@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── Banner Slider Section ──────────────────────── */
.banner-slider-section {
    position: relative;
    width: 100%;
    height: auto;
    background: #111;
    overflow: hidden;
}
.banner-slider-section .carousel,
.banner-slider-section .carousel-inner,
.banner-slider-section .carousel-item {
    height: auto;
    position: relative;
}
.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-item.active .banner-img {
    transform: scale(1.04);
}

.banner-content-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}
.banner-content-wrap {
    max-width: 650px;
}
.banner-subtitle {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.banner-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.banner-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-lt);
    font-weight: 300;
    margin-bottom: 1.8rem;
}
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--orange);
    color: var(--white);
    background: transparent;
    padding: 0.8rem 1.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(244,123,32,0.1);
}
.banner-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,123,32,0.3);
}

/* Offset for Contact page banner which sits directly under fixed navbar */
.banner-slider-section.clear-navbar {
    margin-top: var(--nav-h);
}

/* Adjust contact page padding-top if preceded by banner slider */
.banner-slider-section + .connect-page {
    padding-top: 3.5rem !important;
}

/* Custom styles for Indicators & Controls in Banner Slider */
.banner-slider-section .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 5px;
    transition: background-color 0.2s, transform 0.2s;
}
.banner-slider-section .carousel-indicators .active {
    background-color: var(--orange);
    transform: scale(1.2);
}
.banner-slider-section .carousel-control-prev,
.banner-slider-section .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s;
}
.banner-slider-section:hover .carousel-control-prev,
.banner-slider-section:hover .carousel-control-next {
    opacity: 0.7;
}
.banner-slider-section .carousel-control-prev:hover,
.banner-slider-section .carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .banner-slider-section {
        height: auto !important;
    }

    .banner-content-container {
        padding: 1rem;
    }
    .banner-content-wrap {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .banner-subtitle {
        font-size: 0.6rem;
        margin-bottom: 0.3rem;
    }
    .banner-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    }
    .banner-desc {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .banner-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
        gap: 0.5rem;
    }
}

/* ── Main Footer ── */
.s347-footer {
    background: #111111;
    border-top: 1px solid var(--bg3);
    padding: 2.2rem 2.5rem;
    font-size: 0.8rem;
    color: #888888;
    font-family: 'Lato', sans-serif;
}
.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-weight: 400;
    letter-spacing: 0.05em;
}
.footer-attribution {
    font-weight: 400;
    letter-spacing: 0.05em;
}
.footer-attribution a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-attribution a:hover {
    color: var(--orange-lt);
}

@media (max-width: 767px) {
    .s347-footer {
        padding: 1.5rem 1.5rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Prevent footer attribution text from colliding with scroll-to-top button */
@media (min-width: 768px) and (max-width: 1240px) {
    .footer-attribution {
        padding-right: 3.5rem;
    }
}

