/* ====================================================
   LJMS VENTURES — Stylesheet
   Color Palette based on logo orange #F7941D
   ==================================================== */

/* ---------- Custom Properties ---------- */
:root {
    --orange:        #F7941D;
    --orange-dark:   #D97B0B;
    --orange-light:  #FDB14B;
    --orange-glow:   rgba(247, 148, 29, .15);
    --orange-bg:     #FFF7EE;

    --navy:          #0F1923;
    --navy-light:    #1A2D3D;
    --charcoal:      #2D3436;
    --gray:          #6B7280;
    --gray-light:    #9CA3AF;
    --border:        #E5E7EB;
    --bg:            #FFFFFF;
    --bg-warm:       #FFFCF9;
    --bg-section:    #F9FAFB;

    --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --nav-h:         80px;
    --container:     1200px;
    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     20px;

    --ease-out:      cubic-bezier(.16,1,.3,1);
    --ease-spring:   cubic-bezier(.34,1.56,.64,1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

::selection {
    background: var(--orange);
    color: #fff;
}

/* ---------- Grain overlay ---------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .032;
    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 type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease-out), visibility .6s;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 80px;
    margin-bottom: 24px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-bar {
    width: 160px;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--orange);
    border-radius: 3px;
    animation: preloaderFill 1.2s var(--ease-out) forwards;
}
@keyframes preloaderPulse {
    0%,100% { opacity: .4; transform: scale(.96); }
    50%     { opacity: 1;  transform: scale(1); }
}
@keyframes preloaderFill {
    to { width: 100%; }
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
}
h2 em, h1 em {
    font-style: italic;
    color: var(--orange);
}

.section-label {
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}
.section-label--light { color: var(--orange-light); }

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 24px;
}
.section-title--light,
.section-title--light em { color: #fff; }
.section-title--light em { color: var(--orange-light); }

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 680px;
    margin-bottom: 56px;
}
.section-subtitle--light { color: rgba(255,255,255,.65); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: .9375rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 24px rgba(247,148,29,.25);
}
.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 8px 32px rgba(247,148,29,.35);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255,255,255,.95);
    transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
#navbar.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 36px;
    width: auto;
    transition: opacity .3s;
}
.nav-logo:hover img { opacity: .8; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color .3s;
    position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--orange);
    transition: width .3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--orange); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    transition: background .3s, transform .3s, box-shadow .3s !important;
}
.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(247,148,29,.3);
}

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all .35s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease-out), visibility .4s;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color .3s;
    opacity: 0;
    transform: translateY(20px);
}
.mobile-menu.active .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), color .3s;
}
.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: .15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: .25s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: .3s; }
.mobile-menu-links a:hover { color: var(--orange); }

/* ============ HERO ============ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
    padding-top: var(--nav-h);
}

/* Animated gradient orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    will-change: transform;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFD699 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%     { transform: translate(-40px, 30px) scale(1.05); }
    66%     { transform: translate(20px, -20px) scale(.95); }
}
@keyframes orbFloat2 {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%     { transform: translate(30px, -40px) scale(1.1); }
    66%     { transform: translate(-20px, 20px) scale(.9); }
}
@keyframes orbFloat3 {
    0%,100% { transform: translate(0, 0) scale(1); }
    50%     { transform: translate(-30px, 30px) scale(1.08); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 120px;
    max-width: 780px;
}

.hero-eyebrow {
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    margin-bottom: 28px;
    line-height: 1.08;
}
.hero-title .line { display: block; }

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 44px;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { top: -100%; }
    50%  { top: 100%; }
    100% { top: 100%; }
}

/* ============ ABOUT ============ */
#about {
    padding: 140px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 48px;
}

.about-image {
    position: relative;
}
.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,.1);
}
.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.2);
    filter: grayscale(1);
    transition: transform .8s var(--ease-out), filter 1s var(--ease-out);
}
.image-frame:hover img {
    transform: scale(1.23);
    filter: grayscale(0);
}
.image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    z-index: -1;
    border-top: 2.5px solid var(--orange);
    border-right: 2.5px solid var(--orange);
    border-radius: 0 var(--radius-sm) 0 0;
    background: none;
    transition: width .5s var(--ease-out), height .5s var(--ease-out), opacity .5s;
    opacity: .6;
}
.image-accent::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-top: 1.5px solid var(--orange);
    border-right: 1.5px solid var(--orange);
    border-radius: 0 calc(var(--radius-sm) - 2px) 0 0;
    opacity: .5;
}
.about-image:hover .image-accent {
    width: 100px;
    height: 100px;
    opacity: 1;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 8px;
}
.about-role {
    font-size: 1rem;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 20px;
}
.about-divider {
    width: 48px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    margin-bottom: 28px;
}
.about-content p {
    font-size: 1.0625rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-content p:last-child { margin-bottom: 0; }

/* ============ TRACK RECORD ============ */
#track-record {
    padding: 140px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.track-record-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.track-record-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
    filter: grayscale(1) brightness(.2);
    opacity: .25;
}
#track-record .container {
    position: relative;
    z-index: 1;
}
#track-record::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,148,29,.08) 0%, transparent 70%);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: background .4s, border-color .4s, transform .4s var(--ease-out);
}
.stat-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(247,148,29,.2);
    transform: translateY(-4px);
}

