:root {
    --blue: #0755b6;
    --blue2: #043d87;
    --ink: #081321;
    --text: #172033;
    --muted: #667287;
    --white: #fff;
    --soft: #f4f7fb;
    --line: #dce3ed;
    --yellow: #ffd84f;
    --shadow: 0 25px 70px rgba(4, 38, 85, 0.15);
    --max: 1240px;
    --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}


/* =========================
   RESET & GLOBAL
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: #fff;
    font:
        400 16px/1.65
        Manrope,
        system-ui,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}


/* =========================
   LAYOUT
========================= */

.container {
    width: min(
        var(--max),
        calc(100% - 48px)
    );
    margin: auto;
}

.section {
    position: relative;
    padding:
        clamp(85px, 9vw, 145px)
        0;
}

.blue {
    color: #fff;
    background: var(--blue);
}

.soft {
    background: var(--soft);
}


/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3 {
    font-family:
        "Space Grotesk",
        Manrope,
        sans-serif;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

h1 {
    margin: 0 0 28px;
    font-size: clamp(3.2rem, 7vw, 7rem);
}

h2 {
    margin: 0 0 24px;
    font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

h3 {
    margin: 0 0 9px;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

.kicker,
.mini,
.section-head small,
.product-body small,
.project-head small,
.timeline small,
.contact-panel small,
.directors small {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.kicker {
    margin-bottom: 18px;
    color: var(--blue);
}

.light-kicker {
    color: var(--yellow);
}

.section-head {
    max-width: 900px;
    margin-bottom: 65px;
}

.section-head > p:last-child {
    max-width: 650px;
}

.split-head {
    max-width: none;
    display: grid;
    grid-template-columns:
        1.15fr
        0.7fr;
    gap: 60px;
    align-items: end;
}

.split-head > p {
    justify-self: end;
    max-width: 520px;
    margin: 0 0 10px;
}


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 21px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        background-color 0.35s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    background: var(--yellow);
    color: var(--ink);
    box-shadow:
        0 12px 30px
        rgba(255, 216, 79, 0.25);
}

.button.ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.button.dark {
    width: 100%;
    background: var(--ink);
    color: #fff;
}


/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 9px 14px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}


/* =========================
   SCROLL PROGRESS
========================= */

.scroll-progress {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--yellow);
}


/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
    position: fixed;
    z-index: 2000;
    top: 0;
    width: 100%;
    color: #fff;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(3, 35, 76, 0.9);
    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(16px);
}

.navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font:
        700 0.93rem/1
        "Space Grotesk",
        sans-serif;
}

.brand-copy span {
    margin-top: 5px;
    color: var(--yellow);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(13px, 1.5vw, 25px);
}

.nav-link {
    position: relative;
    padding: 10px 0;
    color: #ffffffb8;
    font-size: 0.73rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-link::after {
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.73rem;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid #fff4;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
}

.nav-toggle i {
    display: block;
    height: 2px;
    margin: 5px;
    background: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] i:first-child {
    transform:
        translateY(7px)
        rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] i:last-child {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: min(900px, 100svh);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 140px 0 90px;
    color: #fff;
    background: var(--blue2);
}

.hero-media,
.hero-overlay,
.hero-grid {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -3;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        saturate(0.8)
        contrast(1.05);
    transform: scale(1.03);
}

.hero-overlay {
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            #021530f5 0%,
            #032552c9 43%,
            #032a581f 100%
        ),
        linear-gradient(
            0deg,
            #031f43a0,
            transparent 45%
        );
}

.hero-grid {
    z-index: -1;
    left: auto;
    width: 42%;
    height: 55%;
    background-image:
        radial-gradient(
            #fff9 1px,
            transparent 1.5px
        );
    background-size: 14px 14px;
    mask-image:
        linear-gradient(
            135deg,
            transparent 10%,
            #000 70%
        );
}

.hero-line {
    position: absolute;
    z-index: -1;
    width: 1px;
    height: 40vh;
    background:
        linear-gradient(
            transparent,
            #ffd84fb0,
            transparent
        );
}

