﻿/* ═══════════════════════════════════════════════
   PUNCAK NILAM — css/style.css
   Design: Refined / Editorial
   Fonts: Cormorant Garamond + DM Sans
═══════════════════════════════════════════════ */

:root {
    --clr-dark: #0e0e0e;
    --clr-charcoal: #1c1c1c;
    --clr-mid: #3a3a3a;
    --clr-muted: #888;
    --clr-border: #e0dbd4;
    --clr-bg: #faf9f7;
    --clr-cream: #f4f0ea;
    --clr-accent: #b8832a;
    --clr-accent2: #d4a547;
    --clr-white: #fff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --header-h: 72px;
    --topbar-h: 36px;
    --max-w: 1320px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-dark);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

sup {
    font-size: 0.55em;
    vertical-align: super;
}

/* ── Container ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 16px;
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
    background: var(--clr-dark);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
}

.topbar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-tagline {
    font-size: 12px;
    color: #777;
}

.topbar-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

    .topbar-links a {
        color: #aaa;
        font-size: 12px;
        transition: color .2s;
    }

        .topbar-links a:hover {
            color: var(--clr-white);
        }

    .topbar-links .login-link {
        color: var(--clr-accent2);
        font-weight: 500;
    }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 150;
    height: var(--header-h);
    background: rgba(250, 249, 247, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    transition: box-shadow .3s var(--ease-out);
}

    #site-header.scrolled {
        box-shadow: 0 2px 24px rgba(0,0,0,.07);
    }

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--clr-dark);
    color: var(--clr-accent2);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.02em;
    color: var(--clr-dark);
}

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-list > li {
        position: relative;
    }

        .nav-list > li > a {
            font-size: 13.5px;
            font-weight: 500;
            color: var(--clr-mid);
            padding: 8px 14px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color .2s, background .2s;
            white-space: nowrap;
        }

            .nav-list > li > a:hover,
            .nav-list > li.active > a {
                color: var(--clr-dark);
                background: var(--clr-cream);
            }

.caret {
    font-size: 10px;
    opacity: .6;
    transition: transform .2s;
}

.nav-list > li:hover .caret {
    transform: rotate(180deg);
}

/* Mega dropdown */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 580px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    padding: 28px;
    display: flex;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
    z-index: 300;
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .mega-col.mega-featured {
        flex: 1.2;
        border-left: 1px solid var(--clr-border);
        padding-left: 24px;
    }

.mega-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 10px;
}

.mega-col > a {
    font-size: 13.5px;
    color: var(--clr-mid);
    padding: 6px 8px;
    border-radius: 4px;
    transition: color .15s, background .15s, padding-left .15s;
}

    .mega-col > a:hover {
        color: var(--clr-dark);
        background: var(--clr-cream);
        padding-left: 14px;
    }

.mega-card {
    background: var(--clr-cream);
    border-radius: 6px;
    padding: 18px;
    flex: 1;
}

.mega-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.mega-card-desc {
    font-size: 12.5px;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.mega-card-link {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--clr-accent);
}

    .mega-card-link:hover {
        letter-spacing: .03em;
    }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.btn-contact {
    background: var(--clr-dark);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    display: inline-block;
}

    .btn-contact:hover {
        background: var(--clr-accent);
        transform: translateY(-1px);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--clr-dark);
        border-radius: 1px;
        transition: .3s;
    }

/* ══════════════════════════════════════
   BUTTONS (global)
══════════════════════════════════════ */
.btn-primary {
    background: var(--clr-accent);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 4px;
    display: inline-block;
    transition: background .2s, transform .15s;
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--clr-accent2);
        transform: translateY(-2px);
    }

    .btn-primary.btn-lg {
        padding: 16px 36px;
        font-size: 15px;
    }

.btn-ghost {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 0;
    transition: color .2s;
}

    .btn-ghost:hover {
        color: var(--clr-white);
    }