.stat-number,
.stat-display {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-unit {
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.stat-label {
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}

/* ============ VISION ============ */
#vision {
    padding: 160px 0;
    background: var(--bg-warm);
    position: relative;
}

.vision-wrapper {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.vision-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 24px;
}
.vision-divider {
    width: 64px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    margin: 0 auto 36px;
}
.vision-text {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--gray);
    line-height: 1.85;
}
.vision-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ============ APPROACH ============ */
#approach {
    padding: 140px 0;
    background: var(--bg);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.approach-card {
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: border-color .4s, box-shadow .4s, transform .4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-out);
}
.approach-card:hover {
    border-color: rgba(247,148,29,.2);
    box-shadow: 0 16px 48px rgba(0,0,0,.06);
    transform: translateY(-4px);
}
.approach-card:hover::before {
    transform: scaleX(1);
}
.approach-icon {
    width: 52px;
    height: 52px;
    color: var(--orange);
    margin-bottom: 28px;
}
.approach-icon svg {
    width: 100%;
    height: 100%;
}
.approach-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--charcoal);
}
.approach-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
}

/* ============ ILLUSTRATIONS STRIP ============ */
.illustrations-section {
    padding: 100px 0;
    background: var(--bg);
}
.illustrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}
.illustration-item {
    text-align: center;
}
.illustration-item img {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto 24px;
    opacity: .85;
    transition: opacity .4s, transform .4s var(--ease-out);
}
.illustration-item:hover img {
    opacity: 1;
    transform: translateY(-4px);
}
.illustration-item h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.illustration-item p {
    font-size: .9375rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.illustrations-grid .reveal-up:nth-child(2) { transition-delay: .1s; }
.illustrations-grid .reveal-up:nth-child(3) { transition-delay: .2s; }

@media (max-width: 768px) {
    .illustrations-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .illustrations-section { padding: 60px 0; }
}

/* ============ CRITERIA ============ */
#criteria {
    padding: 140px 0;
    background: var(--bg-warm);
}

.criteria-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.criteria-text .section-title {
    margin-bottom: 20px;
}
.criteria-description {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
}

.criteria-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.criteria-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: border-color .3s, box-shadow .3s, transform .35s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.criteria-card:hover {
    border-color: rgba(247,148,29,.25);
    box-shadow: 0 8px 32px rgba(0,0,0,.05);
    transform: translateY(-3px);
}
.criteria-card-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
}
.criteria-card-value {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--charcoal);
}
.criteria-card-detail {
    font-size: .875rem;
    color: var(--gray-light);
}

/* ============ CONTACT ============ */
#contact {
    padding: 140px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
#contact::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,148,29,.06) 0%, transparent 70%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-description {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 32px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: background .3s, border-color .3s, transform .35s var(--ease-out);
}
a.contact-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(247,148,29,.25);
    transform: translateY(-2px);
}
.contact-card-icon {
    width: 28px;
    height: 28px;
    color: var(--orange);
    margin-bottom: 4px;
}
.contact-card-icon svg {
    width: 100%;
    height: 100%;
}
.contact-card-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.contact-card-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
}

/* ---------- Contact Form ---------- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .3s, background .3s;
}
.form-group input::placeholder {
    color: rgba(255,255,255,.35);
}
.form-group input:focus {
    border-color: var(--orange);
    background: rgba(255,255,255,.08);
}
.btn--form {
    margin-top: 4px;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.form-note {
    font-size: .8rem;
    color: rgba(255,255,255,.3);
    text-align: center;
    margin-top: 4px;
}
.contact-info-row {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.contact-card--small {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
}
.contact-card--small .contact-card-value {
    font-size: .95rem;
}

/* ============ FOOTER ============ */
footer {
    padding: 48px 0;
    background: #0A1219;
    border-top: 1px solid rgba(255,255,255,.04);
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    height: 28px;
    width: auto;
    opacity: .5;
    mix-blend-mode: screen;
    transition: opacity .3s;
}
.footer-logo:hover { opacity: .8; }
.footer-copy {
    font-size: .8125rem;
    color: rgba(255,255,255,.3);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stats-grid .reveal-up:nth-child(2) { transition-delay: .08s; }
.stats-grid .reveal-up:nth-child(3) { transition-delay: .16s; }
.stats-grid .reveal-up:nth-child(4) { transition-delay: .24s; }

.approach-grid .reveal-up:nth-child(2) { transition-delay: .08s; }
.approach-grid .reveal-up:nth-child(3) { transition-delay: .16s; }
.approach-grid .reveal-up:nth-child(4) { transition-delay: .24s; }

.criteria-cards .reveal-up:nth-child(2) { transition-delay: .06s; }
.criteria-cards .reveal-up:nth-child(3) { transition-delay: .12s; }
.criteria-cards .reveal-up:nth-child(4) { transition-delay: .18s; }
.criteria-cards .reveal-up:nth-child(5) { transition-delay: .24s; }
.criteria-cards .reveal-up:nth-child(6) { transition-delay: .30s; }

.hero-content .reveal-up:nth-child(1) { transition-delay: .2s; }
.hero-content .reveal-up:nth-child(2) { transition-delay: .35s; }
.hero-content .reveal-up:nth-child(3) { transition-delay: .5s; }
.hero-content .reveal-up:nth-child(4) { transition-delay: .65s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    .criteria-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    .nav-links { display: none; }
    .nav-toggle { display: block; }

    #hero { min-height: 100svh; }

    .hero-content {
        padding: 48px 0 100px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-card { padding: 28px 16px; }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .approach-card {
        padding: 36px 28px;
    }

    .criteria-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .scroll-indicator { display: none; }

    #about,
    #track-record,
    #vision,
    #approach,
    #criteria,
    #contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .btn {
        padding: 14px 28px;
        font-size: .875rem;
    }
}
