/* ===== CHANDRAKANT SONAWANE — DESIGN #7 v3 ===== */
/* TOP NAV + SNAP SCROLL + CAROUSEL + SPLITS + TABS + MOSAIC */
/* Charcoal & Emerald | Bricolage Grotesque + Manrope */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --stone-950: #0c0a09;
    --em-50: #ecfdf5;
    --em-100: #d1fae5;
    --em-200: #a7f3d0;
    --em-300: #6ee7b7;
    --em-400: #34d399;
    --em-500: #10b981;
    --em-600: #059669;
    --em-700: #047857;
    --em-800: #065f46;
    --em-900: #064e3b;
    --white: #fff;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .07);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, .1);
    --tr: .3s ease;
    --radius: 16px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--stone-50);
    color: var(--stone-600);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--stone-900);
    font-weight: 700
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== TOP NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--tr)
}

.navbar.scrolled {
    background: rgba(250, 250, 249, .97);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm)
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-text {
    font-family: 'Bricolage Grotesque';
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--stone-900);
    letter-spacing: -.02em
}

.logo-text span {
    color: var(--em-600)
}

.logo-pill {
    background: var(--em-600);
    color: #fff;
    font-family: 'Manrope';
    font-size: .45rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .15em
}

.nav-links {
    display: flex;
    gap: 2px
}

.nav-links a {
    color: var(--stone-500);
    font-size: .82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    transition: var(--tr);
    position: relative
}

.nav-links a.active {
    color: var(--stone-900);
    background: var(--stone-100)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2.5px;
    background: var(--em-500);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--tr)
}

.nav-links a:hover {
    color: var(--stone-900)
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--stone-800);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== SNAP SCROLL HOMEPAGE ===== */
.snap-wrap {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth
}

.snap-sec {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

/* ===== HERO (snap 1) — portrait right with floating stat cards ===== */
.hero {
    background: var(--stone-900);
    color: #fff
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .15);
    color: var(--em-400);
    font-size: .62rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px
}

.hero-kicker .dot {
    width: 5px;
    height: 5px;
    background: var(--em-500);
    border-radius: 50%
}

.hero-text h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.04;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -.035em
}

.hero-text h1 em {
    font-style: italic;
    color: var(--em-400);
    font-weight: 400
}

.hero-desc {
    color: var(--stone-400);
    font-size: .98rem;
    margin-bottom: 30px;
    max-width: 440px
}

.hero-btns {
    display: flex;
    gap: 12px
}

.hero-right {
    position: relative
}

.hero-portrait {
    border-radius: 20px;
    overflow: hidden;
    height: 440px
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Floating overlay cards ON the portrait */
.fl-card {
    position: absolute;
    border-radius: 14px;
    padding: 18px 22px;
    color: #fff;
    z-index: 2
}

.fl-card-1 {
    bottom: -16px;
    left: -24px;
    background: var(--em-600);
    box-shadow: 0 8px 24px rgba(5, 150, 105, .3)
}

.fl-card-2 {
    top: 20px;
    right: -16px;
    background: var(--stone-800);
    border: 1px solid rgba(255, 255, 255, .06)
}

.fl-card .fl-num {
    font-family: 'Bricolage Grotesque';
    font-size: 2rem;
    font-weight: 800;
    line-height: 1
}

.fl-card .fl-lbl {
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--em-100);
    margin-top: 2px
}

.fl-card-2 .fl-lbl {
    color: var(--stone-500)
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--stone-600);
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.scroll-hint .arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--em-500);
    border-bottom: 2px solid var(--em-500);
    transform: rotate(45deg);
    animation: bounce 2s ease infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0)
    }

    50% {
        transform: rotate(45deg) translateY(4px)
    }
}

/* ===== HORIZONTAL CAROUSEL (snap 2) ===== */
.carousel-sec {
    background: var(--stone-50);
    flex-direction: column;
    justify-content: center;
    padding: 60px 0
}

.carousel-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 24px
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--em-50);
    border: 1px solid var(--em-200);
    color: var(--em-700);
    font-size: .6rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px
}

.dark-tag {
    background: rgba(16, 185, 129, .08);
    border-color: rgba(16, 185, 129, .15);
    color: var(--em-400)
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.sec-desc {
    color: var(--stone-500);
    font-size: .92rem;
    max-width: 480px;
    margin: 0 auto
}

.carousel {
    position: relative;
    overflow: hidden
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 24px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.carousel-track::-webkit-scrollbar {
    display: none
}

.cr-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--tr)
}

.cr-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.cr-card-img {
    height: 200px;
    overflow: hidden
}

