*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --maroon: #763948;
    --maroon-dark: #5a2b37;
    --maroon-deep: #3a1c25;
    --maroon-light: #8f4a5c;
    --timberwolf: #D6CCD0;
    --timberwolf-dark: #b8aab0;
    --ink: #0d090b;
    --ink-mid: #161013;
    --ink-soft: #20171c;
    --ink-card: #1a1216;
    --white: #ffffff;
    --muted: #8e7d83;
    --border: rgba(214, 204, 208, 0.08);
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Noise overlay - Webflow style */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.022;
    pointer-events: none;
    z-index: 998;
    mix-blend-mode: overlay;
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.ldr-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    overflow: hidden;
}

.ldr-logo-inner {
    transform: translateY(105%);
    display: block;
}

.ldr-bar {
    width: 220px;
    height: 1px;
    background: rgba(214, 204, 208, 0.1);
    overflow: hidden;
}

.ldr-bar-fill {
    height: 100%;
    background: var(--maroon);
    width: 0%;
}

.ldr-sub {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ldr-sub::before,
.ldr-sub::after {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--maroon);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 76px;
    background: transparent;
    transition: background 0.5s, height 0.4s, border-color 0.5s;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(13, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    height: 64px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    opacity: 0;
}

.nav-logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.08em;
    color: var(--white);
}

.nav-logo-sub {
    font-size: 8px;
    letter-spacing: 0.4em;
    color: var(--timberwolf);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-center {
    display: flex;
    gap: 4px;
    list-style: none;
    opacity: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
}

.nav-center a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(214, 204, 208, 0.65);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 100px;
    transition: color 0.3s, background 0.3s;
    position: relative;
}

.nav-center a:hover,
.nav-center a.active {
    color: var(--white);
    background: rgba(118, 57, 72, 0.4);
}

.nav-cta {
    opacity: 0;
    background: var(--white);
    color: var(--ink) !important;
    padding: 11px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.nav-cta:hover {
    background: var(--maroon);
    color: var(--white) !important;
}

.nav-cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--maroon);
    transition: background 0.3s;
}

.nav-cta:hover .nav-cta-dot {
    background: var(--white);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 10vw 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(118, 57, 72, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 57, 72, 0.06) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 10%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 10%, transparent 90%);
}

.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(118, 57, 72, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    top: 30%;
    right: -10%;
    transform: translate(0, -50%);
    pointer-events: none;
    filter: blur(20px);
}

.hero-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143, 74, 92, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    bottom: -10%;
    left: -5%;
    pointer-events: none;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    min-width: 0;
}

/* Hero Geometric Collage */
.hero-collage {
    position: relative;
    aspect-ratio: 1 / 1.05;
    width: 100%;
    max-width: 520px;
    justify-self: end;
    perspective: 1200px;
    opacity: 0;
    transform: translateY(30px);
}

.hc-stage {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hc-tile {
    position: absolute;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hc-tile-inner {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hc-tile:hover .hc-tile-inner {
    transform: scale(1.06) rotate(-2deg);
}

/* Tile A — large maroon circle (top-left) */
.hc-circle-lg {
    top: 0;
    left: 0;
    width: 52%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--maroon-light), var(--maroon-dark) 70%, var(--maroon-deep));
    box-shadow: inset -20px -30px 60px rgba(0, 0, 0, 0.4), 0 30px 80px rgba(118, 57, 72, 0.4);
}

.hc-circle-lg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 50%);
    border-radius: inherit;
}

.hc-circle-lg .hc-orbit {
    position: absolute;
    inset: 12%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.hc-circle-lg .hc-orbit::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--white);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tile B — quarter circle (top-right) */
.hc-quarter {
    top: 4%;
    right: 0;
    width: 42%;
    aspect-ratio: 1;
    border-radius: 0 100% 0 0;
    background: linear-gradient(135deg, var(--timberwolf), #b8a3ab);
    overflow: hidden;
}

.hc-quarter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 8px, rgba(118, 57, 72, 0.12) 8px 9px);
    border-radius: inherit;
}

.hc-quarter::after {
    content: '';
    position: absolute;
    bottom: 18%;
    left: 18%;
    width: 28%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--maroon-deep);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Tile C — rounded square with grid */
