/* =========================================================
   ADK CAPITAL — CORPORATE WEBSITE
   PT. ADICITA DHOYOKUSUMO KAPITAL
========================================================= */

:root {
    --green-950: #04170e;
    --green-900: #062317;
    --green-800: #082d1c;
    --green-700: #0b3c25;
    --green-600: #105233;
    --green-500: #17633e;

    --gold: #c9a75b;
    --gold-light: #e1c986;
    --cream: #f7f7f2;
    --white: #ffffff;
    --ink: #17221b;
    --muted: #69736d;
    --line: #dfe4df;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, Helvetica, sans-serif;
}

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

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

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(90%, 1240px);
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    display: inline-block;
    color: #96782f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.3;
}

.eyebrow-light {
    color: var(--gold-light);
}

h1,
h2,
h3 {
    font-weight: 600;
}

em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
}

p {
    color: var(--muted);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(4,23,14,.18);
    transition: .35s ease;
}

.navbar.scrolled {
    background: rgba(4,23,14,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.nav-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 53px;
    height: 53px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.brand-text strong {
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: 3px;
}

.brand-text span {
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: 1.15px;
    opacity: .68;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu > a,
.nav-dropdown-toggle {
    position: relative;
    border: 0;
    background: none;
    color: rgba(255,255,255,.9);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 0;
}

.nav-menu > a::after,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: .25s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after,
.nav-dropdown:hover > .nav-dropdown-toggle::after,
.nav-dropdown.open > .nav-dropdown-toggle::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 14px;
    line-height: 1;
    transition: transform .25s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: -18px;
    min-width: 205px;
    padding: 9px;
    background: rgba(7,35,22,.98);
    border: 1px solid rgba(201,167,91,.28);
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    color: rgba(255,255,255,.78);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: .2s ease;
}

.dropdown-menu a:hover {
    color: white;
    background: rgba(201,167,91,.1);
    padding-left: 18px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px auto;
    background: white;
    transition: .25s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


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

.hero {
    min-height: 820px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(3,24,14,.97), rgba(7,63,36,.86), rgba(0,0,0,.46)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 35%, rgba(201,167,91,.12), transparent 27%),
        linear-gradient(to bottom, transparent 70%, rgba(3,18,11,.42));
}

.hero-grid-lines {
    position: absolute;
    right: -5%;
    bottom: -20%;
    width: 65%;
    height: 65%;
    opacity: .12;
    transform: rotate(-12deg);
    background:
        repeating-linear-gradient(
            12deg,
            transparent 0,
            transparent 38px,
            rgba(201,167,91,.45) 39px,
            transparent 40px
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    color: white;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero-kicker span {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(55px, 7vw, 96px);
    line-height: .92;
    letter-spacing: -2px;
    margin-bottom: 34px;
}

.hero h1 em {
    color: var(--gold-light);
}

.hero-description {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 34px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s ease;
}

.btn-primary {
    background: var(--gold);
    color: #112318;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255,255,255,.5);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--green-800);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--green-800);
}

.btn-white:hover {
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    gap: 45px;
    margin-top: 78px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.hero-meta div {
    display: flex;
    flex-direction: column;
}

.hero-meta strong {
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.hero-meta span {
    margin-top: 4px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
}

.scroll-indicator {
    position: absolute;
    z-index: 3;
    right: 5%;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.42);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: right center;
}

.scroll-indicator i {
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,.35);
}


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

.about-section {
    background: var(--cream);
}

.split-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
    align-items: start;
}

.section-intro h2,
.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(46px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -1.5px;
}

.section-intro h2 em,
.section-heading h2 em {
    color: var(--green-600);
}

.intro-copy {
    padding-top: 4px;
    max-width: 660px;
}

.intro-copy .lead {
    color: #27342c;
    font-size: 21px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.intro-copy p:not(.lead) {
    max-width: 610px;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 85px;
    border-top: 1px solid var(--line);
}

.fact-card {
    min-height: 205px;
    padding: 28px 28px 20px 0;
    border-right: 1px solid var(--line);
}

.fact-card:not(:first-child) {
    padding-left: 28px;
}

.fact-card:last-child {
    border-right: 0;
}

.fact-card > span {
    display: block;
    margin-bottom: 25px;
    color: #a3833c;
    font-size: 10px;
    letter-spacing: 1px;
}

.fact-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.fact-card p {
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   CORPORATE PROFILE
========================================================= */

.corporate-section {
    padding: 110px 0;
    color: white;
    background:
        radial-gradient(circle at 85% 25%, rgba(201,167,91,.11), transparent 25%),
        var(--green-900);
}

.corporate-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.corporate-title h2 {
    margin-top: 16px;
    font-size: clamp(45px, 5vw, 65px);
    line-height: .98;
}

.corporate-title h2 em {
    color: var(--gold-light);
}

.corporate-content {
    border-top: 1px solid rgba(255,255,255,.14);
}

.corporate-row {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 30px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.corporate-row span {
    color: rgba(255,255,255,.42);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.corporate-row strong {
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {
    background: white;
}

.section-heading {
    margin-bottom: 58px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.approach-card {
    min-height: 405px;
    padding: 38px;
    background: var(--cream);
}

.approach-card.featured {
    color: white;
    background: var(--green-700);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-top span {
    color: #a3833c;
    font-size: 10px;
    letter-spacing: 1px;
}

.card-top b {
    color: #89928c;
    font-size: 8px;
    letter-spacing: 2px;
}

.featured .card-top b {
    color: rgba(255,255,255,.45);
}

.card-symbol {
    margin: 55px 0 22px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 39px;
    line-height: 1;
}

.approach-card h3 {
    font-size: 30px;
    line-height: 1.02;
    margin-bottom: 20px;
}

.approach-card p {
    max-width: 340px;
    font-size: 13px;
}

.featured p {
    color: rgba(255,255,255,.64);
}


/* =========================================================
   INVESTMENT FOCUS
========================================================= */

.focus-section {
    padding: 125px 0;
    color: white;
    background:
        linear-gradient(125deg, #071f13, #0c3f27);
}

.focus-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 75px;
}

.focus-header h2 {
    margin-top: 16px;
    font-size: clamp(46px, 5vw, 68px);
    line-height: .98;
}

.focus-header h2 em {
    color: var(--gold-light);
}

.focus-header > p {
    max-width: 520px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.16);
}

.focus-feature {
    min-height: 245px;
    padding: 27px 30px 30px 0;
    border-right: 1px solid rgba(255,255,255,.16);
}

.focus-feature:not(:first-child) {
    padding-left: 30px;
}

.focus-feature:last-child {
    border-right: 0;
}

.focus-number {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 1px;
}

.focus-feature h3 {
    margin: 42px 0 9px;
    font-size: 25px;
}

.focus-feature p {
    color: rgba(255,255,255,.54);
    font-size: 13px;
}


/* =========================================================
   PROJECT PLANNING
========================================================= */

.planning-section {
    background: var(--cream);
}

.planning-heading {
    max-width: 850px;
}

.planning-heading > p {
    max-width: 650px;
    margin-top: 25px;
}

.timeline {
    position: relative;
    margin-top: 75px;
    border-top: 1px solid var(--line);
}

.timeline-item {
    display: grid;
    grid-template-columns: 75px 180px 1fr;
    gap: 25px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #c4a45c;
    color: #96782f;
    font-size: 10px;
    letter-spacing: 1px;
}

.timeline-period {
    padding-top: 8px;
    color: #96782f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 9px;
}

.timeline-content p {
    max-width: 690px;
    font-size: 13px;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-section {
    background: white;
}

.centered {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered > p {
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 13px;
}

.leadership-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.leadership-main {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
}

.leadership-secondary {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 1px;
}

.person-card {
    min-height: 235px;
    padding: 28px;
    background: var(--cream);
}

.featured-person {
    min-height: 310px;
    padding: 35px;
}

.person-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 38px;
    border: 1px solid #bba05f;
    border-radius: 50%;
    color: var(--green-700);
    font-family: var(--serif);
    font-size: 27px;
}

.featured-person .person-initial {
    width: 86px;
    height: 86px;
    font-size: 31px;
}

.person-role {
    min-height: 30px;
    color: #96782f;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.3px;
}

.person-card h3 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
}

.featured-person h3 {
    font-size: 23px;
}


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

.directors-section {
    padding: 120px 0;
    background: #f0f1ec;
}

.director-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 70px;
    margin-top: 60px;
    border-top: 1px solid #d5dad4;
}

.director-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 78px;
    border-bottom: 1px solid #d5dad4;
}

.director-item span {
    color: #7b847d;
    font-size: 10px;
    letter-spacing: .7px;
}

.director-item strong {
    color: #26322b;
    font-size: 13px;
    text-align: right;
}


/* =========================================================
   ORGANIZATION
========================================================= */

.organization-section {
    padding: 120px 0;
    color: white;
    background: var(--green-900);
}

.organization-section .centered > p {
    color: rgba(255,255,255,.57);
}

.org-chart {
    margin-top: 65px;
    padding: 45px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.025);
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.org-level.single {
    margin: 0;
}

.org-box {
    min-width: 210px;
    padding: 17px 22px;
    border: 1px solid rgba(201,167,91,.42);
    color: rgba(255,255,255,.82);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
}

.org-box.accent {
    min-width: 170px;
    color: var(--gold-light);
    background: rgba(201,167,91,.07);
}

.org-line {
    width: 1px;
    height: 30px;
    margin: 0 auto;
    background: rgba(201,167,91,.38);
}

.org-divisions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    margin-top: 30px;
    background: rgba(255,255,255,.12);
}

.org-divisions div {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #0b3320;
    color: rgba(255,255,255,.7);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-align: center;
}

.org-note {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.org-note span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.org-note p {
    color: rgba(255,255,255,.48);
    font-size: 11px;
}


/* =========================================================
   PARTNERSHIP
========================================================= */

.partnership-section {
    padding: 125px 0;
    color: white;
    text-align: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(201,167,91,.14), transparent 28%),
        linear-gradient(135deg, #0a4a2b, #061e12);
}

.partnership-inner {
    max-width: 900px;
}

.partnership-section h2 {
    margin: 18px 0 20px;
    font-size: clamp(48px, 6vw, 74px);
    line-height: .95;
}

.partnership-section h2 em {
    color: var(--gold-light);
}

.partnership-section p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,.63);
    font-size: 14px;
}


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

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
}

.contact-copy h2 {
    margin: 16px 0 25px;
    font-size: clamp(48px, 5vw, 68px);
    line-height: .96;
}

.contact-copy h2 em {
    color: var(--green-600);
}

.contact-copy > p {
    max-width: 510px;
    font-size: 14px;
}

.contact-caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 48px;
    padding-left: 15px;
    border-left: 2px solid var(--gold);
}

.contact-caption span {
    color: #96782f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-caption strong {
    font-size: 13px;
    font-weight: 500;
}

.contact-info {
    border-top: 1px solid var(--line);
}

.contact-item {
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item span {
    display: block;
    margin-bottom: 7px;
    color: #96782f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.contact-item strong {
    color: #26322b;
    font-size: 13px;
    font-weight: 500;
}


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

.footer {
    color: white;
    background: #03130b;
}

.footer-top {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 45px auto;
    column-gap: 14px;
    align-items: center;
}

.footer-logo {
    grid-row: span 2;
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-brand strong {
    align-self: end;
    font-size: 15px;
    letter-spacing: 2.5px;
}

.footer-brand p {
    align-self: start;
    color: #66716a;
    font-size: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
}

.footer-links a {
    color: #8c9890;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #56625a;
    font-size: 9px;
}

.powered a {
    color: #a98a43;
    font-weight: 700;
}

.powered a:hover {
    color: white;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-menu > a,
    .nav-dropdown-toggle {
        font-size: 9px;
    }

    .split-intro,
    .corporate-grid,
    .focus-header,
    .contact-grid {
        gap: 60px;
    }

    .leadership-secondary {
        grid-template-columns: repeat(3, 1fr);
    }

    .org-divisions {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE NAV
========================================================= */

@media (max-width: 900px) {

    .nav-inner {
        min-height: 76px;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 6px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 6%;
        background: rgba(4,23,14,.98);
        border-top: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 20px 35px rgba(0,0,0,.18);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu > a,
    .nav-dropdown-toggle {
        width: 100%;
        padding: 14px 0;
        text-align: left;
        font-size: 10px;
    }

    .nav-menu > a::after,
    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 0 0 5px 15px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 0;
    }

    .dropdown-menu a:hover {
        padding-left: 0;
        background: none;
    }

    .section {
        padding: 85px 0;
    }

    .split-intro,
    .corporate-grid,
    .focus-header,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .fact-card:nth-child(2) {
        border-right: 0;
    }

    .fact-card:nth-child(3),
    .fact-card:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .approach-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        min-height: 330px;
    }

    .focus-feature,
    .focus-feature:not(:first-child) {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .focus-feature:last-child {
        border-bottom: 0;
    }

    .timeline-item {
        grid-template-columns: 55px 1fr;
    }

    .timeline-period {
        grid-column: 2;
        grid-row: 1;
        padding-top: 8px;
    }

    .timeline-content {
        grid-column: 2;
    }

    .timeline-marker {
        grid-row: span 2;
    }

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

    .director-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .org-note {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-top {
        padding: 55px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}


/* =========================================================
   RESPONSIVE — SMALL PHONE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 88%;
    }

    .hero {
        min-height: 760px;
        background-position: 58% center;
    }

    .hero-content {
        padding-top: 85px;
    }

    .hero-kicker {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 55px;
    }

    .hero-meta div:last-child {
        grid-column: span 2;
    }

    .scroll-indicator {
        display: none;
    }

    .section-intro h2,
    .section-heading h2,
    .corporate-title h2,
    .focus-header h2,
    .contact-copy h2 {
        font-size: 43px;
    }

    .split-intro,
    .corporate-grid,
    .focus-header,
    .contact-grid {
        gap: 40px;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .fact-card,
    .fact-card:not(:first-child) {
        min-height: auto;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fact-card:last-child {
        border-bottom: 0;
    }

    .corporate-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .approach-card {
        min-height: 310px;
        padding: 30px;
    }

    .card-symbol {
        margin-top: 35px;
    }

    .timeline-item {
        grid-template-columns: 48px 1fr;
        gap: 15px;
    }

    .timeline-content h3 {
        font-size: 21px;
    }

    .leadership-main,
    .leadership-secondary {
        grid-template-columns: 1fr;
    }

    .featured-person,
    .person-card {
        min-height: auto;
    }

    .featured-person {
        padding: 30px;
    }

    .person-initial,
    .featured-person .person-initial {
        width: 68px;
        height: 68px;
        margin-bottom: 25px;
        font-size: 25px;
    }

    .director-item {
        display: block;
        padding: 18px 0;
    }

    .director-item strong {
        display: block;
        margin-top: 5px;
        text-align: left;
    }

    .org-chart {
        padding: 25px 15px;
        overflow-x: auto;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .org-box {
        width: 100%;
        min-width: 0;
    }

    .org-divisions {
        grid-template-columns: 1fr 1fr;
    }

    .org-note {
        margin-top: 25px;
    }

    .partnership-section h2 {
        font-size: 47px;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        gap: 15px;
    }
}