.cr-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.cr-card:hover .cr-card-img img {
    transform: scale(1.06)
}

.cr-card-body {
    padding: 22px
}

.cr-card-body h3 {
    font-size: 1rem;
    margin-bottom: 6px
}

.cr-card-body p {
    font-size: .82rem;
    color: var(--stone-500);
    line-height: 1.7
}

/* Carousel arrows */
.cr-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px
}

.cr-arr {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--stone-300);
    background: var(--white);
    cursor: pointer;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-600);
    transition: var(--tr)
}

.cr-arr:hover {
    background: var(--em-600);
    color: #fff;
    border-color: var(--em-600)
}

/* ===== FULL-HEIGHT SPLIT (snap 3) ===== */
.split-sec {
    padding: 0
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100vh
}

.split-img {
    overflow: hidden
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px;
    background: var(--white)
}

.split-text h2 {
    font-size: 1.9rem;
    margin-bottom: 16px;
    letter-spacing: -.01em
}

.split-text p {
    margin-bottom: 14px
}

.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px
}

.chip {
    background: var(--stone-100);
    color: var(--stone-700);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: 'Manrope';
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    border: none;
    transition: var(--tr)
}

.btn-em {
    background: var(--em-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(5, 150, 105, .2)
}

.btn-em:hover {
    background: var(--em-700);
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: var(--stone-400);
    border: 1.5px solid rgba(255, 255, 255, .12)
}

.btn-ghost:hover {
    border-color: var(--em-500);
    color: var(--em-400)
}

.btn-outline {
    background: transparent;
    color: var(--stone-600);
    border: 1.5px solid var(--stone-300)
}

.btn-outline:hover {
    border-color: var(--em-500);
    color: var(--em-600)
}

/* ===== PAGE HEADER (inner pages) ===== */
.pg-header {
    padding: 120px 0 50px;
    background: var(--stone-900);
    position: relative;
    overflow: hidden
}

.pg-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, .04), transparent 70%);
    border-radius: 50%
}

.pg-header .container {
    position: relative;
    z-index: 2
}

.pg-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.pg-header h1 span {
    color: var(--em-400)
}

.pg-header p {
    color: var(--stone-500);
    font-size: .92rem
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    font-size: .75rem
}

.breadcrumb a {
    color: var(--em-400)
}

.breadcrumb span {
    color: var(--stone-600)
}

/* ===== TABS ===== */
.tabs {
    margin: 48px 0
}

.tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--stone-200);
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none
}

.tab-nav::-webkit-scrollbar {
    display: none
}

.tab-btn {
    font-family: 'Bricolage Grotesque';
    font-size: .85rem;
    font-weight: 700;
    color: var(--stone-500);
    padding: 12px 20px;
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: var(--tr);
    white-space: nowrap
}

.tab-btn:hover {
    color: var(--stone-800)
}

.tab-btn.active {
    color: var(--em-600)
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--em-600);
    border-radius: 2px
}

.tab-panel {
    display: none;
    animation: fadeIn .4s ease
}

.tab-panel.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

/* ===== INNER PAGE COMPONENTS ===== */
.section {
    padding: 64px 0
}

.sec-stone {
    background: var(--stone-50)
}

.sec-white {
    background: var(--white)
}

.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 32px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    border-radius: var(--radius);
    overflow: hidden
}

.duo-img img {
    width: 100%;
    height: 360px;
    object-fit: cover
}

.duo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    letter-spacing: -.01em
}

.duo-text p {
    margin-bottom: 12px
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--tr)
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.info-card .ico {
    font-size: 1.4rem;
    margin-bottom: 12px
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 6px
}

.info-card p {
    font-size: .84rem;
    color: var(--stone-500);
    line-height: 1.7
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0
}

.stat-box {
    background: var(--stone-900);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: #fff
}

.stat-box.accent {
    background: var(--em-600)
}

.stat-box .s-num {
    font-family: 'Bricolage Grotesque';
    font-size: 2rem;
    font-weight: 800;
    line-height: 1
}

.stat-box .s-lbl {
    font-size: .6rem;
    color: var(--stone-400);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.stat-box.accent .s-lbl {
    color: var(--em-100)
}

/* ACCORDION */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 28px 0
}

.acc-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--stone-200);
    transition: var(--tr)
}

.acc-item.open {
    border-color: var(--em-500);
    box-shadow: 0 2px 12px rgba(5, 150, 105, .08)
}

.acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer
}

.acc-head:hover {
    background: var(--stone-50)
}