.hc-square {
    top: 48%;
    left: 4%;
    width: 36%;
    aspect-ratio: 1;
    border-radius: 24px;
    background: var(--ink-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.hc-square::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(214, 204, 208, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 204, 208, 0.06) 1px, transparent 1px);
    background-size: 18px 18px;
}

.hc-square-num {
    position: absolute;
    bottom: 16px;
    left: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hc-square-num span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--maroon-light);
    margin-bottom: 6px;
    font-weight: 500;
}

.hc-square-bar {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 4px;
}

.hc-square-bar i {
    display: block;
    width: 4px;
    background: var(--maroon-light);
    border-radius: 2px;
    animation: barPulse 2.4s ease-in-out infinite;
}

.hc-square-bar i:nth-child(1) {
    height: 14px;
    animation-delay: 0s;
}

.hc-square-bar i:nth-child(2) {
    height: 22px;
    animation-delay: 0.2s;
}

.hc-square-bar i:nth-child(3) {
    height: 10px;
    animation-delay: 0.4s;
}

.hc-square-bar i:nth-child(4) {
    height: 28px;
    animation-delay: 0.6s;
}

@keyframes barPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Tile D — small accent dot */
.hc-dot {
    top: 42%;
    left: 46%;
    width: 14%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15), inset -6px -8px 16px rgba(0, 0, 0, 0.08);
}

.hc-dot::after {
    content: '';
    position: absolute;
    inset: 28%;
    border-radius: 50%;
    background: var(--maroon);
}

/* Tile E — pill / stack */
.hc-pill {
    top: 56%;
    right: 2%;
    width: 48%;
    height: 22%;
    border-radius: 100px;
    background: linear-gradient(120deg, var(--maroon), var(--maroon-light));
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(118, 57, 72, 0.4);
}

.hc-pill-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-dark);
}

.hc-pill-text {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.3;
}

.hc-pill-text small {
    display: block;
    opacity: 0.7;
    font-size: 9px;
    margin-top: 2px;
}

/* Tile F — half-circle bottom */
.hc-half {
    bottom: 0;
    left: 28%;
    width: 36%;
    height: 22%;
    border-radius: 0 0 100px 100px;
    background: var(--ink-card);
    border: 1px solid var(--border);
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hc-half-arrow {
    color: var(--maroon-light);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Tile G — small square dotted */
.hc-dotgrid {
    bottom: 6%;
    right: 6%;
    width: 22%;
    aspect-ratio: 1;
    border-radius: 16px;
    background: var(--maroon-deep);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hc-dotgrid i {
    background: rgba(214, 204, 208, 0.18);
    border-radius: 50%;
    animation: dotFlash 3s ease-in-out infinite;
}

.hc-dotgrid i:nth-child(3n) {
    animation-delay: 0.4s;
    background: rgba(214, 204, 208, 0.4);
}

.hc-dotgrid i:nth-child(5n) {
    animation-delay: 0.8s;
    background: var(--maroon-light);
}

@keyframes dotFlash {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .hero-collage {
        justify-self: start;
        max-width: 420px;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px 8px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--timberwolf);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-tag-pill {
    background: var(--maroon);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(56px, 8vw, 124px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.015em;
    color: var(--white);
    max-width: 1100px;
}

.hero-line {
    display: block;
    overflow: hidden;
    line-height: 1;
    padding: 0.05em 0;
}

.hero-line-inner {
    display: block;
    transform: translateY(110%);
}

.hero-italic {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--timberwolf);
    letter-spacing: -0.01em;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 64px;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--timberwolf);
    max-width: 460px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
}

.btn {
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: transform 0.3s;
}

.btn-primary {
    background: var(--maroon);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--maroon-light);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary>* {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(214, 204, 208, 0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(214, 204, 208, 0.07);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.btn-outline:hover {
    border-color: rgba(214, 204, 208, 0.4);
}

.btn-outline:hover::before {
    transform: translateY(0);
}

.btn-outline>* {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
}

.hero-scroll-line {
    width: 0;
    height: 1px;
    background: var(--maroon);
}

/* Hero side text */
.hero-side {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0;
}

/* ── MARQUEE ── */
.marquee {
    background: var(--maroon);
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.marquee-track {
    display: inline-flex;
    animation: scroll 28s linear infinite;
}

.marquee-item {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.marquee-star {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--white);
    opacity: 0.6;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 0L13.79 10.21L24 12L13.79 13.79L12 24L10.21 13.79L0 12L10.21 10.21Z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 0L13.79 10.21L24 12L13.79 13.79L12 24L10.21 13.79L0 12L10.21 10.21Z'/></svg>") center/contain no-repeat;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SHARED ── */
section {
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--maroon-light);
    margin-bottom: 24px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--maroon);
}

.h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 5.5vw, 84px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.015em;
    color: var(--white);
}

.h2 .italic {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--timberwolf);
    letter-spacing: -0.01em;
}

.reveal-line {
    overflow: hidden;
    line-height: 1.05;
    padding: 0.04em 0;
}

/* ── ABOUT (What We Do intro) ── */
#about {
    padding: 140px 56px;
    background: var(--timberwolf);
    color: var(--ink);
    position: relative;
}

#about .h2 {
    color: var(--ink);
}

#about .h2 .italic {
    color: var(--maroon-dark);
}

