/* GIA Defense — Brand Guideline (fonts, palette, light-first UI) */

/* TT Hoves Pro — headings, labels, CTAs, nav */
@font-face {
    font-family: 'TT Hoves Pro';
    src: url('assets/fonts/TTHovesPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('assets/fonts/TTHovesPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('assets/fonts/TTHovesPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Lato — body copy */
@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Guideline hex */
    --gia-sand: #9c8e75;
    --gia-sand-lighter: #d7be99;
    --gia-sand-glow: #d7be99;
    --gia-sand-warm: #9c8e75;
    --gia-page-gradient: linear-gradient(
        to bottom right,
        var(--gia-sand-warm) 0%,
        var(--gia-sand-glow) 16%,
        var(--gia-bg) 34%,
        var(--gia-white) 52%
    );
    --gia-sand-deep: #8a7d66;
    --gia-ink: #1c1f0e;
    --gia-bg: #f9f9f9;
    /* Olive overlay (web / Draft 2 — not the deprecated #2d2719 panel bg) */
    --gia-olive: #6d7560;
    --gia-olive-deep: #525848;
    --gia-white: #ffffff;

    --gia-dark: var(--gia-ink);
    --gia-sand-light: #b5a890;
    --gia-off-white: var(--gia-bg);
    --gia-gray-100: #f5f3ef;
    --gia-gray-200: #e8e4dd;
    --gia-gray-500: #6b665e;
    --gia-gray-600: #524e48;
    --gia-gray-700: #3a3834;

    --font-heading: 'TT Hoves Pro', 'Lato', -apple-system, 'Helvetica Neue', sans-serif;
    --font-body: 'Lato', -apple-system, 'Helvetica Neue', sans-serif;

    --content-max: 1180px;
    --nav-h: 68px;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --duration-reveal: 1.35s;
    --duration-fast: 0.45s;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gia-gray-700);
    background: var(--gia-bg);
    overflow-x: hidden;
}

/* Fixed viewport gradient — sand stays top-left, does not stretch with page height */
body.gia-site,
body.gia-defense-site {
    background: var(--gia-page-gradient);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.028;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(156, 142, 117, 0.15) 0%, transparent 42%),
        repeating-linear-gradient(
            -18deg,
            transparent,
            transparent 14px,
            rgba(28, 31, 14, 0.025) 14px,
            rgba(28, 31, 14, 0.025) 15px
        );
}

.gia-main {
    background: transparent;
    min-height: 50vh;
    color: var(--gia-ink);
}

.gia-main .label {
    color: var(--gia-sand-deep);
}

.gia-main .heading-md,
.gia-main .heading-lg,
.gia-main .heading-xl {
    color: var(--gia-ink);
}

.gia-main .body-md,
.gia-main .body-lg {
    color: var(--gia-gray-700);
}

.gia-main {
    position: relative;
    z-index: 1;
}

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

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

::selection {
    background: var(--gia-sand-lighter);
    color: var(--gia-dark);
}

/* —— Typography —— */
.heading-xl {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.2vw, 4.25rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--gia-dark);
}

.heading-lg {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--gia-dark);
}

.heading-md {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--gia-dark);
}

.heading-sm {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--gia-ink);
}

.body-lg {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.75;
    color: var(--gia-gray-700);
    max-width: 36em;
}

.body-md {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gia-gray-700);
}

.label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gia-sand);
    margin-bottom: 0.65rem;
}

.hero__brand-line {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.82rem, 1.4vw, 0.95rem);
    letter-spacing: 0.02em;
    color: var(--gia-gray-500);
    margin: -8px auto 16px;
    max-width: 36em;
}

.hero__accent {
    color: var(--gia-sand);
}

.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* —— Reveal animations —— */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity var(--duration-reveal) var(--ease-premium),
        transform var(--duration-reveal) var(--ease-premium);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.97);
    transition:
        opacity var(--duration-reveal) var(--ease-premium),
        transform var(--duration-reveal) var(--ease-premium);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* —— Navigation (sticky, minimal) —— */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    padding: 0 clamp(20px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(28, 31, 14, 0.05);
    transition: box-shadow var(--duration-fast) ease, background var(--duration-fast) ease;
}

.nav.is-scrolled,
.nav--on-dark {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 32px rgba(28, 31, 14, 0.06);
}

.nav__inner {
    max-width: var(--content-max);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav__logo-img {
    display: block;
    width: auto;
    height: 90px;
    max-width: min(220px, 42vw);
    object-fit: contain;
    object-position: left center;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 32px);
    list-style: none;
}

.nav__links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--gia-gray-700);
    transition: color var(--duration-fast) ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--gia-sand);
    transition: width var(--duration-fast) var(--ease-premium);
}

.nav__links a:hover,
.nav__links a.is-active {
    color: var(--gia-dark);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
    width: 100%;
}

.nav__cta {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    padding: 9px 20px;
    background: var(--gia-sand);
    color: var(--gia-white);
    border-radius: 3px;
    transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.nav__cta:hover {
    background: var(--gia-sand-deep);
    transform: translateY(-1px);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gia-ink);
    transition: transform 0.25s var(--ease-premium), opacity 0.2s ease;
}

.nav__mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .nav {
        z-index: 10051;
        overflow: visible;
    }

    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__inner {
        position: relative;
        z-index: 1;
    }

    .nav__hamburger {
        display: flex;
        position: relative;
        z-index: 2;
    }

    .nav__hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav__hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav__hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .nav__mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10050;
        margin: 0;
        padding: 12px clamp(20px, 5vw, 32px) max(24px, env(safe-area-inset-bottom));
        gap: 0;
        background: var(--gia-white);
        border-top: 1px solid var(--gia-gray-200);
        box-shadow: 0 24px 48px rgba(28, 31, 14, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s var(--ease-premium), visibility 0.25s var(--ease-premium);
    }

    .nav__mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav__mobile-menu a {
        display: block;
        padding: 16px 4px;
        min-height: 48px;
        font-family: var(--font-heading);
        font-size: 1.0625rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        line-height: 1.35;
        color: var(--gia-ink);
        text-align: left;
        border-bottom: 1px solid var(--gia-gray-200);
        -webkit-tap-highlight-color: transparent;
    }

    .nav__mobile-menu a:hover,
    .nav__mobile-menu a.is-active {
        color: var(--gia-sand-deep);
    }

    .nav__mobile-menu a:last-of-type {
        border-bottom: none;
        margin-top: 8px;
        padding: 14px 20px;
        text-align: center;
        background: var(--gia-sand);
        color: var(--gia-white);
        border-radius: 3px;
        border-bottom: none;
    }

    .nav__mobile-menu a:last-of-type:hover {
        background: var(--gia-sand-deep);
        color: var(--gia-white);
    }

    body.nav-menu-open {
        overflow: hidden;
    }

    body.nav-menu-open .nav {
        z-index: 10051;
    }

    body.nav-menu-open .nav__mobile-menu.is-open {
        z-index: 10050;
    }

    body.nav-menu-open .home-zone-nav,
    body.nav-menu-open .gia-preview-bar {
        visibility: hidden;
        pointer-events: none;
    }
}

/* —— Buttons —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-premium);
}

.btn--primary {
    background: var(--gia-sand);
    color: var(--gia-white);
    box-shadow: 0 10px 28px rgba(156, 142, 117, 0.28);
}

.btn--primary:hover {
    background: var(--gia-sand-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(28, 31, 14, 0.14);
}

.btn--outline {
    background: transparent;
    color: var(--gia-dark);
    border: 1.5px solid var(--gia-gray-200);
}

.btn--outline:hover {
    border-color: var(--gia-sand);
    color: var(--gia-sand);
}

/* —— ZONE 1: Hero —— */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 48px) 24px 64px;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(28, 31, 14, 0.04);
}

.hero__camo {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0 48px,
            rgba(28, 31, 14, 0.03) 48px 49px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 64px,
            rgba(156, 142, 117, 0.04) 64px 65px
        );
    pointer-events: none;
}

.hero__inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.hero__label {
    margin-bottom: 20px;
    color: var(--gia-sand-deep);
}

.hero__title {
    margin: 0 auto 20px;
}

.hero__subtitle {
    margin: 0 auto 36px;
}

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

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gia-sand), transparent);
    opacity: 0.5;
    animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) scaleY(0.9); }
    50% { opacity: 0.85; transform: translateX(-50%) scaleY(1); }
}

/* —— ZONE 2: About cinematic (olive + video) —— */
.about-cinematic {
    position: relative;
}

.about-cinematic__stage {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--gia-olive-deep);
}

