/* ── BECKLLEN CREATIVE — SHARED STYLESHEET ── */

:root {
    --bg: #f4f2ee;
    --white: #fafaf8;
    --ink: #1a1916;
    --ink2: #2e2c28;
    --muted: #8a8780;
    --border: #dedad3;
    --accent: #2a5caa;
    --accent2: #1e4480;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    background: var(--bg);
    background-color: var(--bg);
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.aperture {
    width: 120px;
    height: 120px;
}

.aperture svg {
    width: 100%;
    height: 100%;
}

.blade {
    transform-origin: 60px 60px;
    animation: bladeOpen 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 1;
}

.blade:nth-child(1) {
    animation-delay: 0.30s;
    --rot: 0deg;
}

.blade:nth-child(2) {
    animation-delay: 0.32s;
    --rot: 60deg;
}

.blade:nth-child(3) {
    animation-delay: 0.34s;
    --rot: 120deg;
}

.blade:nth-child(4) {
    animation-delay: 0.36s;
    --rot: 180deg;
}

.blade:nth-child(5) {
    animation-delay: 0.38s;
    --rot: 240deg;
}

.blade:nth-child(6) {
    animation-delay: 0.40s;
    --rot: 300deg;
}

@keyframes bladeOpen {
    0% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    60% {
        opacity: 0.4;
        transform: rotate(var(--rot)) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: rotate(var(--rot)) scale(0);
    }
}

.aperture-ring {
    animation: ringFade 1.6s ease 0.3s forwards;
    opacity: 1;
}

@keyframes ringFade {
    0% {
        opacity: 1
    }

    80% {
        opacity: 0.6
    }

    100% {
        opacity: 0
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 72px;
    transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}

nav.over-video {
    background: transparent;
}

nav.solid {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

nav.scrolled {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

/* ── WORDMARK ── */
.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0;
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--accent);
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-brand:hover::after {
    width: 100%;
}

.brand-letter {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    height: 1.2em;
}

.brand-letter-inner {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 30%,
            rgba(255, 255, 255, 1) 45%, var(--accent) 50%,
            rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0.85) 70%,
            rgba(255, 255, 255, 0.85) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(110%);
    animation: letterRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmerSweep 4s linear 3s infinite;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.solid .brand-letter-inner,
nav.scrolled .brand-letter-inner {
    background: linear-gradient(100deg, var(--ink) 0%, var(--ink) 30%, var(--accent) 50%, var(--ink) 70%, var(--ink) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes letterRise {
    from {
        transform: translateY(110%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmerSweep {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -100% center;
    }
}

.brand-letter-inner.wave {
    opacity: 1;
    transform: translateY(0);
    animation: shimmerSweep 4s linear 0s infinite, letterWave 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes letterWave {
    0% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-6px)
    }

    100% {
        transform: translateY(0)
    }
}

.brand-creative-word {
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    align-self: center;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(-8px);
    animation: creativeSlide 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: color 0.5s, border-color 0.5s;
}

nav.solid .brand-creative-word,
nav.scrolled .brand-creative-word {
    color: var(--muted);
    border-left-color: rgba(0, 0, 0, 0.12);
}

@keyframes creativeSlide {
    from {
        opacity: 0;
        transform: translateX(-8px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ── NAV LINKS ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

nav.solid .nav-links a,
nav.scrolled .nav-links a {
    color: var(--muted);
}

.nav-links a:hover {
    color: #fff;
}

nav.solid .nav-links a:hover,
nav.scrolled .nav-links a:hover {
    color: var(--ink);
}

.nav-links a.active {
    color: var(--accent) !important;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 9px 22px;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

nav.solid .nav-cta,
nav.scrolled .nav-cta {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.nav-cta:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

nav.solid .hamburger span,
nav.scrolled .hamburger span {
    background: var(--ink);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-menu.open {
    max-height: 260px;
}

.mobile-menu a {
    display: block;
    padding: 16px 24px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--ink);
}

@media (max-width: 768px) {
    nav {
        padding: 0 24px;
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        backdrop-filter: none;
    }

    nav.over-video,
    nav.scrolled,
    nav.solid {
        background: #ffffff;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-letter-inner {
        font-size: 1rem;
    }

    .brand-creative-word {
        display: none;
    }
}

/* ── FOOTER ── */
footer {
    background: var(--ink2);
    padding: 64px 56px 36px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(117, 117, 117, 0.35);
    max-width: 240px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-tag {
    color: var(--accent);
    opacity: 0.7;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    footer {
        padding: 48px 24px 28px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
    padding: 140px 56px 72px;
    max-width: 1280px;
    margin: 0 auto;
}

.page-eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 0.95;
    margin-bottom: 20px;
}

.page-lead {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.8;
}

.page-divider {
    height: 1px;
    background: var(--border);
    max-width: 1280px;
    margin: 0 56px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 24px 56px;
    }

    .page-divider {
        margin: 0 24px;
    }
}

/* ── UTILITY ── */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
}

@media (max-width: 768px) {
    .wrap {
        padding: 0 24px;
    }
}

/* ── HOMEPAGE ── */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #131420 0%, #0d1525 55%, #191410 100%);
}

.hero-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 860px;
    text-align: center;
    opacity: 0;
    animation: contentIn 1s ease 1.4s forwards;
}

@keyframes contentIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-label::before,
.hero-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.85;
}

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

.btn-primary {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.25s, transform 0.25s;
}

.btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-1px);
}

.btn-primary svg {
    transition: transform 0.25s;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    transition: all 0.25s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.85);
}

.hero-scroll {
    position: absolute;
    right: 56px;
    bottom: 56px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s 2.2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

.hero-scroll span {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    writing-mode: vertical-rl;
}

.scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

.stats-section {
    padding: 100px 56px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 64px;
    line-height: 1.1;
    max-width: 560px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.stat-card {
    background: var(--white);
    padding: 44px 36px;
    transition: background 0.3s;
}

.stat-card:hover {
    background: var(--ink);
}

.stat-card:hover .stat-num,
.stat-card:hover h3 {
    color: #fff;
}

.stat-card:hover .stat-num em {
    color: var(--accent);
}

.stat-card:hover p {
    color: rgba(255, 255, 255, 0.4);
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    color: var(--ink);
    transition: color 0.3s;
}

.stat-num em {
    color: var(--accent);
    font-style: normal;
    transition: color 0.3s;
    font-size: 2rem;
}

.stat-card h3 {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.stat-card p {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    transition: color 0.3s;
}

.cta-section {
    padding: 0 56px 120px;
    max-width: 1280px;
    margin: 0 auto;
}

.cta-block {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 64px;
}

.cta-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 12px;
}

.cta-block p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 440px;
}

.cta-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.btn-cta {
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 16px 40px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.25s;
}

.btn-cta:hover {
    background: var(--accent);
}

.btn-cta svg {
    transition: transform 0.25s;
}

.btn-cta:hover svg {
    transform: translateX(3px);
}

.cta-note {
    font-size: 0.7rem;
    color: var(--muted);
}

@media (max-width: 960px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .stats-section,
    .cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-scroll {
        right: 24px;
        bottom: 24px;
    }

    .cta-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-right {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ── TESTIMONIALS PAGE ── */
.testimonials-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 72px 56px 120px;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    background: var(--ink);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Fallback placeholder style if no image is available */
.testimonial-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #0d0d1c, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img-placeholder span {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 400;
}

.testimonial-meta {
    margin-top: auto;
}

.testimonial-name {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 6px;
}

@media (max-width: 900px) {
    .testimonials-wrap {
        padding: 48px 24px 80px;
    }

    .testimonial-row {
        grid-template-columns: 1fr;
    }

    .testimonial-img,
    .testimonial-img-placeholder {
        min-height: 280px;
        height: 280px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 12px;
    }

    .testimonial-content {
        padding: 40px 24px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

/* ── ABOUT US PAGE ── */
.team-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 56px 120px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--border);
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d1c, #1a1a2e);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.team-member:hover .team-img {
    transform: scale(1.03);
}

.team-img.missing-img {
    opacity: 0;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.1;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.team-bio {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .team-section {
        padding: 48px 24px 80px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}