#about .eyebrow {
    color: var(--maroon-dark);
}

#about .eyebrow::before {
    background: var(--maroon-dark);
}

#about .about-body {
    color: rgba(13, 9, 11, 0.7);
}

#about .about-cta {
    color: var(--maroon-dark);
    border-bottom-color: var(--maroon-dark);
}

#about .pillar-row {
    border-color: rgba(13, 9, 11, 0.12);
}

#about .pillar-row:last-child {
    border-bottom-color: rgba(13, 9, 11, 0.12);
}

#about .pillar-name {
    color: var(--ink);
}

#about .pillar-num {
    color: var(--maroon-dark);
}

#about .pillar-desc {
    color: rgba(13, 9, 11, 0.6);
}

#about .pillar-arrow {
    border-color: rgba(13, 9, 11, 0.15);
    color: var(--maroon-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.about-body {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--timberwolf);
    margin-top: 36px;
}

.about-body p+p {
    margin-top: 20px;
}

.about-divider {
    width: 0;
    height: 2px;
    background: var(--maroon);
    margin: 32px 0;
}

.about-cta {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--maroon);
    transition: gap 0.3s;
}

.about-cta:hover {
    gap: 16px;
}

.pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar-row {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 32px;
    align-items: center;
    cursor: pointer;
    transition: padding 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.pillar-row:hover {
    padding-left: 16px;
}

.pillar-row:last-child {
    border-bottom: 1px solid var(--border);
}

.pillar-num {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--maroon-light);
}

.pillar-content {}

.pillar-name {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.pillar-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted);
    max-width: 420px;
}

.pillar-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    color: var(--timberwolf);
}

.pillar-row:hover .pillar-arrow {
    background: var(--maroon);
    border-color: var(--maroon);
    transform: rotate(-45deg);
}

/* ── STATS ── */
.stats-section {
    padding: 0 56px 140px;
    background: var(--timberwolf);
    color: var(--ink);
}

.stats-section .stat-num {
    color: var(--ink);
}

.stats-section .stat-suffix {
    color: var(--maroon-dark);
}

.stats-section .stat-label {
    color: rgba(13, 9, 11, 0.6);
}

.stats-section .stats-grid {
    border-color: rgba(13, 9, 11, 0.12);
}

.stats-section .stat {
    border-color: rgba(13, 9, 11, 0.12);
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    padding: 48px 32px;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-suffix {
    color: var(--maroon-light);
    font-size: 0.6em;
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 16px;
    letter-spacing: 0.04em;
}

/* ── VENTURES ── */
#ventures {
    padding: 140px 56px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#ventures .h2 {
    color: var(--ink);
}

#ventures .h2 .italic {
    color: var(--maroon-dark);
}