.about-cinematic--home .about-cinematic__stage {
    background: var(--gia-olive);
}

.about-cinematic__media {
    position: absolute;
    inset: 0;
}

.about-cinematic__video,
.about-cinematic__fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cinematic__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: brightness(0.88) contrast(1.05) saturate(0.92);
    transform: scale(1.02);
}

.about-cinematic__fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity 0.5s var(--ease-premium);
}

.about-cinematic--video .about-cinematic__fallback {
    opacity: 0;
}

.about-cinematic__olive {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(109, 117, 96, 0.35) 0%,
        rgba(109, 117, 96, 0.55) 45%,
        rgba(82, 88, 72, 0.72) 100%
    );
    pointer-events: none;
}

.about-cinematic__camo {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.07;
    background-image: repeating-linear-gradient(
        -24deg,
        transparent,
        transparent 6px,
        rgba(255, 255, 255, 0.12) 6px,
        rgba(255, 255, 255, 0.12) 7px
    );
    pointer-events: none;
}

.about-cinematic__content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 48px clamp(20px, 4vw, 40px) clamp(56px, 8vh, 80px);
    color: var(--gia-white);
}

.about-cinematic__quote {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    line-height: 1.35;
    max-width: 18em;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.about-cinematic__quote em {
    font-style: italic;
    color: var(--gia-sand-lighter);
}

.about-cinematic__intro {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 32em;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
}

.about-cinematic__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 720px;
}

.stat-pill {
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.stat-pill__value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1;
    color: var(--gia-white);
    margin-bottom: 6px;
}

.stat-pill__value .accent {
    color: var(--gia-sand-lighter);
}

.stat-pill__label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-cinematic__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* —— Lower platform (compact) —— */
.gia-lower {
    background: var(--gia-off-white);
    box-shadow: 0 -24px 48px rgba(28, 31, 14, 0.04);
}

.section-head {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.section-head .heading-lg {
    margin-top: 4px;
}

/* —— Products (premium showcase) —— */
.products {
    padding: clamp(56px, 8vh, 88px) 0;
}

.products__showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.product-card {
    background: var(--gia-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(28, 31, 14, 0.04),
        0 16px 40px rgba(28, 31, 14, 0.08);
    transition: transform var(--duration-reveal) var(--ease-premium), box-shadow var(--duration-reveal) var(--ease-premium);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 24px rgba(28, 31, 14, 0.08),
        0 28px 56px rgba(28, 31, 14, 0.12);
}

.product-card__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, var(--gia-gray-100), var(--gia-gray-200));
    overflow: hidden;
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease-premium);
}

.product-card:hover .product-card__visual img {
    transform: scale(1.05);
}

.product-card__glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(
        to top,
        rgba(215, 190, 153, 0.45) 0%,
        rgba(156, 142, 117, 0.15) 40%,
        transparent 100%
    );
    pointer-events: none;
}

.product-card__meta {
    padding: 20px 18px 22px;
}

.product-card__caliber {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    color: var(--gia-sand);
    margin-bottom: 4px;
}

.product-card__caliber small {
    font-size: 0.45em;
    vertical-align: super;
    font-weight: 600;
}

.product-card__meta .heading-sm {
    margin-bottom: 6px;
}

.product-card__desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--gia-gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .products__showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card__visual {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 520px) {
    .products__showcase {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* —— Events —— */
.events {
    padding: clamp(40px, 6vh, 64px) 0;
    border-top: 1px solid var(--gia-gray-200);
}

.events__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.events__copy {
    grid-column: 1;
    grid-row: 1;
}

.events__copy .heading-md {
    margin-bottom: 12px;
}

.events__text {
    margin-bottom: 16px;
    max-width: 28em;
}

.events__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.events__list li {
    font-size: 0.88rem;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
    color: var(--gia-gray-700);
}

.events__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gia-sand);
}

.events__visual {
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(28, 31, 14, 0.1);
}

.events__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.events__trust {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-mark img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(28, 31, 14, 0.08));
}

.trust-mark span {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-gray-500);
    line-height: 1.15;
}

@media (max-width: 900px) {
    .events__grid {
        grid-template-columns: 1fr;
    }
    .events__visual {
        grid-column: 1;
        grid-row: 2;
    }
    .events__trust {
        grid-row: 3;
        justify-content: center;
    }
}

/* —— Contact (corporate, no form) —— */
.contact {
    padding: clamp(40px, 6vh, 56px) 0 clamp(56px, 8vh, 72px);
}

.contact__box {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    padding: clamp(28px, 4vw, 40px);
    background: var(--gia-white);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(28, 31, 14, 0.06);
    border: 1px solid var(--gia-gray-200);
}

.contact__lead .heading-md {
    margin-top: 4px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gia-dark);
    transition: color var(--duration-fast) ease;
}

.contact__link:hover {
    color: var(--gia-sand);
}

.contact__address {
    font-size: 0.85rem;
    color: var(--gia-gray-500);
    line-height: 1.5;
}

@media (max-width: 800px) {
    .contact__box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact__info {
        align-items: center;
    }
    .contact__box .btn {
        justify-self: center;
    }
}

/* —— Preview bar —— */
.gia-preview-bar {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 9999;
    font-family: system-ui, sans-serif;
    font-size: 11px;
    padding: 8px 12px;
    background: var(--gia-sand);
    color: var(--gia-white);
    border-radius: 4px;
    opacity: 0.92;
}

.gia-preview-bar strong {
    color: var(--gia-sand-lighter);
}

/* —— Home teasers (multi-page entry) —— */
.teasers {
    padding: clamp(48px, 7vh, 72px) 0;
    background: var(--gia-white);
}

.teasers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.teaser-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--gia-off-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(28, 31, 14, 0.05);
    transition: transform var(--duration-reveal) var(--ease-premium), box-shadow var(--duration-reveal) var(--ease-premium);
}

.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(28, 31, 14, 0.1);
    border-color: var(--gia-sand-light);
}

.teaser-card .heading-sm {
    margin-bottom: 8px;
}

.teaser-card .body-md {
    flex: 1;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.teaser-card__link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gia-sand);
}

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

.contact--compact {
    padding: clamp(32px, 5vh, 48px) 0 clamp(48px, 6vh, 64px);
}

.contact--compact .contact__box {
    grid-template-columns: 1fr auto;
}

/* —— Inner pages —— */
.page-hero {
    padding: calc(var(--nav-h) + 48px) 0 clamp(40px, 6vh, 56px);
}

.page-hero--light {
    background: linear-gradient(180deg, var(--gia-sand-glow) 0%, var(--gia-white) 70%);
}

.page-hero__inner {
    max-width: 640px;
}

.page-hero__inner .body-lg,
.page-hero__inner .body-md {
    margin-top: 12px;
}

.about-detail {
    padding: clamp(48px, 8vh, 80px) 0;
    background: var(--gia-white);
}

.about-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.about-detail__copy .heading-md {
    margin-bottom: 20px;
}

.about-detail__copy .body-md {
    margin-bottom: 14px;
}

.about-pillars {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-pillars li {
    font-size: 0.9rem;
    color: var(--gia-gray-700);
}

.about-detail__visual {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(28, 31, 14, 0.1);
}

.products--page {
    padding: 0 0 clamp(64px, 10vh, 96px);
}

.products--page .products__showcase {
    margin-top: 0;
}

.events--page {
    padding: 0 0 clamp(64px, 10vh, 96px);
}

.events-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    background: var(--gia-white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--gia-gray-200);
    box-shadow: 0 10px 32px rgba(28, 31, 14, 0.06);
    transition: transform var(--duration-reveal) var(--ease-premium), box-shadow var(--duration-reveal) var(--ease-premium);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(28, 31, 14, 0.1);
}

.event-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gia-gray-100);
}

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

.event-card__body {
    padding: 22px 20px 26px;
}

.event-card__date {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gia-sand);
    margin-bottom: 8px;
}

.events--page .events__trust {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gia-gray-200);
    justify-content: center;
}