.hero-line.one {
    top: 18%;
    right: 13%;
    transform: rotate(18deg);
}

.hero-line.two {
    right: 18%;
    bottom: 3%;
    transform: rotate(-28deg);
}

.hero-inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        285px;
    align-items: end;
    gap: 80px;
}

.hero-content {
    max-width: 800px;

    /*
     * HERO WAJIB SELALU VISIBLE.
     * Tidak bergantung pada IntersectionObserver.
     */
    opacity: 1;
    transform: none;
    animation:
        heroContentIn
        0.9s
        var(--ease)
        both;
}

.hero-meta {
    opacity: 1;
    transform: none;
    animation:
        heroMetaIn
        1s
        0.2s
        var(--ease)
        both;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes heroMetaIn {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

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

.eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow b {
    width: 28px;
    height: 1px;
    background: currentColor;
}

.hero-lead {
    max-width: 700px;
    color: #fffc;
    font-size:
        clamp(
            1rem,
            1.5vw,
            1.18rem
        );
}

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

.hero-meta {
    border-left: 1px solid #fff4;
    padding-left: 24px;
}

.hero-meta > div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #fff2;
}

.hero-meta > div:last-child {
    border: 0;
}

.hero-meta em {
    font-style: normal;
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 800;
}

.hero-meta strong,
.hero-meta small {
    display: block;
}

.hero-meta strong {
    font-size: 0.82rem;
}

.hero-meta small {
    margin-top: 3px;
    color: #fff9;
    font-size: 0.68rem;
}

.scroll-cue {
    position: absolute;
    right: 28px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fffb;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue i {
    width: 1px;
    height: 50px;
    background:
        linear-gradient(
            var(--yellow),
            transparent
        );
}


/* =========================
   ABOUT
========================= */

.split {
    display: grid;
    grid-template-columns:
        0.86fr
        1fr;
    align-items: center;
    gap:
        clamp(
            50px,
            8vw,
            120px
        );
}

.media-frame {
    position: relative;
}

.about-media {
    min-height: 620px;
    padding:
        28px
        30px
        52px
        28px;
}

.about-media > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height:
        min(
            690px,
            62vw
        );
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.yellow-block {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 142px;
    height: 142px;
    background: var(--yellow);
    transform:
        translate(
            -10px,
            -10px
        );
}

.dot-field {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 155px;
    height: 155px;
    background-image:
        radial-gradient(
            var(--blue) 1.2px,
            transparent 1.5px
        );
    background-size: 12px 12px;
    transform:
        translate(
            12px,
            12px
        );
}

.media-tag {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 18px;
    display: flex;
    gap: 15px;
    padding: 12px 15px;
    background: var(--blue);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.media-tag b {
    color: var(--yellow);
}

.copy {
    max-width: 650px;
}

.copy .lead {
    color: var(--text);
    font-size:
        clamp(
            1.2rem,
            2vw,
            1.6rem
        );
    line-height: 1.45;
    font-weight: 600;
}

.rule {
    width: 86px;
    height: 4px;
    margin:
        8px 0
        28px;
    background: var(--yellow);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.pill i {
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px
        #ffd84f2b;
}


/* =========================
   VISION & MISSION
========================= */

.vision {
    background:
        linear-gradient(
            #f7f9fc,
            #fff
        );
}

.vision-grid {
    display: grid;
    grid-template-columns:
        1fr
        0.82fr;
    gap: 24px;
}

.vision-card {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    padding:
        clamp(
            35px,
            5vw,
            68px
        );
    background: var(--blue2);
    color: #fff;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.vision-card::before {
    position: absolute;
    top: 0;
    right: 0;
    border-top:
        120px solid
        var(--yellow);
    border-left:
        120px solid
        transparent;
    content: "";
}

.vision-card blockquote {
    max-width: 620px;
    margin: 28px 0;
    font:
        600
        clamp(
            2.1rem,
            4vw,
            4.5rem
        )/1
        "Space Grotesk";
    font-style: italic;
    letter-spacing: -0.055em;
}

.vision-card > p:last-of-type {
    max-width: 580px;
    color: #fffb;
}

.mini {
    color: var(--yellow);
}

.ghost-letter {
    position: absolute;
    right: 20px;
    bottom: 0;
    color: #fff0;
    font:
        700 13rem/0.7
        "Space Grotesk";
    -webkit-text-stroke:
        1px #ffffff10;
}

.orbit {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 180px;
    height: 180px;
    border:
        1px solid
        #ffd84f59;
    border-radius: 50%;
}

.orbit::after {
    position: absolute;
    top: -7px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    content: "";
}

.missions {
    display: grid;
    gap: 12px;
}

.missions article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    background: #fff;
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}

.missions article:hover {
    transform: translateX(5px);
    box-shadow:
        0 12px 35px
        #081e3c12;
}

.missions article > b {
    color: var(--blue);
    font-size: 0.72rem;
}

.missions small {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.missions h3 {
    margin: 7px 0;
}

.missions p {
    margin: 0;
    font-size: 0.86rem;
}


/* =========================
   VALUES
========================= */

.values {
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns:
        0.78fr
        1fr;
    align-items: center;
    gap:
        clamp(
            50px,
            8vw,
            120px
        );
}

.light h2 {
    color: #fff;
}

.light p:not(.kicker) {
    color: #fffc;
}

.value-image {
    position: relative;
    min-height: 500px;
    padding:
        25px
        0
        25px
        25px;
}

.value-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.white-dots {
    position: absolute;
    z-index: 3;
    top: -12px;
    left: -15px;
    width: 145px;
    height: 150px;
    background-image:
        radial-gradient(
            #fff 1.1px,
            transparent 1.5px
        );
    background-size: 12px 12px;
}

.yellow-corner {
    position: absolute;
    z-index: 1;
    right: -12px;
    bottom: -10px;
    width: 150px;
    height: 150px;
    background: var(--yellow);
}

.value-tags {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    margin-top: 72px;
    border-top:
        1px solid #fff3;
    border-bottom:
        1px solid #fff3;
}

.value-tags div {
    padding: 20px 0;
    font-size: 0.82rem;
    font-weight: 800;
}

.value-tags b {
    margin-right: 14px;
    color: var(--yellow);
    font-size: 0.7rem;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns:
        0.95fr
        1fr;
    align-items: center;
    gap:
        clamp(
            45px,
            7vw,
            100px
        );
}

.service-image {
    min-height: 520px;
    padding:
        20px
        20px
        20px
        0;
}

.service-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.blue-block {
    position: absolute;
    z-index: 0;
    top: -20px;
    left: -25px;
    width: 140px;
    height: 140px;
    background: var(--blue);
}

.yellow-block.small {
    top: 12px;
    right: -15px;
    left: auto;
    width: 120px;
    height: 120px;
}

.image-label {
    position: absolute;
    z-index: 3;
    left: 28px;
    bottom: 5px;
    padding: 10px 13px;
    background: var(--ink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-list article {
    position: relative;
    display: grid;
    grid-template-columns:
        48px
        1fr
        30px;
    gap: 20px;
    padding: 30px 0;
    border-top:
        1px solid
        var(--line);
    transition:
        padding-left 0.35s ease;
}

.service-list article:last-child {
    border-bottom:
        1px solid
        var(--line);
}

.service-list article::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    content: "";
    transition:
        width 0.4s var(--ease);
}

.service-list article:hover {
    padding-left: 10px;
}

.service-list article:hover::before {
    width: 85px;
}

.service-list article > b {
    color: var(--blue);
    font-size: 0.72rem;
}

.service-list p {
    margin: 0;
    font-size: 0.88rem;
}

.service-list article > span {
    color: var(--blue);
}


/* =========================
   PRODUCTS
========================= */

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

.products article {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    transition:
        transform 0.45s var(--ease),
        box-shadow 0.45s var(--ease);
}

.products article:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.products .dark-card {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            #03122670,
            transparent 60%
        );
    content: "";
}

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

.products article:hover
.product-image img {
    transform: scale(1.05);
}

.product-image > b {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 50%;
    font-size: 0.72rem;
}

.product-body {
    padding: 28px;
}

.product-body small {
    color: var(--blue);
}

.dark-card
.product-body small {
    color: var(--yellow);
}

.product-body h3 {
    margin-top: 9px;
}

.product-body p {
    min-height: 145px;
    font-size: 0.86rem;
}

.dark-card p {
    color: #fff9;
}

.product-body footer {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top:
        1px solid
        var(--line);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dark-card footer {
    border-color: #fff2;
}


/* =========================
   DIRECTORS
========================= */

.directors {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.directors article {
    grid-column: span 2;
    min-height: 390px;
    padding: 28px;
    border: 1px solid var(--line);
    background: #fff;
    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        border-color 0.4s var(--ease);
}

.directors article:nth-child(4) {
    grid-column: 2 / span 2;
}

.directors article:nth-child(5) {
    grid-column: 4 / span 2;
}

.directors article:hover,
.directors .featured {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px #081e3c12;
}

.directors .featured {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}


/* =========================
   DIRECTOR PHOTO
========================= */

.director-photo {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    border: 4px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    background: var(--soft);
    box-shadow:
        0 0 0 1px var(--line),
        0 14px 35px rgba(8, 19, 33, 0.12);
    isolation: isolate;
}

.director-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.6s var(--ease);
}

.directors article:hover .director-photo img {
    transform: scale(1.06);
}


/* Fallback jika foto belum tersedia */

.director-placeholder {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    background: var(--soft);
    color: var(--blue);
    font:
        700 1.8rem
        "Space Grotesk",
        sans-serif;
}

.directors .featured .director-placeholder {
    background: var(--blue2);
    color: var(--yellow);
}


/* =========================
   DIRECTOR INITIAL BADGE
========================= */

.director-photo > .director-initial {
    position: absolute;
    right: 2px;
    bottom: 2px;
    z-index: 3;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font:
        800 0.68rem
        "Space Grotesk",
        sans-serif;
    box-shadow: 0 5px 15px rgba(8, 19, 33, 0.15);
}


/* =========================
   DIRECTOR INFORMATION
========================= */

.director-info {
    display: block;
}

.director-info small {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.director-info h3 {
    margin: 0;
    color: var(--text);
}

.directors .featured .director-info small {
    color: var(--yellow);
}

.directors .featured .director-info h3 {
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1020px) {

    .directors {
        grid-template-columns: repeat(2, 1fr);
    }

    .directors article,
    .directors article:nth-child(4),
    .directors article:nth-child(5) {
        grid-column: auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {

    .directors {
        grid-template-columns: 1fr;
    }

    .directors article {
        min-height: 330px;
    }

    .director-photo {
        width: 150px;
        height: 150px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 430px) {

    .director-photo {
        width: 135px;
        height: 135px;
    }

    .directors article {
        min-height: 310px;
    }

    .director-photo > .director-initial {
        width: 36px;
        height: 36px;
    }

}

/* =========================
   PROJECTS
========================= */

.projects {
    overflow: hidden;
}

.project-head {
    max-width: 760px;
}

.project-head > p:last-child {
    color: #fffb;
}

.timeline {
    position: relative;
    display: grid;
    gap: 55px;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 1px;
    background: #fff4;
    content: "";
}

.timeline article {
    display: grid;
    grid-template-columns:
        80px
        0.8fr
        1fr;
    gap: 32px;
    align-items: center;
}

.marker {
    position: relative;
    z-index: 1;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 50%;
    font:
        800 0.7rem
        "Space Grotesk";
}

.project-image {
    overflow: hidden;
    border: 1px solid #fff2;
}

.project-image img {
    width: 100%;
    aspect-ratio: 1.9 / 1;
    object-fit: cover;
    transition:
        transform 0.6s var(--ease);
}

.timeline article:hover
.project-image img {
    transform: scale(1.04);
}

.timeline article > div:last-child {
    max-width: 620px;
}

.timeline small {
    color: var(--yellow);
}

.timeline h3 {
    margin: 8px 0 13px;
    color: #fff;
    font-size:
        clamp(
            1.7rem,
            3vw,
            2.6rem
        );
}

.timeline p {
    color: #fff9;
    font-size: 0.9rem;
}

.timeline p:last-child {
    margin-bottom: 0;
}


/* =========================
   CONTACT CTA
========================= */

.cta {
    position: relative;
    overflow: hidden;
    padding:
        clamp(
            85px,
            10vw,
            145px
        )
        0;
    background: var(--yellow);
}

.rings {
    position: absolute;
    right: -5%;
    bottom: -30%;
    width: min(48vw, 650px);
    aspect-ratio: 1;
    border:
        1px solid
        #032b6030;
    border-radius: 50%;
}

.rings::before,
.rings::after {
    position: absolute;
    inset: 8%;
    border:
        1px solid
        #032b6022;
    border-radius: inherit;
    content: "";
}

.rings::after {
    inset: 18%;
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        1fr
        0.65fr;
    gap: 70px;
    align-items: end;
}

.cta h2 {
    color: var(--ink);
}

.cta .kicker {
    color: var(--blue2);
}

.cta > div > div:first-child
p:last-child {
    max-width: 650px;
    color: #081321b8;
}

.contact-panel {
    padding: 32px;
    border:
        1px solid
        #fffC;
    background: #fffB;
    box-shadow:
        0 25px 60px
        #032b601f;
    backdrop-filter: blur(12px);
}

.contact-panel > div {
    display: grid;
    gap: 5px;
    padding: 17px 0;
    border-bottom:
        1px solid
        #032b6020;
}

.contact-panel small {
    color: #032b6099;
}

.contact-panel strong {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
}

.contact-panel .button {
    margin-top: 20px;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: var(--ink);
    color: #fff9;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.1fr;
    gap: 55px;
    padding:
        78px
        0
        70px;
}

.footer-brand p {
    max-width: 440px;
    margin-top: 23px;
    color: #fff8;
    font-size: 0.83rem;
}

.footer-grid >
div:not(.footer-brand) {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-grid h2 {
    margin: 0 0 10px;
    color: #fff;
    font:
        800 0.72rem/1
        Manrope;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    max-width: 250px;
    margin: 0;
    color: #fff9;
    font-size: 0.77rem;
}

.footer-grid a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding:
        20px
        0
        24px;
    border-top:
        1px solid
        #fff2;
    color: #fff7;
    font-size: 0.66rem;
}


/* =========================
   BACK TO TOP
========================= */

.back-top {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    box-shadow:
        0 10px 30px
        #0002;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    cursor: pointer;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}


/* =========================
   SCROLL REVEAL
========================= */

/*
 * Hanya section setelah Hero yang
 * menggunakan reveal animation.
 *
 * Hero TIDAK menggunakan opacity: 0.
 */

main section:not(#home) [data-reveal] {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s var(--ease);
}

main section:not(#home)
[data-reveal="up"] {
    transform: translateY(30px);
}

main section:not(#home)
[data-reveal="left"] {
    transform: translateX(35px);
}

main section:not(#home)
[data-reveal="right"] {
    transform: translateX(-35px);
}

main section:not(#home)
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1020px) {

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 17px;
        right: 17px;
        display: grid;
        gap: 0;
        padding: 12px;
        background: #03234cf9;
        border:
            1px solid
            #fff2;
        border-radius: 16px;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-link {
        padding: 13px 12px;
        font-size: 0.8rem;
    }

    .nav-link::after {
        left: 12px;
        width: 25px;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 8px;
    }

    .hero-inner,
    .split,
    .vision-grid,
    .values-grid,
    .services-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 45px;
    }

    .hero-meta {
        display: grid;
        grid-template-columns:
            repeat(3, 1fr);
        gap: 12px;
        padding: 0;
        border: 0;
    }

    .hero-meta > div {
        padding: 14px;
        border:
            1px solid
            #fff2;
    }

    .split-head {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .split-head > p {
        justify-self: start;
    }

    .about-media {
        max-width: 720px;
    }

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

    .products article:last-child {
        grid-column: 1 / -1;
        max-width:
            calc(50% - 10px);
        margin: auto;
    }

    .directors {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .directors article,
    .directors article:nth-child(4),
    .directors article:nth-child(5) {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns:
            1.5fr
            1fr
            1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {

    .container {
        width:
            calc(100% - 34px);
    }

    .section {
        padding: 76px 0;
    }

    h2 {
        font-size:
            clamp(
                2.2rem,
                11vw,
                3.7rem
            );
    }

    .hero {
        min-height: 800px;
        padding:
            125px
            0
            75px;
    }

    .hero h1 {
        font-size:
            clamp(
                3rem,
                14vw,
                5rem
            );
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                #021530e8,
                #03255299 55%,
                #032a58b8
            );
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-meta > div {
        padding: 9px 0;
        border: 0;
        border-bottom:
            1px solid
            #fff2;
    }

    .scroll-cue {
        display: none;
    }

    .about-media {
        min-height: 0;
        padding:
            17px
            18px
            42px
            15px;
    }

    .about-media > img {
        height: 560px;
        min-height: 0;
    }

    .yellow-block {
        width: 95px;
        height: 95px;
    }

    .vision-card {
        min-height: 430px;
        padding:
            34px
            28px;
    }

    .vision-card blockquote {
        font-size:
            clamp(
                2rem,
                10vw,
                3.2rem
            );
    }

    .orbit {
        width: 130px;
        height: 130px;
    }

    .missions article {
        min-height: 135px;
        padding:
            23px
            20px;
    }

    .value-tags {
        grid-template-columns:
            repeat(2, 1fr);
        margin-top: 48px;
    }

    .value-image,
    .value-image img {
        min-height: 330px;
    }

    .value-image {
        padding:
            16px
            0
            16px
            16px;
    }

    .white-dots {
        width: 95px;
        height: 100px;
    }

    .yellow-corner {
        width: 90px;
        height: 90px;
    }

    .service-image,
    .service-image img {
        min-height: 320px;
    }

    .service-image {
        padding:
            14px
            14px
            14px
            0;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .products article:last-child {
        grid-column: auto;
        max-width: none;
    }

    .product-image {
        height: 235px;
    }

    .product-body p {
        min-height: 0;
    }

    .directors {
        grid-template-columns: 1fr;
    }

    .directors article {
        min-height: 250px;
    }
    .timeline::before {
        left: 21px;
    }

    .timeline article {
        grid-template-columns:
            52px
            1fr;
        gap: 17px;
        align-items: start;
    }

    .marker {
        width: 44px;
        height: 44px;
    }

    .project-image,
    .timeline article > div:last-child {
        grid-column: 2;
    }

    .cta-grid {
        gap: 42px;
    }

    .contact-panel {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns:
            1fr
            1fr;
        gap:
            42px
            28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
        gap: 7px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 430px) {

    .container {
        width:
            calc(100% - 28px);
    }

    .brand-copy strong {
        font-size: 0.82rem;
    }

    .brand-copy span {
        font-size: 0.62rem;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size:
            clamp(
                2.75rem,
                15vw,
                4.3rem
            );
    }

    .hero-lead {
        font-size: 0.94rem;
    }

    .value-tags {
        grid-template-columns: 1fr;
    }

    .value-tags div:last-child {
        border: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .back-top {
        right: 14px;
        bottom: 14px;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;
        animation-iteration-count:
            1 !important;
        scroll-behavior:
            auto !important;
        transition-duration:
            0.01ms !important;
    }

    .hero-content,
    .hero-meta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    main section:not(#home)
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
