/* ================================================
   NOVA PRODUCTION — Minimal & Trustworthy
   Palette: Black, White, #b3ff00
   Fonts: Syne (Headings), Space Grotesk (Body)
   ================================================ */

/* --- Design Tokens --- */
:root {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --surface-alt: #eeeeee;
    --white: #050505;
    --lime: #050505;
    --text-main: #1f1f21;
    --muted: #6e6e73;
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.18);
    
    --radius: 8px;
    --radius-sm: 4px;
    --pill: 999px;
    
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --section-pad: 140px 6%;
}

/* --- Dark theme tokens (toggle driven; portfolio pages layer their own on top) --- */
[data-theme="dark"] {
    --bg: #0a0a0b;
    --surface: #121214;
    --surface-alt: #1a1a1d;
    --white: #f5f4f2;
    --lime: #f5f4f2;
    --text-main: #e8e6e2;
    --muted: #9a9aa0;
    --border: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(255, 255, 255, 0.24);
}

/* --- Premium Minimal Animated Background --- */
.minimal-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg);
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    animation: floatBlob 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
    will-change: transform;
}
.blob-1 {
    width: 60vw; height: 60vw;
    background: rgba(0, 0, 0, 0.03); /* Ultra faint dark glow */
    top: -20%; left: -20%;
}
.blob-2 {
    width: 70vw; height: 70vw;
    background: rgba(0, 0, 0, 0.015); /* Ultra faint dark glow */
    bottom: -30%; right: -20%;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15vw, 10vh) scale(1.1); }
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul { list-style: none; }

/* --- Typography --- */
.lime-text { color: var(--lime); }
.muted { color: var(--muted); }

.section { padding: var(--section-pad); max-width: 1200px; margin: 0 auto; position: relative; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    border: 1.5px solid var(--white);
    padding: 6px 16px;
    border-radius: var(--pill);
    background: rgba(0, 0, 0, 0.03);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 500px;
}

.hidden { display: none !important; }

/* --- Global Utilities --- */
/* Removing messy floating animations for a cleaner, trustworthy feel */
.magnetic { transition: transform 0.2s linear; }

/* ═══ BUTTONS ════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--pill);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    text-align: center;
}
.btn-lime {
    background: var(--lime);
    color: var(--bg);
}
.btn-lime:hover {
    background: #2c2c2e;
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--bg);
}
.btn-white:hover {
    background: #2c2c2e;
}
.btn.large { padding: 16px 36px; font-size: 1rem; }
.btn.full-w { width: 100%; }

/* ═══ NAVBAR ════════════════════════════════════ */
.navbar-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 6%;
    transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-bottom 0.3s var(--ease);
}
.navbar-wrap.scrolled {
    padding: 16px 6%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
}
.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lime);
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}
.nav-links a:hover { color: var(--white); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    display: block; width: 28px; height: 2px;
    background: var(--white); transition: 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.mobile-menu.open { display: flex; }

/* ═══ HERO ══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.hero-content {
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--pill);
    margin-bottom: 32px;
    background: var(--surface);
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}
.hero-title span { color: var(--lime); }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ═══ TICKER ════════════════════════════════════ */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ticker-item {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--muted);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.ticker-item .dot { color: var(--border-hover); font-size: 0.5rem; }

/* ═══ SERVICES / MAGIC ══════════════════════════ */
.magic-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}
.magic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.magic-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.magic-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.magic-icon {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 24px;
}
.magic-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}
.magic-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.magic-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--lime);
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 12px;
    border-radius: var(--pill);
}

/* ═══ PORTFOLIO / WORK ══════════════════════════ */
.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Long Form */
.video-scroll-wrap {
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.video-scroll-wrap::-webkit-scrollbar { height: 4px; }
.video-scroll-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--pill); }