@media (max-width: 900px) {
    .about-detail__grid {
        grid-template-columns: 1fr;
    }
    .about-detail__visual {
        order: -1;
    }
    .events-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* —— Site footer —— */
.site-footer {
    padding: 28px 0;
    background: var(--gia-white);
    border-top: 1px solid var(--gia-gray-200);
    color: var(--gia-gray-500);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__brand {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gia-ink);
}

.site-footer__logo {
    height: 90px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.site-footer__copy {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 300;
}

@media (max-width: 600px) {
    .site-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* —— Presentation: platform split —— */
.platform-split {
    padding: clamp(64px, 9vh, 96px) 0;
    background: var(--gia-white);
}

.platform-split__lead {
    max-width: 52em;
    margin-bottom: 40px;
}

.platform-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
}

.platform-split__col {
    padding: clamp(28px, 4vw, 36px);
    background: var(--gia-off-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(28, 31, 14, 0.05);
}

.platform-split__col .heading-sm {
    margin-bottom: 6px;
    color: var(--gia-sand);
}

.platform-split__sub {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-gray-500);
    margin-bottom: 16px;
}

.platform-split__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-split__col li {
    font-size: 0.92rem;
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
    color: var(--gia-gray-700);
}

.platform-split__col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--gia-sand);
    border-radius: 50%;
}

@media (max-width: 800px) {
    .platform-split__grid { grid-template-columns: 1fr; }
}

/* —— Presentation navigation cards —— */
.presentation-nav {
    padding: clamp(48px, 7vh, 72px) 0 clamp(64px, 9vh, 88px);
    background: var(--gia-off-white);
}

.presentation-nav__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.presentation-nav__card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 10px 32px rgba(28, 31, 14, 0.06);
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), border-color 0.4s ease;
}

.presentation-nav__card:hover {
    transform: translateY(-6px);
    border-color: var(--gia-sand-light);
    box-shadow: 0 20px 48px rgba(28, 31, 14, 0.1);
}

.presentation-nav__num {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gia-sand);
    margin-bottom: 12px;
}

.presentation-nav__card .heading-sm { margin-bottom: 10px; }
.presentation-nav__card .body-md { flex: 1; margin-bottom: 16px; font-size: 0.9rem; }

.presentation-nav__cta,
.presentation-nav__role {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gia-sand);
}

@media (max-width: 900px) {
    .presentation-nav__grid { grid-template-columns: 1fr; }
}

/* —— Value chain —— */
.value-chain {
    padding: clamp(56px, 8vh, 88px) 0;
    background: var(--gia-off-white);
}

.value-chain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.value-chain__item {
    padding: 24px 20px;
    background: var(--gia-white);
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.04);
}

.value-chain__code {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gia-sand);
    display: block;
    margin-bottom: 8px;
}

.value-chain__item .heading-sm { margin-bottom: 8px; }
.value-chain__item .body-md { font-size: 0.88rem; }

@media (max-width: 900px) {
    .value-chain__grid { grid-template-columns: 1fr; }
}

/* —— Thesis —— */
.thesis-grid {
    padding: clamp(56px, 8vh, 88px) 0;
    background: var(--gia-white);
}

.thesis-grid__intro {
    max-width: 40em;
    margin-bottom: 32px;
}

.thesis-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.thesis-card {
    padding: 24px;
    background: var(--gia-off-white);
    border-left: 3px solid var(--gia-sand);
    border-radius: 0 4px 4px 0;
}

.thesis-card .heading-sm { margin-bottom: 8px; }
.thesis-card .body-md { font-size: 0.9rem; }

@media (max-width: 700px) {
    .thesis-grid__items { grid-template-columns: 1fr; }
}

/* —— Context —— */
.context-block {
    padding: clamp(56px, 8vh, 88px) 0;
    background: var(--gia-off-white);
}

.context-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
}

.context-block__list {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.context-block__list li {
    font-size: 0.92rem;
    padding-left: 14px;
    position: relative;
    line-height: 1.55;
}

.context-block__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gia-sand);
}

.context-block__note { margin-top: 16px; font-size: 0.9rem; }
.context-block__point { margin-bottom: 20px; }
.context-block__point .heading-sm { margin-bottom: 6px; }

@media (max-width: 800px) {
    .context-block__grid { grid-template-columns: 1fr; }
}

/* —— Platform model A/B —— */
.platform-model {
    padding: clamp(48px, 7vh, 72px) 0;
    background: var(--gia-white);
}

.platform-model__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.platform-model__layer {
    padding: 28px;
    background: linear-gradient(145deg, var(--gia-off-white), var(--gia-white));
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.platform-model__layer .heading-md { margin-bottom: 12px; }

@media (max-width: 700px) {
    .platform-model__grid { grid-template-columns: 1fr; }
}

/* —— Capability groups —— */
.capability-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.capability-group {
    padding: 24px;
    background: var(--gia-off-white);
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
}

.capability-group .heading-sm {
    margin-bottom: 14px;
    color: var(--gia-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gia-gray-200);
}

.capability-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.capability-group li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--gia-gray-700);
}

@media (max-width: 900px) {
    .capability-groups { grid-template-columns: 1fr; }
}

/* —— Capacity table —— */
.capacity-table {
    padding: clamp(48px, 7vh, 72px) 0 clamp(64px, 9vh, 96px);
    background: var(--gia-off-white);
}

.capacity-table__note {
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: var(--gia-gray-500);
}

.capacity-table__wrap {
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
    background: var(--gia-white);
    box-shadow: 0 12px 36px rgba(28, 31, 14, 0.06);
}

.capacity-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.capacity-table th,
.capacity-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gia-gray-200);
}

.capacity-table th {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gia-gray-500);
    background: var(--gia-off-white);
}

.capacity-table tr:last-child td { border-bottom: none; }

/* —— Credentials —— */
.credentials-block {
    padding: clamp(56px, 8vh, 88px) 0;
    background: var(--gia-white);
}

.credentials-block__intro {
    max-width: 48em;
    margin-bottom: 32px;
}

.credentials-block__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.credential-card {
    padding: 22px 18px;
    background: var(--gia-off-white);
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
}

.credential-card__mark {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gia-sand);
    color: var(--gia-white);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.credential-card .heading-sm { margin-bottom: 6px; font-size: 0.95rem; }
.credential-card .body-md { font-size: 0.82rem; }

.credentials-block__badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .credentials-block__grid { grid-template-columns: repeat(2, 1fr); }
}

/* —— Moats —— */
.moats-grid {
    padding: clamp(56px, 8vh, 88px) 0;
    background: var(--gia-off-white);
}

.moats-grid__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.moat-card {
    padding: 22px;
    background: var(--gia-white);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.05);
}

.moat-card .heading-sm { margin-bottom: 8px; color: var(--gia-sand); }
.moat-card .body-md { font-size: 0.88rem; }

@media (max-width: 900px) {
    .moats-grid__items { grid-template-columns: 1fr; }
}

/* —— Partnership models —— */
.partnership-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partnership-col {
    padding: 28px 24px;
    background: var(--gia-off-white);
    border-top: 3px solid var(--gia-sand);
    border-radius: 0 4px 4px 4px;
    box-shadow: 0 10px 32px rgba(28, 31, 14, 0.05);
}

.partnership-col .heading-sm { margin-bottom: 16px; }

.partnership-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partnership-col li {
    font-size: 0.88rem;
    line-height: 1.5;
    padding-left: 12px;
    position: relative;
}

.partnership-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    background: var(--gia-sand);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .partnership-models { grid-template-columns: 1fr; }
}

/* —— Engagement steps —— */
.engagement-steps {
    padding: clamp(56px, 8vh, 88px) 0 clamp(40px, 6vh, 56px);
    background: linear-gradient(180deg, var(--gia-sand-glow) 0%, var(--gia-white) 100%);
}

.engagement-steps__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.engagement-step {
    padding: 20px 16px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.05);
}

.engagement-step__num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gia-sand);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.engagement-step .heading-sm { margin-bottom: 8px; font-size: 0.95rem; }
.engagement-step .body-md { font-size: 0.82rem; }

@media (max-width: 1000px) {
    .engagement-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .engagement-steps__grid { grid-template-columns: 1fr; }
}

/* —— Leadership —— */
.leadership-block {
    padding: clamp(40px, 6vh, 56px) 0;
    background: var(--gia-off-white);
}

.leadership-block__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 32px;
    background: var(--gia-white);
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
    box-shadow: 0 12px 36px rgba(28, 31, 14, 0.06);
}

.leadership-block__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 700px) {
    .leadership-block__inner { grid-template-columns: 1fr; }
}

/* —— Why now —— */
.why-now {
    padding: clamp(48px, 7vh, 64px) 0 clamp(64px, 9vh, 88px);
    background: linear-gradient(165deg, var(--gia-sand-warm) 0%, var(--gia-bg) 55%);
    color: var(--gia-gray-700);
}

.why-now .label { color: var(--gia-sand); }
.why-now .heading-md { color: var(--gia-ink); margin-bottom: 12px; }
.why-now .body-md { color: var(--gia-gray-700); max-width: 42em; }