.ventures-bg-text {
    position: absolute;
    bottom: -40px;
    right: -50px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(180px, 22vw, 360px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(118, 57, 72, 0.1);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.ventures-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 60px;
    flex-wrap: wrap;
}

.ventures-intro {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    max-width: 380px;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.v-card {
    background: var(--ink-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: border-color 0.4s, transform 0.4s;
}

.v-card:hover {
    border-color: var(--maroon);
    transform: translateY(-6px);
}

.v-card-visual {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--maroon-deep), var(--ink-soft));
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(214, 204, 208, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 204, 208, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.v-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(143, 74, 92, 0.4), transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    transition: transform 0.6s ease;
}

.v-card:hover .v-card-glow {
    transform: scale(1.3);
}

.v-card-icon {
    position: relative;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: var(--white);
    letter-spacing: -0.02em;
    mix-blend-mode: overlay;
    opacity: 0.6;
}

.v-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(13, 9, 11, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--timberwolf);
}

.v-card-arrow-circ {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 9, 11, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s, transform 0.3s;
}

.v-card:hover .v-card-arrow-circ {
    background: var(--maroon);
    transform: rotate(-45deg);
}

.v-card-body {
    padding: 28px 28px 32px;
}

.v-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    line-height: 1;
}

.v-card-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted);
}

/* ── SERVICES (Horizontal scroll grid) ── */
#services {
    padding: 140px 56px 0;
    background: var(--ink-mid);
    overflow: hidden;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 80px;
}

.services-intro {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--timberwolf);
}

.services-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-tab {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    font-size: 12px;
    font-weight: 500;
    color: var(--timberwolf);
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.service-tab:hover {
    border-color: rgba(214, 204, 208, 0.2);
}

.service-tab.active {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

.vi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.vi-cell {
    background: var(--ink-mid);
    padding: 36px 28px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.vi-cell:hover {
    background: var(--ink-card);
}

.vi-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--maroon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.vi-cell:hover::before {
    transform: scaleX(1);
}

.vi-num {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--maroon-light);
}

.vi-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.vi-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.vi-list li {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
}

.vi-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 1px;
    background: var(--maroon);
}

.other-services {
    max-width: 1280px;
    margin: 100px auto 0;
    padding: 0 0 140px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.os-item {
    background: var(--ink-mid);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.4s;
}

.os-item:hover {
    background: var(--ink-card);
}

.os-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(118, 57, 72, 0.1);
    color: var(--maroon-light);
    margin-bottom: 12px;
}

.os-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.os-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
}

/* ── ABOUT US (Vision/Mission/Values + Team) ── */
#aboutus {
    padding: 140px 56px;
    background: var(--timberwolf);
    color: var(--ink);
}

#aboutus .h2 {
    color: var(--ink);
}

#aboutus .h2 .italic {
    color: var(--maroon-dark);
}

#aboutus .eyebrow {
    color: var(--maroon-dark);
}

#aboutus .eyebrow::before {
    background: var(--maroon-dark);
}

#aboutus .vmv-grid {
    border-color: rgba(13, 9, 11, 0.12);
    background: rgba(13, 9, 11, 0.12);
}

#aboutus .vmv-item {
    background: rgba(255, 255, 255, 0.5);
}

#aboutus .vmv-label {
    color: var(--maroon-dark);
}

#aboutus .vmv-text {
    color: var(--ink);
}

#aboutus .team-intro {
    color: rgba(13, 9, 11, 0.7);
}

#aboutus .leader-card {
    background: var(--white);
    border-color: rgba(13, 9, 11, 0.1);
}

#aboutus .leader-name {
    color: var(--ink);
}

#aboutus .leader-role {
    color: var(--maroon-dark);
}

#aboutus .leader-desc {
    color: rgba(13, 9, 11, 0.6);
}

#aboutus .advisors-title {
    color: var(--ink);
}

#aboutus .advisors-title::after {
    background: rgba(13, 9, 11, 0.12);
}

#aboutus .advisor-card {
    background: var(--white);
    border-color: rgba(13, 9, 11, 0.1);
}

#aboutus .advisor-name {
    color: var(--ink);
}

#aboutus .advisor-role {
    color: var(--maroon-dark);
}

#aboutus .advisor-bio {
    color: rgba(13, 9, 11, 0.6);
}