.acc-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.acc-num {
    font-family: 'Bricolage Grotesque';
    font-size: .72rem;
    font-weight: 800;
    color: var(--em-600);
    background: var(--em-50);
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.acc-label {
    font-family: 'Bricolage Grotesque';
    font-size: .9rem;
    font-weight: 700;
    color: var(--stone-800)
}

.acc-year {
    font-size: .65rem;
    font-weight: 700;
    color: var(--em-600);
    background: var(--em-50);
    padding: 2px 8px;
    border-radius: 4px
}

.acc-arrow {
    font-size: .8rem;
    color: var(--stone-400);
    transition: var(--tr)
}

.acc-item.open .acc-arrow {
    transform: rotate(180deg);
    color: var(--em-600)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.acc-item.open .acc-body {
    max-height: 300px
}

.acc-content {
    padding: 0 20px 18px 58px;
    font-size: .84rem;
    color: var(--stone-500);
    line-height: 1.7
}

/* WORK CARDS */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0
}

.w-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--tr)
}

.w-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.w-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--em-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.w-card h3 {
    font-size: .92rem;
    margin-bottom: 4px
}

.w-card p {
    font-size: .8rem;
    color: var(--stone-500);
    line-height: 1.7
}

/* MOSAIC GALLERY (4-col with tall/wide) */
.gal-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
    margin: 28px 0
}

.gal-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.gal-item:hover img {
    transform: scale(1.08)
}

.gal-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, .85), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: var(--tr)
}

.gal-item:hover .gal-ov {
    opacity: 1
}

.gal-ov h4 {
    color: #fff;
    font-size: .8rem;
    font-family: 'Bricolage Grotesque'
}

.gal-item.tall {
    grid-row: span 2
}

.gal-item.wide {
    grid-column: span 2
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(12, 10, 9, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--tr)
}

.lightbox.active {
    opacity: 1;
    visibility: visible
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px
}

.lb-x {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.lb-x:hover {
    background: var(--em-600);
    border-color: transparent
}

/* CONTACT */
.contact-split {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 40px;
    margin: 32px 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.fg label {
    font-size: .66rem;
    font-weight: 700;
    color: var(--stone-500);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--stone-200);
    background: var(--white);
    color: var(--stone-800);
    font-family: 'Manrope';
    font-size: .88rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--em-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, .06)
}

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

.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.c-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow-sm)
}

.c-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--em-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.c-card h4 {
    font-size: .85rem;
    color: var(--stone-800);
    margin-bottom: 2px;
    font-family: 'Bricolage Grotesque'
}

.c-card p {
    color: var(--stone-500);
    font-size: .78rem;
    line-height: 1.5
}

/* FOOTER */
.footer {
    background: var(--stone-950);
    padding: 28px 0
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.footer-left {
    color: var(--stone-600);
    font-size: .75rem
}

.footer-right {
    font-size: .75rem;
    color: var(--stone-600)
}

.footer-right a {
    color: var(--em-400);
    font-weight: 700;
    transition: var(--tr)
}

.footer-right a:hover {
    color: var(--em-300)
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 0 0;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    color: var(--stone-500);
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--em-600);
    color: #fff;
    transform: translateY(-3px)
}

.footer-social a svg {
    width: 13px;
    height: 13px;
    fill: currentColor
}

/* ANIMATIONS */
.an {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.an.vis {
    opacity: 1;
    transform: translateY(0)
}

.an-l {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .6s ease, transform .6s ease
}

.an-l.vis {
    opacity: 1;
    transform: translateX(0)
}

.an-r {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s ease, transform .6s ease
}

.an-r.vis {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .hero .container,
    .split-inner,
    .duo,
    .duo.flip,
    .contact-split {
        grid-template-columns: 1fr
    }

    .duo.flip {
        direction: ltr
    }

    .split-inner {
        height: auto
    }

    .split-img {
        height: 50vh
    }

    .split-text {
        padding: 40px 24px
    }

    .info-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-row {
        grid-template-columns: 1fr 1fr
    }

    .gal-mosaic {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px;
        gap: 4px;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .08)
    }

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .hero-portrait {
        height: 300px
    }

    .fl-card,
    .fl-card-2 {
        display: none
    }

    .snap-sec {
        min-height: auto;
        scroll-snap-align: none
    }

    .snap-wrap {
        height: auto;
        overflow-y: visible;
        scroll-snap-type: none
    }

    .cr-card {
        flex: 0 0 280px
    }

    .work-grid,
    .info-grid {
        grid-template-columns: 1fr
    }

    .stat-row {
        grid-template-columns: 1fr
    }

    .gal-mosaic {
        grid-template-columns: 1fr
    }

    .gal-item.tall {
        grid-row: span 1
    }

    .gal-item.wide {
        grid-column: span 1
    }

    .footer .container {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}