.video-grid-horizontal {
    display: flex;
    gap: 24px;
    width: max-content;
}
.vid-card {
    width: 380px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.vid-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.vid-thumb {
    height: 220px;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}
.thumb-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(100%) opacity(0.8);
    transition: filter 0.5s var(--ease), transform 0.8s var(--ease);
}
.vid-card:hover .thumb-bg {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}
.vid-duration {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}
.vid-info { padding: 24px; }
.vid-tag {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
}
.vid-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}
.vid-info p { font-size: 0.9rem; color: var(--muted); }

/* Short Form */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.short-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.short-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.short-thumb {
    aspect-ratio: 9/16;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}
.short-card:hover .thumb-bg {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}
.platform-badge {
    position: absolute;
    top: 12px; left: 12px;
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}
.short-info {
    padding: 20px;
}
.short-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.short-views { font-size: 0.85rem; color: var(--muted); }

/* ═══ IMPACT / NUMBERS ══════════════════════════ */
.results-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border);
}
.stat-block {
    background: var(--surface);
    padding: 40px;
    text-align: center;
}
.stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}
.stat-block-accent {
    grid-column: span 4;
    background: var(--lime);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-block-accent p {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--bg);
    max-width: 700px;
    line-height: 1.3;
}

/* ═══ TRUSTED CREATORS ══════════════════════════ */
.creators { text-align: center; }
.creator-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}
.creator-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.avatar-inner {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--muted);
    font-size: 1rem;
}
.creator-avatar span { font-size: 0.85rem; color: var(--muted); }
.platform-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.plat-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 10px 20px;
    background: var(--surface);
    border-radius: var(--pill);
    border: 1px solid var(--border);
}

/* ═══ TESTIMONIALS ══════════════════════════════ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.test-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius);
}
.test-stars { color: var(--lime); font-size: 1rem; margin-bottom: 24px; letter-spacing: 2px; }
.test-quote {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 32px;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.test-avatar {
    width: 48px; height: 48px;
    background: var(--surface-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}
.test-name { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.test-handle { font-size: 0.85rem; color: var(--muted); }

/* ═══ CONTACT ════════════════════════════════════ */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact-perks { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.perk { display: flex; align-items: center; gap: 16px; font-size: 0.95rem; color: var(--text-main); }
.perk i { color: var(--lime); font-size: 1.2rem; }

/* --- FAQ --- */
.faq { max-width: 900px; margin: 0 auto; text-align: center; }
.faq .section-title, .faq .section-label { text-align: center; }
.faq-list { text-align: left; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--border-hover); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--muted);
    transition: transform 0.35s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 28px 26px; }
.faq-a p { color: var(--muted); font-size: 0.98rem; line-height: 1.75; margin: 0; }
@media (max-width: 600px) {
    .faq-q { padding: 20px; font-size: 0.98rem; gap: 16px; }
    .faq-a { padding: 0 20px 20px; }
}

/* --- About body copy --- */
.about-body {
    max-width: 860px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: left;
}
.about-body p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}
.about-body strong { color: var(--text-main); font-weight: 700; }

/* --- Leadership --- */
.leadership { max-width: 1000px; margin: 90px auto 0; }
.leadership-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
}
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.leader-card {
    text-align: left;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.leader-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.leader-avatar {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 22px;
}
.leader-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}
.leader-role {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}
.leader-bio { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.leader-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
.leader-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-hover);
    padding-bottom: 2px;
}
.leader-links a:hover { opacity: 0.65; }
@media (max-width: 768px) {
    .leadership-grid { grid-template-columns: 1fr; }
    .leadership { margin-top: 64px; }
    .leader-card { padding: 26px; }
}

/* --- Direct Gmail CTA --- */
.gmail-cta {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    border: 1px solid var(--border);
    border-radius: var(--pill);
    background: var(--surface);
    text-decoration: none;
    max-width: 100%;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gmail-cta:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.gmail-cta-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
}
.gmail-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gmail-cta-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
}
.gmail-cta-mail {
    font-size: 1rem; font-weight: 700; color: var(--text-main);
    overflow-wrap: anywhere;
}
.gmail-cta-arrow {
    margin-left: auto; padding-left: 10px;
    font-size: 1.15rem; color: var(--muted);
    transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.gmail-cta:hover .gmail-cta-arrow { transform: translate(3px, -3px); color: var(--text-main); }
@media (max-width: 480px) {
    .gmail-cta { width: 100%; padding: 14px 16px; gap: 12px; }
    .gmail-cta-mail { font-size: 0.9rem; }
}

.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 48px;
    border-radius: var(--radius);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.input-group label { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--lime); }