.aboutus-top {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.vmv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.vmv-item {
    background: var(--ink-mid);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 32px;
    align-items: start;
}

.vmv-label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--maroon-light);
    padding-top: 6px;
}

.vmv-text {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    letter-spacing: 0.01em;
}

.team-section {
    margin-top: 40px;
}

.team-intro {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--timberwolf);
    max-width: 720px;
    margin-bottom: 64px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 80px;
}

.leader-card {
    background: var(--ink-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: border-color 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.leader-card:hover {
    border-color: var(--maroon);
}

.leader-photo {
    aspect-ratio: 1;
    position: relative;
    background: linear-gradient(135deg, var(--maroon-dark), var(--ink-soft));
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(214, 204, 208, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214, 204, 208, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
}

.leader-initials {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

.leader-info {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-role {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--maroon-light);
    margin-bottom: 12px;
}

.leader-name {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    line-height: 1.05;
}

.leader-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted);
}

.advisors-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.advisors-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.advisor-card {
    background: var(--ink-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.4s, transform 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.advisor-card:hover {
    border-color: var(--maroon);
    transform: translateY(-4px);
}

.advisor-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon-dark), var(--ink-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.advisor-name {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.advisor-role {
    font-size: 11px;
    font-weight: 400;
    color: var(--maroon-light);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.advisor-bio {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted);
}

/* ── WHY ── */
#philosophy {
    padding: 140px 56px;
    background: linear-gradient(180deg, var(--ink-mid), var(--maroon-deep));
    overflow: hidden;
    position: relative;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-list {
    margin-top: 48px;
}

.why-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateX(-20px);
    transition: padding 0.3s;
}

.why-item:hover {
    padding-left: 12px;
}

.why-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-num {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--timberwolf-dark);
}

.why-quote {
    opacity: 0;
    transform: translateX(40px);
}

.why-quote-mark {
    font-family: 'Instrument Serif', serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    color: var(--maroon-light);
    margin-bottom: -20px;
}

.why-quote-text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.005em;
}

.why-quote-text em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--timberwolf);
}

.why-quote-attr {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--timberwolf);
}

.why-quote-attr-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* ── PARTNER ── */
#partner {
    padding: 140px 56px;
    background: var(--timberwolf);
    color: var(--ink);
}

#partner .h2 {
    color: var(--ink);
}

#partner .h2 .italic {
    color: var(--maroon-dark);
}

#partner .eyebrow {
    color: var(--maroon-dark);
}

#partner .eyebrow::before {
    background: var(--maroon-dark);
}

#partner .partner-sub {
    color: rgba(13, 9, 11, 0.7);
}

#partner .p-card {
    background: var(--white);
    border-color: rgba(13, 9, 11, 0.1);
}

#partner .p-card-title {
    color: var(--ink);
}

#partner .p-card-tag {
    color: var(--maroon-dark);
}

#partner .p-q {
    border-top-color: rgba(13, 9, 11, 0.1);
}

#partner .p-q-q {
    color: var(--ink);
}

#partner .p-q-a {
    color: rgba(13, 9, 11, 0.6);
}

#partner .p-card.featured {
    background: linear-gradient(180deg, var(--maroon-dark) 0%, var(--maroon-deep) 100%);
    border-color: var(--maroon);
}

#partner .p-card.featured .p-card-title,
#partner .p-card.featured .p-q-q {
    color: var(--white);
}

#partner .p-card.featured .p-card-tag {
    color: var(--timberwolf);
}

#partner .p-card.featured .p-q-a {
    color: rgba(255, 255, 255, 0.7);
}

#partner .p-card.featured .p-q {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.partner-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 88px;
}

.partner-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--timberwolf);
    margin-top: 28px;
    line-height: 1.7;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.p-card {
    background: var(--ink-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s, transform 0.4s;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.p-card:hover {
    border-color: var(--maroon);
    transform: translateY(-6px);
}

.p-card.featured {
    background: linear-gradient(180deg, var(--maroon-dark) 0%, var(--maroon-deep) 100%);
    border-color: var(--maroon);
}

.p-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(118, 57, 72, 0.15);
    border: 1px solid rgba(118, 57, 72, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-light);
    margin-bottom: 28px;
}

.p-card.featured .p-card-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.p-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.p-card-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--maroon-light);
    margin-bottom: 32px;
}