.why-now__inner { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* Cinematic quote strong */
.about-cinematic__quote strong {
    color: var(--gia-sand-lighter);
    font-weight: 600;
}

/* —— Single-page presentation —— */
.gia-presentation {
    position: relative;
    z-index: 1;
}

.hero--presentation {
    background: var(--gia-page-gradient);
}

.hero__accent {
    color: var(--gia-sand);
}

.about-cinematic--presentation .about-cinematic__olive {
    background: linear-gradient(
        180deg,
        rgba(109, 117, 96, 0.28) 0%,
        rgba(109, 117, 96, 0.48) 50%,
        rgba(82, 88, 72, 0.65) 100%
    );
}

.about-cinematic__tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.15rem);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 16px;
    text-align: center;
}

.platform-strip {
    padding: clamp(48px, 7vh, 72px) 0;
    background: var(--gia-off-white);
    border-top: 1px solid var(--gia-gray-200);
}

.platform-strip__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

.platform-split__grid--inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    max-width: var(--content-max);
    margin: 0 auto clamp(28px, 4vw, 40px);
    padding: 0 clamp(20px, 4vw, 40px);
}

.platform-split__grid--inline ul {
    list-style: none;
    margin-top: 12px;
}

.platform-split__grid--inline li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gia-gray-700);
}

.platform-split__grid--inline li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gia-sand);
}

.value-chain--compact .value-chain__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.value-chain__pill {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 14px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    color: var(--gia-gray-700);
    box-shadow: 0 4px 16px rgba(28, 31, 14, 0.04);
}

.value-chain__pill span {
    display: block;
    font-size: 0.65rem;
    color: var(--gia-sand);
    margin-bottom: 2px;
}

.products--presentation {
    background: var(--gia-white);
}

.products__showcase--large .product-card__visual {
    aspect-ratio: 3 / 4;
}

.products__showcase--large .product-card__visual img {
    object-fit: cover;
    object-position: center 35%;
}

.capability-groups--inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: clamp(32px, 5vw, 48px);
    text-align: center;
}

.capability-groups--inline .capability-group {
    padding: 20px 16px;
    background: var(--gia-gray-100);
    border-radius: 4px;
}

.capability-groups--inline p {
    font-size: 0.82rem;
    color: var(--gia-gray-500);
    margin-top: 6px;
}

.partnership-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    margin-bottom: clamp(32px, 5vw, 48px);
    padding: clamp(20px, 3vw, 28px);
    background: var(--gia-gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.partnership-feature__media {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 31, 14, 0.1);
}

.partnership-feature__media img {
    width: 100%;
    height: auto;
    display: block;
}

.events-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(32px, 5vw, 40px);
}

.event-card--photo {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 12px 36px rgba(28, 31, 14, 0.1);
}

.event-card--photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.event-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(28, 31, 14, 0.85) 0%,
        rgba(28, 31, 14, 0.35) 55%,
        transparent 100%
    );
    color: var(--gia-white);
}

.event-card__overlay .body-md {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    margin-top: 8px;
}

.event-card__date {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gia-sand-lighter);
    margin-bottom: 6px;
}

.credentials-block--inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.credential-card--mini {
    padding: 16px 14px;
    background: var(--gia-off-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    text-align: center;
}

.credential-card--mini .heading-sm {
    font-size: 0.78rem;
}

.credential-card__mark {
    color: var(--gia-sand);
    font-size: 1rem;
    margin-bottom: 6px;
    display: block;
}

.contact--presentation {
    padding: clamp(56px, 8vh, 88px) 0 clamp(72px, 10vh, 96px);
    background: linear-gradient(165deg, var(--gia-sand-warm) 0%, var(--gia-white) 55%);
}

.contact__box--presentation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 4vw, 40px);
    background: var(--gia-white);
    color: var(--gia-gray-700);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(28, 31, 14, 0.06);
    margin-bottom: 28px;
}

.contact__box--presentation .contact__link {
    color: var(--gia-sand-deep);
    font-weight: 500;
}

.contact__box--presentation .contact__link:hover {
    color: var(--gia-ink);
}

.btn--light {
    background: var(--gia-sand-lighter);
    color: var(--gia-ink);
}

.engagement-steps--compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.engagement-step--mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    font-size: 0.8rem;
}

.engagement-step--mini .engagement-step__num {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gia-sand);
}

.section-head--light .heading-lg,
.section-head--light .label {
    color: var(--gia-dark);
}

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

@media (max-width: 900px) {
    .platform-split__grid--inline,
    .partnership-feature,
    .events-showcase {
        grid-template-columns: 1fr;
    }
    .capability-groups--inline {
        grid-template-columns: 1fr;
    }
    .credentials-block--inline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .credentials-block--inline {
        grid-template-columns: 1fr;
    }
}

/* —— Hero with brand imagery (light, premium) —— */
.hero--brand {
    position: relative;
    overflow: hidden;
}

.hero--brand .hero__visual {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom right,
            rgba(156, 142, 117, 0.88) 0%,
            rgba(215, 190, 153, 0.72) 42%,
            rgba(255, 255, 255, 0.94) 78%
        ),
        var(--hero-bg, none) center 30% / cover no-repeat;
    opacity: 1;
    pointer-events: none;
}

.hero--home {
    min-height: 100vh;
    min-height: 100svh;
}

/* —— Home: cinematic copy (minimal text) —— */
/* Home cinematic — olive overlay (brand), video-first, compact copy */
.about-cinematic--home .about-cinematic__olive {
    background: linear-gradient(
        180deg,
        rgba(109, 117, 96, 0.42) 0%,
        rgba(109, 117, 96, 0.58) 40%,
        rgba(82, 88, 72, 0.78) 100%
    );
}

.about-cinematic--home .about-cinematic__camo {
    opacity: 0.09;
}

.about-cinematic--home .about-cinematic__content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: clamp(80px, 12vh, 112px);
}

.about-cinematic--home .about-cinematic__quote--home {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    max-width: 16em;
    margin: 0 auto 10px;
}

.about-cinematic--home .about-cinematic__kicker {
    margin-bottom: 20px;
}

.about-cinematic--home .about-cinematic__stats {
    margin: 0 auto;
    justify-items: center;
    width: 100%;
    align-items: stretch;
}

.about-cinematic--home .stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 112px;
    height: 100%;
    padding: 18px 12px;
    box-sizing: border-box;
}

.about-cinematic--home .stat-pill__value {
    min-height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.about-cinematic--home .stat-pill__label {
    min-height: 2.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .about-cinematic--home .about-cinematic__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-cinematic--home .stat-pill {
        min-height: 104px;
    }
}

.about-cinematic--home .about-cinematic__cta {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 8px;
}

.about-cinematic__cta {
    text-align: center;
    margin-top: 20px;
}

/* —— Home: slim explore strip (no paragraphs) —— */
.home-explore {
    padding: 20px 0 28px;
    background: var(--gia-white);
    border-top: 1px solid var(--gia-gray-200);
}

.home-explore__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.home-explore__link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    background: var(--gia-off-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    transition: border-color var(--duration-fast) var(--ease-premium), box-shadow var(--duration-fast) var(--ease-premium);
}

.home-explore__link:hover {
    border-color: var(--gia-sand-light);
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.06);
}

.home-explore__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--gia-dark);
}

.home-explore__hint {
    font-size: 0.72rem;
    color: var(--gia-gray-500);
    line-height: 1.35;
}

.home-explore__arrow {
    display: none;
}

@media (min-width: 901px) {
    .home-explore__link {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .home-explore__arrow {
        display: block;
        font-family: var(--font-heading);
        color: var(--gia-sand);
        font-size: 0.9rem;
    }
}

/* —— Home: deck zone nav (our recommendation) —— */
.home-zone-nav {
    position: fixed;
    right: clamp(12px, 2vw, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.home-zone-nav__item {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    opacity: 0.4;
    transition: opacity var(--duration-fast) var(--ease-premium);
}

.home-zone-nav__item:hover,
.home-zone-nav__item.is-active {
    opacity: 1;
}

.home-zone-nav__num {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gia-sand);
}

.home-zone-nav__label {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-gray-700);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

body.home-in-cinematic .home-zone-nav__label {
    color: rgba(255, 255, 255, 0.75);
}

body.home-in-cinematic .home-zone-nav__num {
    color: var(--gia-sand-lighter);
}

@media (max-width: 900px) {
    .home-zone-nav {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
    }
    .home-zone-nav__label {
        writing-mode: horizontal-tb;
        transform: none;
    }
}

@media (max-width: 640px) {
    .home-explore__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .home-explore__inner {
        grid-template-columns: 1fr;
    }
}

/* —— Home: hero highlights (centered, aligned with hero) —— */
.hero__points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 12px;
    max-width: 680px;
    margin: 0 auto 28px;
    padding: 0;
}

.hero__points li {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: var(--gia-gray-700);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    box-shadow: 0 4px 16px rgba(28, 31, 14, 0.04);
}

.hero__points li::before {
    display: none;
}

.about-cinematic__kicker {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    letter-spacing: 0.06em;
    color: var(--gia-sand-lighter);
    margin-bottom: 8px;
}

.about-cinematic__tagline--sub {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.82;
}

/* —— Home: strategic snapshot (compact) —— */
.home-strategic {
    padding: clamp(40px, 6vh, 56px) 0 clamp(44px, 6vh, 56px);
    background: var(--gia-off-white);
    border-top: 1px solid var(--gia-gray-200);
}

.home-strategic__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(24px, 4vw, 32px);
}