select { appearance: none; }
textarea { resize: vertical; min-height: 120px; }

.form-success {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* ═══ FOOTER ═════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 80px 6% 40px;
    background: var(--surface);
}
.footer-top {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand p { color: var(--muted); margin: 20px 0; max-width: 280px; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 12px; max-width: 232px; }
.social-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
}
.social-icon:hover { color: var(--white); border-color: var(--white); }
.footer-links-group h4 { font-family: 'Syne', sans-serif; color: var(--white); margin-bottom: 20px; font-size: 1rem; }
.footer-links-group { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a { color: var(--muted); font-size: 0.9rem; }
.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }

/* ═══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .results-layout { grid-template-columns: 1fr 1fr; }
    .stat-block-accent { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    :root { --section-pad: 100px 5%; }
    .nav-links, #nav-cta { display: none; }
    .hamburger { display: flex; }
    .form-grid { grid-template-columns: 1fr; }
    .results-layout { grid-template-columns: 1fr; }
    .stat-block-accent { grid-column: span 1; flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Leadership photo, quote and role separator --- */
.leader-photo {
    width: 76px; height: 76px; border-radius: 50%;
    object-fit: cover; object-position: center top;
    border: 2px solid var(--border-hover); margin-bottom: 22px;
}
.leader-role span { opacity: 0.45; margin: 0 5px; }
.leader-quote {
    font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600;
    line-height: 1.5; color: var(--text-main);
    border-left: 3px solid var(--text-main); padding-left: 15px; margin: 0 0 18px;
}
.leader-quote::before { content: '\201C'; }
.leader-quote::after  { content: '\201D'; }

/* --- Booking CTA panel that replaced the dead contact form --- */
.cta-panel { display: flex; flex-direction: column; }
.cta-kicker {
    font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 14px;
}
.cta-title {
    font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 700;
    letter-spacing: -0.02em; color: var(--text-main); margin-bottom: 12px;
}
.cta-copy { color: var(--muted); font-size: 0.97rem; line-height: 1.7; margin-bottom: 22px; }
.cta-points { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.cta-points li { display: flex; align-items: center; gap: 11px; font-size: 0.93rem; color: var(--muted); }
.cta-points i { font-size: 1.05rem; color: var(--text-main); flex-shrink: 0; }
.cta-alt {
    display: block; text-align: center; margin-top: 16px;
    font-size: 0.88rem; color: var(--muted);
}
.cta-alt:hover { color: var(--text-main); }

/* ================================================
   FOOTER ASCII MARK
   ================================================
   The two canvases that draw the Atvis mountain mark behind the footer.
   These used to carry their layout as inline styles, which no stylesheet
   could ever outrank, so the art could not be turned off per breakpoint.

   It is a desktop flourish. Each wrap has a 250px floor, so on a 390px
   phone the two of them cover the whole row and sit directly on top of
   the footer link columns, which made "Media Campaigns", "Digital Growth
   Systems", "Company", "About Us" and "Portfolio" unreadable. Below 768px
   the art is switched off outright and the JS never renders it either. */
.ascii-hands-container {
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    opacity: 0.85;
}

.ascii-hand-wrap {
    position: relative;
    width: 45%;
    min-width: 250px;
    will-change: transform;
}

/* Starting position for the curtain reveal. The render loop overwrites
   this transform every frame once the footer scrolls into view. */
.ascii-hand-wrap-l { transform: translateX(-125%); }
.ascii-hand-wrap-r { transform: translateX(125%); }

.ascii-hands-container canvas {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .ascii-hands-container { display: none; }
}