.p-card.featured .p-card-tag {
    color: var(--timberwolf);
}

.p-questions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-q {
    padding: 16px 0;
    border-top: 1px solid rgba(214, 204, 208, 0.08);
}

.p-card.featured .p-q {
    border-color: rgba(255, 255, 255, 0.12);
}

.p-q-q {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 6px;
}

.p-q-a {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted);
}

.p-card-desc {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 32px;
}

.p-card.featured .p-q-a,
.p-card.featured .p-card-desc {
    color: var(--white);
}

.partner-cta {
    text-align: center;
    margin-top: 64px;
}

/* ── CONTACT ── */
#contact {
    padding: 140px 56px;
    background: var(--ink-mid);
    position: relative;
    overflow: hidden;
}

.contact-bg-text {
    position: absolute;
    left: -40px;
    bottom: -40px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(160px, 20vw, 320px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(118, 57, 72, 0.08);
    pointer-events: none;
    user-select: none;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 600;
    line-height: 0.95;
    color: var(--white);
    margin-top: 24px;
    letter-spacing: -0.015em;
}

.contact-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--timberwolf);
    display: block;
}

.contact-info {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.contact-info-row:last-child {
    border-bottom: 1px solid var(--border);
}

.contact-info-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 4px;
}

.contact-info-val {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.contact-form {
    background: var(--ink-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(13, 9, 11, 0.5);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 8px;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--maroon);
    background: rgba(118, 57, 72, 0.06);
}

.form-select option {
    background: var(--ink-card);
}

.form-submit {
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--maroon-light);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.form-submit:hover::before {
    transform: translateY(0);
}

.form-submit>* {
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    border-top: 1px solid var(--border);
    padding: 80px 56px 32px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-brand-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}

.footer-brand-sub {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--timberwolf);
    margin-top: 24px;
    line-height: 1.7;
    max-width: 360px;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--maroon-light);
    margin-bottom: 20px;
}

.footer-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-list a {
    font-size: 13px;
    color: var(--timberwolf);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col-list a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--white);
}

.text-ink {
    color: var(--ink);
}

.text-maroon {
    color: var(--maroon);
}

.text-timberwolf {
    color: var(--timberwolf);
}

.text-muted {
    color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }

    .about-grid,
    .why-inner,
    .contact-inner,
    .aboutus-top,
    .services-header,
    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ventures-grid,
    .partner-grid,
    .other-services {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid .stat:nth-child(2) {
        border-right: none;
    }

    .stats-grid .stat:nth-child(1),
    .stats-grid .stat:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .vi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .advisors-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    nav {
        padding: 0 24px;
    }

    #hero {
        padding: 120px 24px 80px;
    }

    #about,
    #ventures,
    #services,
    #aboutus,
    #philosophy,
    #partner,
    #contact {
        padding: 80px 24px;
    }

    .hero-side {
        display: none;
    }

    .vi-grid {
        grid-template-columns: 1fr;
    }

    .advisors-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-photo {
        aspect-ratio: 16/9;
    }

    .vmv-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.hero-card-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(214, 204, 208, 0.04);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.3s ease;
}

.hero-card-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-card-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 70%) var(--my, 20%), rgba(255, 255, 255, 0.22), transparent 45%);
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: opacity 0.4s;
}

.hero-float {
    position: absolute;
    display: block;
    border-radius: 4px;
    background: var(--maroon);
    opacity: 0.85;
    will-change: transform;
    z-index: 2;
}

.hero-float-1 {
    width: 46px;
    height: 46px;
    top: -22px;
    left: -22px;
    border-radius: 50%;
    background: var(--maroon-soft);
}

.hero-float-2 {
    width: 70px;
    height: 70px;
    right: -28px;
    bottom: 36px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background: var(--maroon-deep);
}

.hero-float-3 {
    width: 18px;
    height: 18px;
    right: 40px;
    top: -30px;
    border-radius: 50%;
    border: 2px solid var(--maroon-soft);
    background: transparent;
}