.home-strategic__lead {
    margin-top: 12px;
    color: var(--gia-gray-500);
}

.home-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.home-pillars--compact {
    gap: 12px;
    margin-bottom: 20px;
}

.home-pillars--compact .home-pillar {
    padding: 16px 14px;
}

.home-platform-essence {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
    margin-bottom: 20px;
    padding: 20px 24px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.home-platform-essence__col .heading-sm {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.home-platform-essence__col ul {
    list-style: none;
}

.home-platform-essence__col li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--gia-gray-700);
}

.home-platform-essence__col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    background: var(--gia-sand);
    border-radius: 50%;
}

.home-vc-strip--compact {
    margin-bottom: 20px;
}

.home-vc-strip--compact .label {
    margin-bottom: 8px;
}

.home-thesis-grid--duo {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.home-thesis-grid--duo .home-thesis {
    padding: 16px 18px;
}

.home-thesis-grid--duo .home-thesis p {
    font-size: 0.78rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-partner-glance--compact {
    margin-bottom: 0;
    padding: 16px;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.home-partner-glance__creds {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-gray-500);
    margin: 8px 0 10px;
}

.home-pillar {
    padding: 20px 18px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.04);
}

.home-pillar .heading-sm {
    margin-bottom: 8px;
    color: var(--gia-sand);
}

.home-pillar p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--gia-gray-700);
}

.home-capability-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: clamp(28px, 4vw, 40px);
    padding: 24px;
    background: var(--gia-white);
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
}

.home-capability-row__item .heading-sm {
    margin-bottom: 6px;
}

.home-capability-row__item p {
    font-size: 0.8rem;
    color: var(--gia-gray-500);
    line-height: 1.5;
}

.home-platform-snapshot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: clamp(28px, 4vw, 40px);
}

.home-platform-snapshot__col .heading-sm {
    margin-bottom: 12px;
}

.home-platform-snapshot__col ul {
    list-style: none;
}

.home-platform-snapshot__col li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--gia-gray-700);
}

.home-platform-snapshot__col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    background: var(--gia-sand);
    border-radius: 50%;
}

.home-vc-strip {
    margin-bottom: clamp(28px, 4vw, 40px);
    text-align: center;
}

.home-vc-strip .label {
    margin-bottom: 12px;
}

.home-vc-strip__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.home-vc-strip__pill {
    font-size: 0.72rem;
    padding: 10px 14px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    color: var(--gia-gray-700);
}

.home-vc-strip__pill strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--gia-sand);
    margin-bottom: 2px;
}

.home-thesis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.home-thesis {
    padding: 20px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.home-thesis .heading-sm {
    margin-bottom: 8px;
}

.home-thesis p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--gia-gray-500);
}

.home-capacity-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: clamp(28px, 4vw, 40px);
    text-align: center;
}

.home-capacity-strip__item {
    padding: 20px 16px;
    background: linear-gradient(165deg, var(--gia-sand-warm), var(--gia-white));
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.home-capacity-strip__value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--gia-sand);
    margin-bottom: 6px;
}

.home-capacity-strip__label {
    font-size: 0.75rem;
    color: var(--gia-gray-700);
    line-height: 1.4;
}

.home-partner-glance {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: clamp(24px, 4vw, 32px);
    padding: 20px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.home-partner-glance__media {
    border-radius: 4px;
    overflow: hidden;
}

.home-partner-glance__media img {
    width: 100%;
    height: auto;
    display: block;
}

.home-partner-glance__copy .body-md {
    font-size: 0.88rem;
    margin: 8px 0 12px;
}

.home-partner-glance__link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gia-sand);
}

.home-credentials-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.home-credentials-row__item {
    display: flex;
    gap: 10px;
    padding: 14px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    font-size: 0.78rem;
}

.home-credentials-row__mark {
    color: var(--gia-sand);
    flex-shrink: 0;
}

.home-credentials-row__item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    margin-bottom: 2px;
    color: var(--gia-dark);
}

.home-credentials-row__item span {
    color: var(--gia-gray-500);
    font-size: 0.68rem;
}

@media (max-width: 1024px) {
    .home-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-credentials-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-capability-row,
    .home-platform-snapshot,
    .home-platform-essence,
    .home-capacity-strip,
    .home-thesis-grid,
    .home-thesis-grid--duo {
        grid-template-columns: 1fr;
    }
    .home-partner-glance,
    .home-partner-glance--compact {
        grid-template-columns: 1fr;
    }
}

.about-cinematic--video .about-cinematic__video {
    display: block;
}

/* Page heroes with photography */
.page-hero--visual {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nav-h) + 48px) 0 48px;
    background: var(--gia-gray-100);
    overflow: hidden;
}

.page-hero--visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            165deg,
            rgba(232, 220, 200, 0.75) 0%,
            rgba(252, 250, 247, 0.85) 45%,
            rgba(255, 255, 255, 0.95) 100%
        ),
        var(--page-hero-bg, none) center / cover no-repeat;
    filter: saturate(0.92);
}

.page-hero--visual .page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

/* Visual gallery — premium mosaic */
.visual-gallery {
    padding: clamp(48px, 7vh, 72px) 0;
    background: var(--gia-white);
}

.visual-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}

.visual-gallery__frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--gia-gray-100);
    box-shadow:
        0 4px 16px rgba(28, 31, 14, 0.06),
        0 20px 48px rgba(28, 31, 14, 0.08);
}

.visual-gallery__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--ease-premium);
}

.visual-gallery__item:hover .visual-gallery__frame img {
    transform: scale(1.04);
}

.visual-gallery__glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(215, 190, 153, 0.35), transparent);
    pointer-events: none;
}

.visual-gallery__caption {
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--gia-gray-500);
    line-height: 1.4;
}

.events-showcase-block {
    padding: clamp(32px, 5vh, 48px) 0;
}

.events-showcase--rich {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
}

@media (max-width: 900px) {
    .visual-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .visual-gallery__grid,
    .events-showcase--rich {
        grid-template-columns: 1fr;
    }
}

/* —— About page —— */
.gia-main--about {
    background: transparent;
}

.gia-main--about .platform-split,
.gia-main--about .value-chain,
.gia-main--about .context-block,
.gia-main--about .visual-gallery,
.gia-main--about .credentials-block {
    padding-top: clamp(40px, 6vh, 56px);
    padding-bottom: clamp(40px, 6vh, 56px);
}

.value-chain--compact .value-chain__grid--pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.value-chain--compact .value-chain__pill {
    font-size: 0.72rem;
    padding: 10px 14px;
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    color: var(--gia-gray-700);
}

.value-chain--compact .value-chain__pill strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--gia-sand);
    margin-bottom: 2px;
}

.credentials-block--compact .credentials-block__grid {
    margin-top: 16px;
}

.about-moats-compact {
    padding: clamp(32px, 5vh, 48px) 0;
    background: var(--gia-white);
    border-top: 1px solid var(--gia-gray-200);
}

.about-moats-compact__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-top: 16px;
}

.about-moats-compact__list li {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--gia-gray-700);
}

.about-moats-compact__list strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--gia-ink);
    margin-bottom: 6px;
}

.gia-main--about .visual-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .about-moats-compact__list {
        grid-template-columns: 1fr;
    }
}

.page-hero--about .page-hero__inner {
    max-width: 720px;
}

.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
    max-width: 640px;
}

.about-hero__stat {
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.05);
}

.about-hero__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gia-sand);
    line-height: 1;
    margin-bottom: 6px;
}

.about-hero__stat-value .accent {
    color: var(--gia-sand);
}