.btn-ghost-dark {
    color: var(--clr-accent);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s, letter-spacing .2s;
}

    .btn-ghost-dark:hover {
        color: var(--clr-dark);
        letter-spacing: .03em;
    }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100svh - var(--topbar-h) - var(--header-h));
    min-height: 600px;
    background: var(--clr-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,131,42,.12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184,131,42,.06) 0%, transparent 60%), linear-gradient(135deg, #0e0e0e 60%, #1a1511 100%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 60px);
    width: 100%;
}

.hero-content {
    max-width: 680px;
    animation: fadeUp .9s var(--ease-out) both;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-accent2);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-eyebrow::before {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--clr-accent2);
        flex-shrink: 0;
    }

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(46px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

    .hero-headline em {
        font-style: italic;
        color: var(--clr-accent2);
        font-weight: 300;
    }

.hero-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.1);
    animation: fadeUp .9s .2s var(--ease-out) both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 40px;
}

    .stat-item:first-child {
        padding-left: 0;
    }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    color: var(--clr-white);
    line-height: 1;
}

    .stat-num sup {
        color: var(--clr-accent2);
    }

.stat-label {
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    right: clamp(20px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.35);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% {
        opacity: .3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(.7);
    }
}

/* ══════════════════════════════════════
   SERVICES STRIP
══════════════════════════════════════ */
.services-strip {
    background: var(--clr-white);
    padding: clamp(60px, 8vw, 96px) 0;
    border-bottom: 1px solid var(--clr-border);
}

.strip-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.strip-viewall {
    font-size: 13px;
    color: var(--clr-accent);
    font-weight: 500;
    transition: letter-spacing .2s;
}

    .strip-viewall:hover {
        letter-spacing: .03em;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.service-card {
    background: var(--clr-white);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .25s;
    cursor: pointer;
}

    .service-card:hover {
        background: var(--clr-cream);
    }

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--clr-accent);
}

    .service-icon svg {
        width: 100%;
        height: 100%;
    }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-dark);
    line-height: 1.25;
}

.service-card p {
    font-size: 13.5px;
    color: var(--clr-muted);
    line-height: 1.6;
    flex: 1;
}

.card-arrow {
    font-size: 18px;
    color: var(--clr-accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s, transform .2s;
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════
   ABOUT INTRO
══════════════════════════════════════ */
.about-intro {
    padding: clamp(80px, 10vw, 128px) 0;
    background: var(--clr-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
}

.about-img-placeholder {
    width: 90%;
    height: 100%;
    background: linear-gradient(135deg, #c9b99a 0%, #a8926e 100%);
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
/* To use a real image, replace .about-img-placeholder with:
   <img src="/images/your-photo.jpg" alt="..." style="width:90%;height:100%;object-fit:cover;border-radius:4px;"> */
.img-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.about-accent-block {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 48%;
    height: 40%;
    background: var(--clr-accent);
    border-radius: 4px;
    z-index: -1;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--clr-dark);
    margin-bottom: 28px;
}

    .about-text h2 em {
        font-style: italic;
        color: var(--clr-accent);
    }

.about-text p {
    font-size: 15px;
    color: var(--clr-mid);
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-text .btn-primary {
    margin-top: 12px;
}

/* ══════════════════════════════════════
   SECTORS
══════════════════════════════════════ */
.sectors {
    background: var(--clr-dark);
    padding: clamp(80px, 10vw, 120px) 0;
}

.sectors-header {
    margin-bottom: 56px;
}

    .sectors-header .section-label {
        color: var(--clr-accent2);
    }

    .sectors-header h2 {
        font-family: var(--font-display);
        font-size: clamp(36px, 4vw, 54px);
        font-weight: 300;
        color: var(--clr-white);
        line-height: 1.15;
    }

.sectors-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.1);
}

.sector-row {
    display: grid;
    grid-template-columns: 48px 1fr 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 2px;
    transition: background .2s;
    cursor: pointer;
}

    .sector-row:hover {
        background: rgba(255,255,255,.04);
    }

.sector-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-style: italic;
    color: var(--clr-accent2);
}

.sector-name {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 300;
    color: var(--clr-white);
    transition: letter-spacing .2s;
}

.sector-row:hover .sector-name {
    letter-spacing: .01em;
}

.sector-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.4);
}