.about-hero__stat-label {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-gray-500);
    line-height: 1.35;
}

.about-brand-pillars {
    padding: clamp(48px, 7vh, 72px) 0;
    background: var(--gia-white);
    border-top: 1px solid var(--gia-gray-200);
}

.about-brand-pillars__comm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.about-brand-pillar {
    padding: 22px 20px;
    background: var(--gia-bg);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    border-top: 3px solid var(--gia-sand);
}

.about-brand-pillar .heading-sm {
    color: var(--gia-ink);
    margin-bottom: 8px;
}

.about-brand-pillar p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--gia-gray-700);
}

.about-brand-pillars__essence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-essence-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--gia-sand-warm) 0%, var(--gia-white) 100%);
    border-radius: 4px;
    border: 1px solid var(--gia-gray-200);
}

.about-essence-item__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-sand);
}

.about-essence-item__text {
    font-size: 0.78rem;
    color: var(--gia-gray-700);
    line-height: 1.45;
}

.about-positioning {
    padding: clamp(48px, 7vh, 72px) 0;
    background: var(--gia-off-white);
}

.about-positioning__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.about-positioning__visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(28, 31, 14, 0.1);
}

.about-positioning__visual img {
    width: 100%;
    height: auto;
    display: block;
}

.about-positioning__visual-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(215, 190, 153, 0.25), transparent 50%);
    pointer-events: none;
}

.about-positioning__quote {
    margin: 12px 0 16px;
    color: var(--gia-ink);
    max-width: none;
}

.about-positioning__quote strong {
    font-weight: 500;
    color: var(--gia-sand-deep);
}

.about-positioning__not {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-positioning__not li {
    position: relative;
    padding-left: 16px;
    font-size: 0.85rem;
    color: var(--gia-gray-500);
}

.about-positioning__not li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gia-sand);
}

.platform-model {
    padding: clamp(48px, 7vh, 64px) 0;
    background: var(--gia-white);
    border-top: 1px solid var(--gia-gray-200);
}

.platform-model__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.platform-model__layer {
    padding: 28px 24px;
    background: var(--gia-bg);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.platform-model__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gia-sand);
    margin-bottom: 10px;
}

.platform-model__layer .heading-sm {
    margin-bottom: 10px;
}

.platform-model__layer .body-md {
    font-size: 0.88rem;
}

.about-cta {
    padding: clamp(40px, 6vh, 56px) 0 clamp(56px, 8vh, 72px);
    background: linear-gradient(165deg, var(--gia-sand-warm) 0%, var(--gia-bg) 60%);
    border-top: 1px solid var(--gia-gray-200);
}

.about-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 4vw, 36px);
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(28, 31, 14, 0.06);
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-head .heading-md {
    margin-top: 4px;
    margin-bottom: 8px;
}

.section-head .body-md {
    max-width: 40em;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .about-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-brand-pillars__comm,
    .about-brand-pillars__essence,
    .about-positioning__grid,
    .platform-model__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-hero__stats {
        grid-template-columns: 1fr;
    }
}

/* —— About: video hero — readability scrim —— */
.about-cinematic--about-page .about-cinematic__stage {
    min-height: 85vh;
    min-height: 85svh;
}

.about-cinematic--about-page .about-cinematic__olive {
    background: linear-gradient(
        180deg,
        rgba(82, 88, 72, 0.35) 0%,
        rgba(82, 88, 72, 0.55) 50%,
        rgba(52, 56, 46, 0.72) 100%
    );
}

.about-page-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(28, 31, 14, 0.82) 0%,
        rgba(28, 31, 14, 0.5) 38%,
        rgba(28, 31, 14, 0.2) 68%,
        transparent 100%
    );
    pointer-events: none;
}

.about-cinematic--about-page .about-page-hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding-top: clamp(80px, 14vh, 120px);
    padding-bottom: clamp(64px, 10vh, 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 85vh;
    min-height: 85svh;
}

.about-cinematic--about-page .about-page-hero__content .label {
    color: var(--gia-sand-lighter);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.about-page-hero__title {
    color: var(--gia-white);
    max-width: 14em;
    margin: 0 auto 14px;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.about-page-hero__lead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1.02rem, 1.9vw, 1.15rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 30em;
    margin: 0 auto;
    line-height: 1.65;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

/* Transition: solid light band between video and image section */
.about-bridge {
    position: relative;
    z-index: 2;
    background: var(--gia-bg);
    padding: clamp(48px, 7vh, 72px) 0 clamp(40px, 6vh, 56px);
}

.about-bridge__fade {
    display: block;
    height: 1px;
    margin: 0 auto;
    max-width: var(--content-max);
    box-shadow: 0 -32px 48px 24px var(--gia-bg);
}

/* —— About: light overlay band (image starts below bridge) —— */
.about-band-light {
    position: relative;
    margin-top: 0;
    padding: clamp(48px, 7vh, 72px) 0 clamp(56px, 8vh, 80px);
    background-color: var(--gia-bg);
    background-image: var(--about-band-bg);
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
}

.about-band-light__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--gia-bg) 0%,
        rgba(249, 249, 249, 0.97) 12%,
        rgba(240, 230, 214, 0.9) 40%,
        rgba(232, 220, 200, 0.88) 100%
    );
    pointer-events: none;
}

.about-band-light__inner {
    position: relative;
    z-index: 1;
}

.about-band-light__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

.about-band-light__quote {
    margin-top: 8px;
    color: var(--gia-ink);
    line-height: 1.35;
}

.about-band-light__quote strong {
    color: var(--gia-sand-deep);
    font-weight: 500;
}

.about-band-light__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.about-band-light__pillar {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(28, 31, 14, 0.06);
    border-top: 3px solid var(--gia-sand);
}

.about-band-light__pillar .heading-sm {
    margin-bottom: 6px;
}

.about-band-light__pillar p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--gia-gray-700);
}

.about-band-light__platform {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.about-band-light__col {
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.about-band-light__col .heading-sm {
    margin-bottom: 10px;
    color: var(--gia-sand-deep);
}

.about-band-light__col ul {
    list-style: none;
}

.about-band-light__col li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--gia-gray-700);
}

.about-band-light__col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gia-sand);
}

.about-band-light__layers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.about-band-light__layer {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
}

.about-band-light__layer-tag {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gia-sand);
    display: block;
    margin-bottom: 6px;
}

.about-band-light__layer p {
    font-size: 0.82rem;
    color: var(--gia-gray-700);
    line-height: 1.5;
}

.about-band-light__chain .label {
    text-align: center;
    margin-bottom: 10px;
}

.about-band-light__chain-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.about-band-light__chain-pills span {
    font-size: 0.72rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gia-gray-200);
    border-radius: 3px;
    color: var(--gia-gray-700);
}

.about-band-light__chain-pills strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    color: var(--gia-sand);
    margin-bottom: 2px;
}

.context-block--compact {
    padding: clamp(40px, 6vh, 56px) 0;
}

.context-block--compact .context-block__point .body-md {
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .about-band-light__pillars,
    .about-band-light__platform,
    .about-band-light__layers {
        grid-template-columns: 1fr;
    }
}

/* —— Products page —— */
.gia-main--products {
    background: transparent;
}

/* Products — video hero (full cinematic; content must not double viewport height) */
.about-cinematic--products-page {
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
}

.about-cinematic--products-page .about-cinematic__stage {
    min-height: 82vh;
    min-height: 82svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
}

.about-cinematic--products-page .about-cinematic__olive {
    background: linear-gradient(
        180deg,
        rgba(82, 88, 72, 0.32) 0%,
        rgba(82, 88, 72, 0.52) 50%,
        rgba(52, 56, 46, 0.68) 100%
    );
}

.products-video-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(28, 31, 14, 0.78) 0%,
        rgba(28, 31, 14, 0.45) 40%,
        rgba(28, 31, 14, 0.15) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.about-cinematic--products-page .products-video-hero__content {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 20px) clamp(20px, 4vw, 40px) clamp(36px, 6vh, 56px);
}