.sector-link {
    font-size: 13px;
    color: var(--clr-accent2);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .2s, transform .2s;
}

.sector-row:hover .sector-link {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════
   INSIGHTS
══════════════════════════════════════ */
.insights {
    padding: clamp(80px, 10vw, 120px) 0;
    background: var(--clr-bg);
}

.insights-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

    .insights-header h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 300;
        color: var(--clr-dark);
        line-height: 1.2;
    }

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--clr-border);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.insight-card {
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background .2s;
}

    .insight-card:hover {
        background: var(--clr-cream);
    }

.insight-img-wrap {
    overflow: hidden;
}

.insight-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform .5s var(--ease-out);
}

.insight-card:hover .insight-img {
    transform: scale(1.04);
}

.insight-img-1 {
    background: linear-gradient(135deg, #8fafb5 0%, #4d7a8a 100%);
}

.insight-img-2 {
    background: linear-gradient(135deg, #b5a08f 0%, #8a6d4d 100%);
}

.insight-img-3 {
    background: linear-gradient(135deg, #9fb58f 0%, #5a8a4d 100%);
}
/* Replace gradients with: background-image: url('/images/insight-1.jpg'); */
.insight-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(184,131,42,.1);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
}

.insight-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-dark);
    line-height: 1.3;
    flex: 1;
}

.insight-date {
    font-size: 12px;
    color: var(--clr-muted);
    letter-spacing: .05em;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #8a5e16 100%);
    padding: clamp(64px, 8vw, 96px) 0;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

    .cta-inner h2 {
        font-family: var(--font-display);
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 300;
        color: var(--clr-white);
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .cta-inner p {
        color: rgba(255,255,255,.75);
        font-size: 16px;
        margin-bottom: 36px;
    }

    .cta-inner .btn-primary {
        background: var(--clr-white);
        color: var(--clr-accent);
    }

        .cta-inner .btn-primary:hover {
            background: var(--clr-dark);
            color: var(--clr-white);
        }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#site-footer {
    background: var(--clr-dark);
}

.footer-top {
    padding: clamp(60px, 8vw, 96px) 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-mark {
    background: var(--clr-accent);
    color: var(--clr-white);
}

.footer-logo .logo-text {
    color: var(--clr-white);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    line-height: 1.6;
    font-style: italic;
    font-family: var(--font-display);
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255,255,255,.5);
        transition: border-color .2s, color .2s, background .2s;
    }

        .footer-social a:hover {
            border-color: var(--clr-accent2);
            color: var(--clr-accent2);
            background: rgba(184,131,42,.08);
        }

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--clr-white);
    }

.footer-addr {
    font-size: 13.5px;
    color: rgba(255,255,255,.35);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.3);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

    .footer-legal a {
        font-size: 12px;
        color: rgba(255,255,255,.3);
        transition: color .2s;
    }

        .footer-legal a:hover {
            color: rgba(255,255,255,.7);
        }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-row {
        grid-template-columns: 40px 1fr auto;
    }

    .sector-desc {
        display: none;
    }

    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }

        .insights-grid .insight-card:last-child {
            display: none;
        }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    :root {
        --header-h: 64px;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        position: fixed;
        inset: 0;
        top: calc(var(--topbar-h) + var(--header-h));
        background: var(--clr-white);
        flex-direction: column;
        padding: 24px;
        z-index: 100;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

        .nav-list > li > a {
            font-size: 16px;
            padding: 14px 8px;
            width: 100%;
        }

    .mega-dropdown {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .sector-row {
        grid-template-columns: 36px 1fr auto;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

        .insights-grid .insight-card:last-child {
            display: flex;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 28px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 0;
    }

    .topbar-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .insights-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