.about-cinematic--products-page .products-video-hero__content .label {
    color: var(--gia-sand-lighter);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.products-video-hero__title {
    color: var(--gia-white);
    max-width: 20em;
    margin: 6px auto 10px;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.products-video-hero__intro {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-width: 34em;
    margin: 0 auto;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.about-cinematic--products-page.about-cinematic--video .about-cinematic__fallback {
    opacity: 0;
}

.products-page-hero {
    position: relative;
    padding: calc(var(--nav-h) + clamp(28px, 5vh, 44px)) 0 clamp(24px, 4vh, 36px);
    background: linear-gradient(
        165deg,
        var(--gia-sand-warm) 0%,
        rgba(249, 249, 249, 0.6) 55%,
        var(--gia-bg) 100%
    );
    overflow: hidden;
}

.products-page-hero__camo {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
        -24deg,
        transparent,
        transparent 8px,
        rgba(28, 31, 14, 0.08) 8px,
        rgba(28, 31, 14, 0.08) 9px
    );
    pointer-events: none;
}

.products-page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 42em;
    text-align: center;
    margin: 0 auto;
}

.products-page-hero__title {
    margin: 6px 0 10px;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.products-page-hero__intro {
    color: var(--gia-gray-700);
    max-width: 34em;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Flagship spotlight — sits on page sand → white gradient */
.products-spotlight {
    position: relative;
    z-index: 2;
    padding: clamp(48px, 7vh, 72px) 0 clamp(48px, 7vh, 72px);
    background: transparent;
}

.products-spotlight__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

.products-spotlight__visual {
    position: relative;
}

.products-spotlight__frame {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 4px;
    overflow: hidden;
    background: var(--gia-gray-100);
    box-shadow:
        0 4px 20px rgba(28, 31, 14, 0.08),
        0 32px 72px rgba(28, 31, 14, 0.14);
}

.products-spotlight__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 2s var(--ease-premium);
}

.products-spotlight__visual:hover .products-spotlight__frame img {
    transform: scale(1.03);
}

.products-spotlight__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(215, 190, 153, 0.55) 0%,
        rgba(156, 142, 117, 0.12) 45%,
        transparent 70%
    );
    pointer-events: none;
}

.products-spotlight__badge {
    position: absolute;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(28, 31, 14, 0.12);
    text-align: center;
}

.products-spotlight__badge-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--gia-sand);
}

.products-spotlight__badge-label {
    display: block;
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gia-gray-500);
}

.products-spotlight__caliber {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    line-height: 1;
    color: var(--gia-sand);
    margin: 8px 0 6px;
}

.products-spotlight__caliber small {
    font-size: 0.38em;
    vertical-align: super;
}

.products-spotlight__lead {
    margin-bottom: 20px;
    color: var(--gia-gray-700);
}

.products-spotlight__highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.products-spotlight__highlights li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--gia-gray-700);
}

.products-spotlight__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gia-sand);
}

/* Premium product grid (2-up, larger) */
.products--page-premium {
    padding: 0 0 clamp(40px, 6vh, 56px);
}

.products-range-head {
    text-align: center;
    max-width: 36em;
    margin: 0 auto clamp(32px, 5vw, 48px);
}

.products-range-head .heading-md {
    margin-top: 6px;
}

.products__showcase--premium {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3.5vw, 36px);
}

.products__showcase--premium.products__showcase--trio {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
}

.products__showcase--trio .product-card__visual {
    aspect-ratio: 4 / 5;
}

.products__showcase--trio .product-card__caliber {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.products__showcase--trio .product-card__meta {
    padding: 18px 16px 20px;
}

.products__showcase--premium .product-card {
    box-shadow:
        0 4px 16px rgba(28, 31, 14, 0.06),
        0 24px 56px rgba(28, 31, 14, 0.1);
}

.products__showcase--premium .product-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 12px 32px rgba(28, 31, 14, 0.1),
        0 36px 72px rgba(28, 31, 14, 0.14);
}

.products__showcase--premium .product-card__visual {
    aspect-ratio: 5 / 4;
}

.products__showcase--premium .product-card__glow {
    height: 62%;
    background: linear-gradient(
        to top,
        rgba(215, 190, 153, 0.5) 0%,
        rgba(156, 142, 117, 0.18) 50%,
        transparent 100%
    );
}

.products__showcase--premium .product-card__caliber {
    font-size: clamp(2.25rem, 4vw, 2.75rem);
}

.products__showcase--premium .product-card__meta {
    padding: 24px 22px 28px;
}

.products__showcase--premium .product-card__desc {
    -webkit-line-clamp: unset;
    font-size: 0.9rem;
    color: var(--gia-gray-600);
}

/* Trust badges under products */
.products-trust {
    padding: clamp(32px, 5vh, 48px) 0;
    border-top: 1px solid rgba(156, 142, 117, 0.2);
    border-bottom: 1px solid rgba(156, 142, 117, 0.2);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
}

.products-trust__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
}

.products-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    min-width: 72px;
}

.products-trust__item img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(28, 31, 14, 0.06));
}

.products-trust__item span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gia-gray-600);
    line-height: 1.15;
}

.products-capabilities {
    padding: clamp(48px, 7vh, 72px) 0;
}

.products-capabilities .section-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.capability-groups--compact {
    margin-bottom: 0;
    gap: clamp(16px, 2.5vw, 24px);
}

.capability-groups--compact .capability-group {
    padding: clamp(20px, 3vw, 28px);
    background: var(--gia-white);
    box-shadow: 0 8px 28px rgba(28, 31, 14, 0.05);
}

.gia-main--products .visual-gallery {
    padding-top: 0;
    background: transparent;
}

.gia-main--products .visual-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
}

.gia-main--products .capacity-table {
    background: transparent;
}

.gia-main--products .products-capabilities {
    background: transparent;
}

.gia-main--products .products--page-premium {
    background: transparent;
}

.products-cta {
    padding: clamp(40px, 6vh, 56px) 0 clamp(64px, 9vh, 88px);
    background: transparent;
}

.products-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 4vw, 40px);
    background: var(--gia-white);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(28, 31, 14, 0.08);
}

.products-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1024px) {
    .products-spotlight__grid {
        grid-template-columns: 1fr;
    }

    .products-spotlight__frame {
        aspect-ratio: 16 / 10;
    }

    .gia-main--products .visual-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .products__showcase--premium.products__showcase--trio {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* —— Events page —— */
.gia-main--events {
    background: transparent;
}

.events-page-hero {
    position: relative;
    padding: calc(var(--nav-h) + clamp(32px, 6vh, 52px)) 0 clamp(28px, 4vh, 40px);
    background: transparent;
    overflow: hidden;
}

.events-page-hero__camo {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: repeating-linear-gradient(
        -24deg,
        transparent,
        transparent 8px,
        rgba(28, 31, 14, 0.06) 8px,
        rgba(28, 31, 14, 0.06) 9px
    );
    pointer-events: none;
}

.events-page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 40em;
    margin: 0 auto;
    text-align: center;
}

.events-page-hero__title {
    margin: 6px 0 10px;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.25;
    color: var(--gia-ink);
}

.events-page-hero__intro {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gia-gray-700);
    max-width: 36em;
    margin: 0 auto;
}

.gia-main--events .events-showcase-block {
    padding: clamp(8px, 2vh, 16px) 0 clamp(48px, 7vh, 72px);
    background: transparent;
}

.events-showcase-head {
    text-align: center;
    max-width: 36em;
    margin: 0 auto clamp(32px, 5vw, 48px);
}

.events-showcase-head .heading-md {
    margin-top: 6px;
}

.gia-main--events .events-showcase--rich {
    gap: clamp(20px, 3vw, 28px);
}

.gia-main--events .event-card--photo {
    min-height: clamp(260px, 32vw, 340px);
    box-shadow: 0 16px 48px rgba(28, 31, 14, 0.12);
    transition: transform var(--duration-reveal) var(--ease-premium), box-shadow var(--duration-reveal) var(--ease-premium);
}

.gia-main--events .event-card--photo:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(28, 31, 14, 0.14);
}

/* Events — “In the field” showcase: readable overlay + normal type scale */
body.gia-page-events .gia-main--events .events-showcase-block .events-showcase-head .label {
    font-size: 0.875rem;
}

body.gia-page-events .gia-main--events .events-showcase-block .events-showcase-head .heading-md {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

body.gia-page-events .gia-main--events .events-showcase-block .event-card--photo .event-card__overlay {
    padding: clamp(20px, 3vw, 28px);
    background: linear-gradient(
        to top,
        rgba(28, 31, 14, 0.96) 0%,
        rgba(28, 31, 14, 0.82) 32%,
        rgba(28, 31, 14, 0.55) 58%,
        rgba(28, 31, 14, 0.22) 78%,
        transparent 100%
    );
}

body.gia-page-events .gia-main--events .events-showcase-block .event-card__overlay .event-card__date {
    font-size: 0.8125rem;
    color: var(--gia-sand-lighter);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

body.gia-page-events .gia-main--events .events-showcase-block .event-card__overlay .heading-sm {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gia-white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

body.gia-page-events .gia-main--events .events-showcase-block .event-card__overlay .body-md {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
    max-width: 44ch;
}

.events-partnerships {
    padding: clamp(40px, 6vh, 64px) 0;
    background: transparent;
}

.events-partnerships .section-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.gia-main--events .partnership-col {
    background: rgba(255, 255, 255, 0.88);
    border-top-color: var(--gia-sand);
    box-shadow: 0 12px 36px rgba(28, 31, 14, 0.06);
}

.gia-main--events .engagement-steps--embedded {
    padding: clamp(40px, 6vh, 56px) 0;
    background: transparent;
}

.gia-main--events .engagement-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gia-gray-200);
    box-shadow: 0 8px 24px rgba(28, 31, 14, 0.05);
}

.gia-main--events .credentials-block {
    padding: clamp(40px, 6vh, 56px) 0;
    background: transparent;
}

.gia-main--events .credentials-block--compact .credential-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gia-gray-200);
}

.events-cta {
    padding: clamp(32px, 5vh, 48px) 0 clamp(64px, 9vh, 88px);
    background: transparent;
}

.events-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gia-gray-200);
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(28, 31, 14, 0.08);
}

.events-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 640px) {
    .events-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .products__showcase--premium:not(.products__showcase--trio) {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .products-trust__inner {
        gap: 20px;
    }

    .products-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Home — hero text readable on sand background */
body.gia-defense-home .gia-main--home .hero__label,
body.gia-defense-home .gia-main--home .hero__brand-line {
    color: var(--gia-ink);
}

body.gia-defense-home .gia-main--home .hero__title {
    color: var(--gia-ink);
    text-shadow: 0 1px 24px rgba(255, 255, 255, 0.65);
}

body.gia-defense-home .gia-main--home .hero__title .hero__accent {
    color: var(--gia-sand);
}

body.gia-defense-home .gia-main--home .hero__subtitle {
    color: var(--gia-gray-700);
}

/* Home — presentation type scale (font-size only) */
body.gia-defense-home .gia-main--home .label {
    font-size: 0.875rem;
}

body.gia-defense-home .gia-main--home .hero__label {
    font-size: 0.875rem;
}

body.gia-defense-home .gia-main--home .hero__brand-line {
    font-size: 1.0625rem;
}

body.gia-defense-home .gia-main--home .heading-xl {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

body.gia-defense-home .gia-main--home .heading-md {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

body.gia-defense-home .gia-main--home .heading-sm {
    font-size: 1.125rem;
}

body.gia-defense-home .gia-main--home .body-lg {
    font-size: 1.125rem;
}

body.gia-defense-home .gia-main--home .body-md {
    font-size: 1rem;
}

body.gia-defense-home .gia-main--home .hero__points li {
    font-size: 0.875rem;
}

body.gia-defense-home .gia-main--home .about-cinematic--home .about-cinematic__quote--home {
    font-size: clamp(1.875rem, 3.8vw, 2.75rem);
}

body.gia-defense-home .gia-main--home .about-cinematic__kicker {
    font-size: 1.0625rem;
}

body.gia-defense-home .gia-main--home .about-cinematic--home .stat-pill__value {
    font-size: clamp(1.625rem, 2.4vw, 2rem);
}

body.gia-defense-home .gia-main--home .about-cinematic--home .stat-pill__label {
    font-size: 0.8125rem;
}

body.gia-defense-home .gia-main--home .home-pillar p {
    font-size: 1rem;
}

body.gia-defense-home .gia-main--home .home-platform-essence__col .heading-sm {
    font-size: 1.0625rem;
}

body.gia-defense-home .gia-main--home .home-platform-essence__col li {
    font-size: 1rem;
}

body.gia-defense-home .gia-main--home .home-vc-strip__pill {
    font-size: 0.875rem;
}

body.gia-defense-home .gia-main--home .home-vc-strip__pill strong {
    font-size: 0.75rem;
}

body.gia-defense-home .gia-main--home .home-thesis p,
body.gia-defense-home .gia-main--home .home-thesis-grid--duo .home-thesis p {
    font-size: 1rem;
}

body.gia-defense-home .gia-main--home .home-partner-glance__copy .body-md {
    font-size: 1rem;
}

body.gia-defense-home .gia-main--home .home-partner-glance__creds {
    font-size: 0.8125rem;
}

body.gia-defense-home .gia-main--home .home-partner-glance__link {
    font-size: 0.875rem;
}

body.gia-defense-home .gia-main--home .home-explore__title {
    font-size: 1rem;
}

body.gia-defense-home .gia-main--home .home-explore__hint {
    font-size: 0.875rem;
}

body.gia-defense-home .gia-main--home .btn {
    font-size: 1rem;
}

/* About — video hero text readable (color only) */
body.gia-page-about .gia-main--about .about-cinematic--about-page .about-page-hero__content .label {
    color: var(--gia-sand-lighter);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

body.gia-page-about .gia-main--about .about-cinematic--about-page .about-page-hero__content .heading-xl,
body.gia-page-about .gia-main--about .about-cinematic--about-page .about-page-hero__title {
    color: var(--gia-white);
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

body.gia-page-about .gia-main--about .about-cinematic--about-page .about-page-hero__lead {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

/* About — presentation type scale (font-size only) */
body.gia-page-about .gia-main--about .label {
    font-size: 0.875rem;
}

body.gia-page-about .gia-main--about .heading-md {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

body.gia-page-about .gia-main--about .heading-sm {
    font-size: 1.125rem;
}

body.gia-page-about .gia-main--about .heading-lg {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

body.gia-page-about .gia-main--about .body-md {
    font-size: 1rem;
}

body.gia-page-about .gia-main--about .about-cinematic--about-page .about-page-hero__content .heading-xl {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
}

body.gia-page-about .gia-main--about .about-page-hero__lead {
    font-size: 1.125rem;
}

body.gia-page-about .gia-main--about .about-band-light__pillar p,
body.gia-page-about .gia-main--about .about-band-light__col li,
body.gia-page-about .gia-main--about .about-band-light__layer p {
    font-size: 1rem;
}

body.gia-page-about .gia-main--about .about-band-light__chain-pills span {
    font-size: 0.8125rem;
}

body.gia-page-about .gia-main--about .about-moats-compact__list strong {
    font-size: 1.125rem;
}

body.gia-page-about .gia-main--about .about-moats-compact__list li {
    font-size: 1rem;
}

body.gia-page-about .gia-main--about .context-block__list li,
body.gia-page-about .gia-main--about .context-block__point .body-md {
    font-size: 1rem;
}

body.gia-page-about .gia-main--about .credential-card .body-md {
    font-size: 1rem;
}

body.gia-page-about .gia-main--about .btn {
    font-size: 1rem;
}

/* Products — video hero text readable (color only) */
body.gia-page-products .gia-main--products .about-cinematic--products-page .products-video-hero__content .label {
    color: var(--gia-sand-lighter);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

body.gia-page-products .gia-main--products .about-cinematic--products-page .products-video-hero__content .heading-md,
body.gia-page-products .gia-main--products .about-cinematic--products-page .products-video-hero__title {
    color: var(--gia-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

body.gia-page-products .gia-main--products .about-cinematic--products-page .products-video-hero__intro {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

/* Products — presentation type scale (font-size only) */
body.gia-page-products .gia-main--products .label {
    font-size: 0.875rem;
}

body.gia-page-products .gia-main--products .heading-md {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

body.gia-page-products .gia-main--products .heading-sm {
    font-size: 1.125rem;
}

body.gia-page-products .gia-main--products .heading-lg {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

body.gia-page-products .gia-main--products .body-md {
    font-size: 1rem;
}

body.gia-page-products .gia-main--products .about-cinematic--products-page .products-video-hero__content .heading-md {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
}

body.gia-page-products .gia-main--products .products-video-hero__intro {
    font-size: 1rem;
}

body.gia-page-products .gia-main--products .products-spotlight__lead,
body.gia-page-products .gia-main--products .products-spotlight__highlights li {
    font-size: 1rem;
}

body.gia-page-products .gia-main--products .product-card__desc {
    font-size: 1rem;
}

body.gia-page-products .gia-main--products .products-trust__item span {
    font-size: 0.8125rem;
    line-height: 1.15;
}

body.gia-page-products .gia-main--products .capability-group li {
    font-size: 1rem;
}

body.gia-page-products .gia-main--products .capacity-table,
body.gia-page-products .gia-main--products .capacity-table table {
    font-size: 1rem;
}

body.gia-page-products .gia-main--products .btn {
    font-size: 1rem;
}
