/* ============================================================
   KIN — Main Stylesheet
   Font: Plus Jakarta Sans (Google Fonts)

   TABLE OF CONTENTS
   1.  Design Tokens       ← change colours, spacing, font here
   2.  Reset & Base
   3.  Site wrapper (max-width)
   4.  Utility: Eyebrow label
   5.  Utility: Scroll-reveal animation
   6.  Navigation
   7.  Nav Dropdowns
   8.  Hero Section
   9.  About Section
   10. Section Header (shared)
   11. Service Cards (3-column, hover-reveal)
   12. Highlights Grid (asymmetric layout)
   13. CTA Band
   14. Footer
   15. Keyframe animations
============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   Edit these variables to restyle the whole site at once.
============================================================ */
:root {
    /* --- Colours --- */
    --clr-bg:       #000000;                    /* Page background          */
    --clr-bg-2:     #000000;                    /* Footer background        */
    --clr-text:     #FFFFFF;
    --clr-muted:    rgba(255,255,255,0.55);     /* Body copy colour         */
    --clr-dim:      rgba(255,255,255,0.30);     /* Labels, legal text       */
    --clr-border:   rgba(255,255,255,0.08);     /* Dividers                 */
    --clr-accent:   #00C1E6;                    /* Teal highlight / CTA     */
    --clr-navy:     #031D45;                    /* KIN corporate navy       */
    --clr-bg-light: #ECECE8;                    /* Light page background    */

    /* --- Typography --- */
    --font:         'Plus Jakarta Sans', sans-serif;

    /* --- Layout --- */
    --nav-h:        64px;       /* Navigation bar height                    */
    --margin:       56px;       /* Horizontal page padding                  */
    --section-v:    96px;       /* Vertical section padding (top & bottom)  */
    --max-w:        1280px;     /* Maximum site width — change here         */
    --w-narrow:     600px;      /* Narrow text block width                  */
    --w-mid:        800px;      /* Mid text block width                     */

    /* --- Animation --- */
    --ease:         0.3s ease;
}


/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; background: #000; }

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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


/* ============================================================
   3. SITE WRAPPER
   Caps the content width and centres it on wide screens.
   The nav, hero bg, and footer bg still bleed full-width —
   only inner content is constrained.
   Change --max-w in tokens (section 1) to adjust.
============================================================ */
.site-wrap {
    width: 100%;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   4. UTILITY: EYEBROW LABEL
   Small all-caps label above section headings.
   Colour controlled by --clr-accent in tokens.
============================================================ */
.eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 12px;
    line-height: 20px;
}

/* Teal action links — dark and light pages */
.link-action {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.link-action:hover { opacity: 0.75; }

/* Smaller eyebrow for tight contexts (stat labels, meta, sidebar) */
.eyebrow--sm {
    font-size: 12px;
    line-height: 16px;
}

/* Colour modifier — navy instead of teal */
.eyebrow--navy { color: var(--clr-navy); }

/* Extra margin above page-level H1 titles */
.eyebrow--page { margin-bottom: 16px; }

/* Person name — used on all people/team pages */
.person-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-navy);
    margin-bottom: 4px;
}


/* ============================================================
   5. SHARED TYPOGRAPHY
   Grouped declarations — individual rules keep only unique
   properties (margins, max-widths) on top of these.
============================================================ */

/* Body text — light pages (#555) */
.svc-expertise__list li,
.svc-detail__desc,
.svc-detail__list li,
.ir-hero__body p,
.ir-item__title,
.contact-detail__value,
.contact-bottom__text,
.about-brand__body p,
.about-mission__body p,
.timeline__desc,
.mv-split__body,
.values__body,
.accreditations__body,
.fh-row__body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #555;
}

/* Body text — dark pages (muted white, medium weight) */
.about__body,
.cs-intro__body,
.cs-meta dd,
.cs-targets__list li {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--clr-muted);
}

/* ============================================================
   6. UTILITY: SCROLL-REVEAL
   Elements with class="reveal" start invisible and fade up
   when they enter the viewport. JS adds .is-visible.
   Stagger with: reveal-delay-1, -2, -3
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(.22,.61,.36,1),
                transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible  { opacity: 1; transform: translateY(0); }
.reveal-delay-1     { transition-delay: 0.1s; }
.reveal-delay-2     { transition-delay: 0.2s; }
.reveal-delay-3     { transition-delay: 0.3s; }


/* ============================================================
   6. NAVIGATION
   Fixed to top. Turns solid on scroll (.scrolled via JS).
   min-width prevents collapse on narrow screens.
============================================================ */
.nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 200;
    height: var(--nav-h);       /* ← nav height: 64px */
    display: flex;
    align-items: center;
    padding: 0 var(--margin);
    /* No backdrop-filter here — it would prevent dropdown blur from working.
       The blur is handled by ::before instead. */
}

/* Pseudo-element carries the blur so the nav itself has no stacking context */
.nav::before {
    content: '';
    position: absolute;
    inset: -100px 0 0 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(8,8,15,0.90) 100px, transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

/* Solid background after scrolling 60px (added by JS) */
.nav.scrolled::before {
    background: rgba(8,8,15,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Logo wordmark */
.nav__logo {
    flex-shrink: 0;
    margin-right: auto;
    line-height: 0;
}

.nav__logo img {
    height: 27px;               /* 95% of 28px */
    width: auto;
    filter: brightness(0) invert(1);   /* force white */
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Individual nav links */
.nav__link {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.60);
    border-radius: 5px;
    line-height: 1.35;
    transition: color var(--ease), background var(--ease);
}

.nav__link:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

/* "Contact" CTA pill in nav */
.nav__cta {
    margin-left: 14px;
    padding: 8px 20px;
    background: var(--clr-accent);
    color: var(--clr-navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.88px;     /* 0.08em at 11px */
    text-transform: uppercase;
    border-radius: 100px;
    line-height: 15px;
    transition: background var(--ease), transform 0.15s ease, box-shadow 0.15s ease;
}

.nav__cta:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,193,230,0.25);
}


/* ============================================================
   7. NAV DROPDOWNS
   Appear on hover with backdrop blur matching the nav.
   Edit .nav__dropdown a to change item styles.
============================================================ */
.nav__item { position: relative; }

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 180px;
    background: rgba(8,8,15,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 300;
}

.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown menu items */
.nav__dropdown a {
    display: block;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.60);
    line-height: 1.35;
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease;
}

.nav__dropdown a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Disabled / coming-soon items — not clickable */
.nav__dd-item {
    display: block;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    line-height: 1.35;
    white-space: nowrap;
    cursor: default;
    user-select: none;
}

/* Disabled nav items */
.nav__link--disabled,
.mob-nav__parent--disabled { cursor: default; opacity: 0.45; }

/* Down-caret on links with a dropdown */
.nav__link--has-dd::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 5px;
    opacity: 0.55;
    transition: transform 0.2s ease;
}

.nav__item:hover .nav__link--has-dd::after {
    transform: rotate(225deg) translateY(1px);
}


/* ============================================================
   8. HERO SECTION
   Full-viewport. Text anchored bottom-left.
   Swap the background-image URL in the HTML to change photo.
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--margin) 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
    animation: hero-zoom 8s cubic-bezier(.25,.46,.45,.94) forwards;
}

/* Video variant of hero background */
video.hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sound toggle button */
.hero__sound-toggle {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__sound-toggle:hover {
    background: rgba(0,193,230,0.15);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(0,193,230,0.12);
}

.hero__sound-toggle:active {
    transform: scale(1.0);
    box-shadow: none;
}

.sound-icon {
    width: 20px;
    height: 20px;
}

/* Default (muted): show off icon, hide on icon */
.hero__sound-toggle .sound-icon--on  { display: none; }
.hero__sound-toggle .sound-icon--off { display: block; }

/* Unmuted: swap icons */
.hero__sound-toggle:not(.is-muted) .sound-icon--on  { display: block; }
.hero__sound-toggle:not(.is-muted) .sound-icon--off { display: none; }

@media (max-width: 620px) {
    .hero:has(video) {
        height: auto;
        min-height: 0;
        padding: 0;
    }
    video.hero__bg {
        position: relative;
        object-fit: contain;
    }
    .hero:has(video) .hero__headline,
    .hero:has(video) .hero__content {
        display: none;
    }
}

/* Dark gradient — improves text legibility */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(8,8,15,0.78) 0%, rgba(8,8,15,0.22) 55%, rgba(8,8,15,0.04) 100%),
        linear-gradient(to top,  rgba(8,8,15,0.92) 0%, rgba(8,8,15,0.18) 40%, transparent 65%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(18px);
    animation: hero-fade 0.9s 0.4s cubic-bezier(.22,.61,.36,1) forwards;
}

/* Main hero headline */
.hero__headline {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: #fff;
}


/* ============================================================
   9. ABOUT SECTION
   Centred single column.
============================================================ */
.about {
    padding: var(--section-v) var(--margin);
    text-align: center;
}

.about__inner {
    max-width: 720px;
    margin: 0 auto;
}

/* "Engineers of experiences…" heading */
.about__headline {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.6px;
    margin-bottom: 18px;
}



/* ============================================================
   10. SECTION HEADER (shared)
   Used above Services and Highlights.
   Left: eyebrow + title.  Right: optional "View all" link.
============================================================ */
.section-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.section-hd__left { flex: 1; }

/* "Transforming cities…" / "See our highlights" */
.section-hd__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.6px;
}

/* "View all projects →" */
.section-hd__link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 14px;
    transition: gap var(--ease), opacity var(--ease);
}

.section-hd__link:hover { gap: 11px; opacity: 0.8; }


/* ============================================================
   11. SERVICE CARDS  (3-column portrait grid)
   Labels hidden until hover — overlay and text fade in.
   Adjust gap: to change spacing between cards.
============================================================ */
.services { padding: 0 var(--margin) var(--section-v); }

.cards-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;                  /* ← gap between service cards */
}

.project-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.project-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}

.project-card:hover .project-card__img { transform: scale(1.05); }

/* Gradient overlay — more opaque on hover to support text */
.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,15,0.92) 0%, rgba(8,8,15,0.5) 35%, transparent 65%);
    transition: background 0.5s ease;
    z-index: 1;
}

.project-card:hover .project-card__overlay {
    background: linear-gradient(to top, rgba(8,8,15,0.95) 0%, rgba(8,8,15,0.7) 50%, rgba(8,8,15,0.3) 80%);
}

/* Card text — pinned to bottom, slides up on hover to reveal desc */
.project-card__text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 24px;
    z-index: 2;
    transform: translateY(40px);
    transition: transform 0.45s cubic-bezier(.25,.46,.45,.94);
}

.project-card:hover .project-card__text {
    transform: translateY(0);
}

/* Hide desc and CTA until hover */
.project-card__desc,
.project-card__cta {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.05s, max-height 0.45s ease;
}

.project-card:hover .project-card__desc {
    opacity: 1;
    max-height: 120px;
}

.project-card:hover .project-card__cta {
    opacity: 1;
    max-height: 30px;
}

/* Service card link wrapper */
.project-card__link {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

/* Service card label */
.project-card__name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    color: #fff;
    line-height: 28px;
    margin-bottom: 8px;
}

.project-card__sub {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 20px;
    margin-bottom: 12px;
}

.project-card__desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 20px;
    margin-bottom: 16px;
}

.project-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-accent);
    letter-spacing: 0.5px;
}


/* ============================================================
   12. HIGHLIGHTS GRID  (asymmetric layout)
   Row 1: large left (2 cols) + small right (1 col)
   Row 2: small left (1 col)  + large right (2 cols)
   Adjust grid-auto-rows to change card heights.
============================================================ */
.highlights { padding: 0 var(--margin) var(--section-v); }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 360px;      /* ← height of each row of cards */
    gap: 24px;                  /* ← gap between highlight cards */
}

/* Column placement */
.hl-card--wac     { grid-column: 1 / 3; }   /* large — row 1 left  */
.hl-card--hsbc    { grid-column: 3 / 4; }   /* small — row 1 right */
.hl-card--odyssea { grid-column: 1 / 2; }   /* small — row 2 left  */
.hl-card--fide    { grid-column: 2 / 4; }   /* large — row 2 right */

.hl-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border-radius: 2px;
}

.hl-card__img {
    position: absolute;
    inset: -1px;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}

.hl-card:hover .hl-card__img { transform: scale(1.05); }

/* Gradient — hidden until hover */
.hl-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,15,0.88) 0%, rgba(8,8,15,0.40) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.hl-card:hover .hl-card__overlay { opacity: 1; }

/* Card text — hidden until hover, slides up */
.hl-card__text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 22px;
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hl-card:hover .hl-card__text { opacity: 1; transform: translateY(0); }

/* Highlight card title */
.hl-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    color: #fff;
}

/* Highlight card subtitle */
.hl-card__sub {
    margin-top: 0;          /* ← space between title and subtitle */
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
    color: #fff;
}


/* ============================================================
   13. CTA BAND
   Centred strip between content and footer.
============================================================ */
.cta-band {
    padding: var(--section-v) var(--margin);
    text-align: center;
    position: relative;
}

.cta-band::before,
.cta-band::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(var(--max-w) - 2 * var(--margin));
    max-width: 100%;
    height: 1px;
    background: var(--clr-border);
}

.cta-band::before { top: 0; }
.cta-band::after  { bottom: 0; }

.cta-band--light {
    background: var(--clr-bg-light);
}

.cta-band--light::before { background: rgba(3,29,69,0.12); }
.cta-band--light::after  { display: none; }

.cta-band--light .cta-band__headline {
    color: var(--clr-navy);
}

/* "Let's create defining moments" — Figma spec: 36px / 40px */
.cta-band__headline {
    font-size: 36px;            /* ← CTA headline size */
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 32px;
}

/* Outline / ghost CTA button */
.btn--outline {
    display: inline-flex;
    align-items: center;
    padding: 11px 28px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;     /* 0.1em at 11px */
    text-transform: uppercase;
    line-height: 15px;
    background: transparent;
    color: var(--clr-accent);
    border: 1.5px solid var(--clr-accent);
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--outline:hover {
    background: var(--clr-accent);
    color: var(--clr-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,193,230,0.28);
}


/* ============================================================
   14. FOOTER
   3-column: brand + contact | join us | follow us.
   Adjust grid-template-columns to change column widths.
============================================================ */
.footer {
    background: var(--clr-bg-2);
    padding: 56px var(--margin) 28px;
}

.footer--light {
    background: #e8e8e4;
    border-top: none;
}

.footer--light .footer__logo img {
    filter: none;
}

.footer--light .footer__top {
    border-bottom-color: rgba(3,29,69,0.12);
}

.footer--light .footer__contact-info,
.footer--light .footer__contact-info a { color: #888; }
.footer--light .footer__contact-info a:hover { color: var(--clr-navy); }

.footer--light .footer__col-label { color: var(--clr-navy); }

.footer--light .footer__join-text { color: #888; }

.footer--light .social-icon { border-color: #ccc; }
.footer--light .social-icon svg { fill: #888; }
.footer--light .social-icon:hover { border-color: var(--clr-accent); background: rgba(0,193,230,0.08); }
.footer--light .social-icon:hover svg { fill: var(--clr-accent); }

.footer--light .footer__copy,
.footer--light .footer__legal,
.footer--light .footer__legal a { color: #aaa; }
.footer--light .footer__legal a:hover { color: #666; }

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1fr;    /* ← column proportions */
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--clr-border);
}

.footer__logo {
    margin-bottom: 14px;
    line-height: 0;
}

.footer__logo img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);   /* force white */
}

.footer__contact-info {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 18px;
}

.footer__contact-info a { color: rgba(255,255,255,0.50); transition: color 0.15s ease; }
.footer__contact-info a:hover { color: #fff; }

.footer__col-label {
    color: var(--clr-dim);
    margin-bottom: 12px;
}

.footer__join-text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.8;
}
.footer__join-text a:hover { opacity: 1; }

.footer__join-text {
    font-size: 14px;
    max-width: 13em;
    color: rgba(255,255,255,0.50);
    line-height: 18px;
}

/* Social icon row */
.footer__socials { display: flex; align-items: center; gap: 8px; }

.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    border-color: var(--clr-accent);
    background: rgba(0,193,230,0.08);
    transform: translateY(-2px);
}

.social-icon svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.50); transition: fill 0.2s ease; }
.social-icon:hover svg { fill: var(--clr-accent); }

.social-icon--lg { width: 42px; height: 42px; border-color: #ccc; }
.social-icon--lg svg { width: 16px; height: 16px; fill: #888; }
.social-icon--lg:hover { border-color: var(--clr-accent); background: rgba(0,193,230,0.08); }
.social-icon--lg:hover svg { fill: var(--clr-accent); }

.contact-socials { display: flex; align-items: center; gap: 8px; margin-top: 16px; }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 24px;
}

.footer__copy,
.footer__legal { font-size: 11px; color: rgba(255,255,255,0.22); line-height: 15px; }
.footer__legal a { color: rgba(255,255,255,0.22); transition: color 0.15s ease; }
.footer__legal a:hover { color: rgba(255,255,255,0.55); }


/* ============================================================
   16. PORTFOLIO PAGE
============================================================ */

/* ── Page header ──────────────────────────────────────────── */
.portfolio-hero {
    padding-top: calc(var(--nav-h) + var(--section-v));
}

.portfolio-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--margin) 40px;
}

.portfolio-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--clr-text);
    margin: 16px 0 24px;
}

.portfolio-hero__body {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--clr-muted);
    max-width: var(--w-narrow);
    margin-bottom: 40px;
}

/* ── Filter tabs ──────────────────────────────────────────── */
.portfolio-filter {
    display: flex;
    gap: 32px;
    list-style: none;
}

.portfolio-filter__item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--ease);
}

.portfolio-filter__item:hover { color: rgba(255,255,255,0.75); }
.portfolio-filter__item--active { color: var(--clr-text); }

.portfolio-filter__rule {
    border: none;
    border-top: 1px solid var(--clr-border);
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ── Mosaic grid ──────────────────────────────────────────── */
.portfolio-grid-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--margin) var(--section-v);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 360px;
    gap: 24px;
}

/* Row 1 */
.pg-item--1 { grid-column: 1 / 3; }
.pg-item--2 { grid-column: 3 / 4; }

/* Row 2 */
.pg-item--3 { grid-column: 1 / 2; }
.pg-item--4 { grid-column: 2 / 4; }

/* Row 3 */
.pg-item--5 { grid-column: 1 / 3; }
.pg-item--7 { grid-column: 3 / 4; }

/* Row 4 — three equal columns */
.pg-item--8 { grid-column: 1 / 2; }
.pg-item--9 { grid-column: 2 / 3; }
.pg-item--10 { grid-column: 3 / 4; }

/* Row 5 */
.pg-item--11 { grid-column: 1 / 3; }
.pg-item--12 { grid-column: 3 / 4; }

.pg-item {
    overflow: hidden;
    background: #111;
}

.pg-item__bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.pg-item:hover .pg-item__bg {
    transform: scale(1.04);
}


/* ============================================================
   17. CASE STUDY PAGE  (wac-case-study.html and future case studies)
============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.cs-hero {
    position: relative;
    height: 720px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--margin) 80px;
}

.cs-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}

.cs-hero__gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 460px;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(13,13,13,0.45) 50%, transparent 100%);
    z-index: 1;
}

.cs-hero__text {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
}

.cs-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 88px;
    letter-spacing: -1px;
    color: #fff;
}

.cs-hero__sub {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b0b0af;
}

/* ── Intro ────────────────────────────────────────────────── */
.cs-intro {
    padding: var(--section-v) var(--margin);
    text-align: center;
}

.cs-intro__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.cs-intro__headline {
    font-size: 36px;
    font-weight: 800;
    line-height: 44px;
    letter-spacing: -1px;
    color: #fff;
    margin: 12px 0 32px;
}

.cs-intro__body {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cs-intro__body p + p { margin-top: 20px; }

/* ── Stats ────────────────────────────────────────────────── */
.cs-stats {
    padding: var(--section-v) var(--margin);
}

.cs-stats__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.cs-stat__num {
    display: block;
    font-size: 72px;
    font-weight: 800;
    line-height: 72px;
    letter-spacing: -2px;
    color: #fff;
    text-align: center;
}

.cs-stat__label {
    display: block;
    text-align: center;
    line-height: 1.6;
}

/* ── Gallery ──────────────────────────────────────────────── */
.cs-gallery {
    padding: 0 var(--margin) 0;
}

.cs-gallery__wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: hidden;
}

.cs-gallery__track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cs-gallery__slide {
    flex-shrink: 0;
    width: 100%;
}

.cs-gallery__img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.cs-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 24px 0 var(--section-v);
}

.cs-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
}

.cs-gallery__dot--active {
    background: #fff;
}

/* ── Content (sidebar + body) ─────────────────────────────── */
.cs-content {
    padding: var(--section-v) var(--margin);
    border-top: 1px solid var(--clr-border);
}

.cs-content__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
}

/* Sidebar */
.cs-sidebar__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 40px;
    color: #fff;
    margin-bottom: 80px;
}

.cs-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cs-meta dt {
    margin-top: 28px;
    margin-bottom: 2px;
}

.cs-meta dt:first-child { margin-top: 0; }

.cs-meta dd {
    margin: 0;
}

/* Body narrative */
.cs-body p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: var(--clr-muted);
    margin-bottom: 20px;
    max-width: var(--w-narrow);
}

.cs-body h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
    margin: 36px 0 8px;
    max-width: var(--w-narrow);
}

.cs-body > h3:first-child {
    margin-top: 0;
}

/* Services */
.cs-services {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-border);
}

.cs-services__heading,
.cs-targets__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;
    margin-bottom: 0;
}

.cs-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
}

.cs-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cs-service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs-service__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}

/* KIN Targets */
.cs-targets {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-border);
    max-width: 600px;
}

.cs-targets__list {
    list-style: disc;
    padding-left: 20px;
}

.cs-targets__list li {
    margin-bottom: 10px;
}

.cs-targets__list li::marker {
    color: #fff;
}

/* Project prev/next navigation */
.cs-proj-nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    border-top: 1px solid var(--clr-border);
    padding-top: 48px;
}

.cs-proj-nav__link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    transition: opacity 0.2s ease, letter-spacing 0.2s ease;
}

.cs-proj-nav__link:hover {
    opacity: 0.75;
    letter-spacing: 2.5px;
}

@media (max-width: 620px) {
    .cs-proj-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    /* Hide project titles — show BACK / NEXT in teal instead */
    .cs-proj-nav__link {
        font-size: 0;
        letter-spacing: 0;
        color: var(--clr-accent);
    }
    .cs-proj-nav__link::before {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        line-height: 1;
        color: var(--clr-accent);
    }
    .cs-proj-nav__link--prev::before { content: "\2190\00a0\00a0 Back"; }
    .cs-proj-nav__link--next::before { content: "Next \00a0\00a0\2192"; }
}


/* ============================================================
   18. SERVICES PAGE
============================================================ */

.svc-hero {
    padding: calc(var(--nav-h) + var(--section-v)) var(--margin) 80px;
}

.svc-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.svc-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--clr-text);
    margin: 16px 0 0;
}

.mgmt-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--clr-navy);
    margin-bottom: 24px;
}

.svc-hero__sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--clr-muted);
    margin-top: 16px;
}

/* ── Large feature image ───────────────────────────────────── */
.svc-image {
    padding: 0 var(--margin) var(--section-v);
}

.svc-image__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: hidden;
}

.svc-image__img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

/* ── Three-column service cards ────────────────────────────── */
.svc-cards {
    padding: var(--section-v) var(--margin);
}

.svc-cards__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.svc-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.svc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.svc-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--clr-text);
}

.svc-card__body {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--clr-muted);
}

.svc-card__link {
    margin-top: auto;
}
.svc-card__link:hover { opacity: 0.75; }

/* ── Light content section ─────────────────────────────────── */
.svc-content {
    background: var(--clr-bg-light);
    padding: var(--section-v) 0;
    width: 100%;
}

.svc-content__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--margin);
}

/* ── Body text standard: 16px / 400 / line-height 22px ──────
   Colour: #555 on light bg, var(--clr-muted) on dark bg.
   Reference: .cs-body p on the WAC case study page.
─────────────────────────────────────────────────────────── */

.svc-intro {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--clr-navy);
    max-width: var(--w-mid);
    margin-bottom: 56px;
}

/* Expertise spans */
.svc-expertise {
    margin-bottom: 56px;
}

.svc-expertise__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: var(--clr-navy);
    margin-bottom: 20px;
}

.svc-expertise__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}

.svc-expertise__list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}


/* Detail rows */
.svc-detail {
    border-top: 1px solid rgba(0,0,0,0.10);
}

.svc-detail__item {
    display: grid;
    grid-template-columns: 240px 600px;
    gap: 56px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}

.svc-detail__term {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: var(--clr-navy);
}


.svc-detail__desc p { margin-bottom: 10px; }

/* 6-column horizontal layout for Design & Build process steps */
.svc-detail--cols {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(0,0,0,0.10);
    padding-top: 32px;
    border-bottom: none;
}
.svc-detail--cols .svc-detail__item {
    display: block;
    padding: 0;
    border-bottom: none;
    grid-template-columns: unset;
}

.svc-detail__list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}



/* ============================================================
   19. RESPONSIVE — MOBILE (≤ 767px)
============================================================ */

/* Hidden on desktop, shown via media query below */
.nav__hamburger { display: none; }

/* Prevent scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

@media (max-width: 1100px) {

    /* ── Spacing tokens ──────────────────────────────────────── */
    :root {
        --margin: 64px;
        --section-v: 60px;
    }

    /* ── Navigation ──────────────────────────────────────────── */
    .nav { padding: 0 20px; }

    /* Hide desktop list entirely on mobile */
    .nav__list { display: none; }

    /* Hamburger — sits above overlay (z-index: 200) */
    .nav__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
        margin-left: auto;
        z-index: 200;
        position: relative;
    }
    .nav__hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Hero / page headlines — all pages ──────────────────── */
    .hero { padding-bottom: 56px; }
    .hero__headline,
    .portfolio-hero__title,
    .cs-hero__title,
    .svc-hero__title,
    .about-hero__title,
    .corp-hero__title,
    .ir-hero__title,
    .contact-hero__title,
    .mv-split__heading,
    .mgmt-hero__title,
    .media-hero__title,
    .privacy-hero__title {
        font-size: 64px;
        line-height: 68px;
        letter-spacing: -2px;
    }

    /* ── Services page — stays 3-col until mobile ───────────── */
    .svc-image__img          { height: 240px; }
    .svc-expertise__cols     { grid-template-columns: 1fr; }
    .svc-detail__item        { grid-template-columns: 1fr; gap: 8px; }
    .svc-detail--cols        { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* ── About ───────────────────────────────────────────────── */
    .about__headline { font-size: 22px; line-height: 28px; }

    /* ── Section header ──────────────────────────────────────── */
    .section-hd { flex-direction: column; align-items: flex-start; gap: 10px; }
    .section-hd__title { white-space: normal; }

    /* ── Service cards stay 3-col until mobile ──────────────── */

    /* ── Highlights (asymmetric → 1-col) ────────────────────── */
    .highlights-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .hl-card--wac,
    .hl-card--hsbc,
    .hl-card--odyssea,
    .hl-card--fide { grid-column: 1 / 2; }

    /* ── Portfolio grid (3-col → 1-col) ─────────────────────── */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 280px;
    }
    .pg-item--1, .pg-item--2, .pg-item--3,
    .pg-item--4, .pg-item--5, .pg-item--6,
    .pg-item--7, .pg-item--8, .pg-item--9,
    .pg-item--10, .pg-item--11,
    .pg-item--12 { grid-column: 1 / 2; grid-row: auto; }

    /* ── CTA band ────────────────────────────────────────────── */
    .cta-band__headline {
        font-size: 26px;
        line-height: 32px;
        white-space: normal;
    }

    /* ── Footer — 2-col: contact left, join+follow right ────── */
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__top > div:first-child { grid-row: span 2; }
    .footer__bottom { justify-content: flex-end; }

    /* ── WAC case study — tablet ─────────────────────────────── */
    .cs-stats__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px 24px;
        justify-items: center;
    }
    .cs-gallery__img         { height: 360px; }
    .cs-content__inner       { grid-template-columns: 1fr; gap: 40px; }
    .cs-sidebar__title       { margin-bottom: 32px; }
    .cs-body p               { max-width: 100%; }
}

/* ── WAC case study — phone ──────────────────────────────────── */
@media (max-width: 620px) {
    :root { --margin: 32px; }
    .cs-stats__inner         { grid-template-columns: 1fr; }
    .cs-stat__num            { font-size: 56px; line-height: 56px; }
    .cs-gallery__img         { height: 240px; }
    .cs-services__grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services detail cols — phone ───────────────────────────── */
@media (max-width: 620px) {
    .svc-detail--cols        { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .svc-intro               { font-size: 18px; }
    .svc-cards__grid         { grid-template-columns: 1fr; gap: 40px; }
    .cards-three             { grid-template-columns: 1fr; }
}

/* Touch devices — labels always visible (no hover available) */
@media (hover: none) {
    .hl-card__overlay        { opacity: 1; }
    .hl-card__text           { opacity: 1; transform: translateY(0); }
    .project-card__overlay   { opacity: 1; }
    .project-card__text      { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   16. LIGHT NAV (nav--light modifier)
   Used on light-background pages like Corporate Information.
============================================================ */

.nav--light::before {
    background: color-mix(in srgb, var(--clr-bg-light) 92%, transparent);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav--light .nav__logo img { filter: none; }

.nav--light.scrolled::before {
    background: color-mix(in srgb, var(--clr-bg-light) 98%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Dark logo on light nav */

/* Dark links */
.nav--light .nav__link {
    color: rgba(3,29,69,0.55);
}

.nav--light .nav__link:hover {
    color: var(--clr-navy);
    background: rgba(3,29,69,0.06);
}

/* Dropdown — light background, dark text */
.nav--light .nav__dropdown {
    background: color-mix(in srgb, var(--clr-bg-light) 96%, transparent);
    border: 1px solid rgba(3,29,69,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav--light .nav__dropdown a,
.nav--light .nav__dd-item {
    color: rgba(3,29,69,0.55);
}

.nav--light .nav__dropdown a:hover {
    color: var(--clr-navy);
    background: rgba(3,29,69,0.05);
}

.nav--light .nav__dd-item--disabled {
    color: rgba(3,29,69,0.25);
}

.nav--light .nav__dd-item--active {
    color: var(--clr-accent);
}

/* Hamburger — dark bars on light bg */
.nav--light .nav__hamburger span {
    background: var(--clr-navy);
}

/* Hamburger bar colour on light pages */
.nav--light .nav__hamburger span { background: var(--clr-navy); }

/* ── Mobile / tablet overlay ────────────────────────────────
   Completely separate from desktop .nav__dropdown.
   No shared classes — zero bleed from desktop styles.
============================================================ */
.mob-nav {
    display: none; /* shown only in mobile media query */
}

@media (max-width: 1100px) {

    /* Hide desktop list, show hamburger */
    .nav__list { display: none; }
    .nav__cta  { display: none; }
    .nav__hamburger { display: flex; }
    .nav--light .nav__hamburger span { background: var(--clr-navy); }
    .nav--light .nav__hamburger.is-open span { background: #fff; }

    /* Overlay */
    .mob-nav {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: fixed;
        inset: 0;
        background: var(--clr-bg);
        padding: 80px 32px 48px;
        overflow-y: auto;
        z-index: 199;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .mob-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    /* Nav group */
    .mob-nav__group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Parent link */
    .mob-nav__parent {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 30px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        color: #dddddd;
        text-decoration: none;
        line-height: 1;
    }
    .mob-nav__parent:hover { color: #fff; }

    /* Child link */
    .mob-nav__child {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #dddddd;
        text-decoration: none;
        line-height: 1;
    }
    .mob-nav__child:hover { color: #fff; }

    /* Contact CTA */
    .mob-nav__cta {
        display: inline-flex;
        align-self: center;
        margin-top: 8px;
        padding: 15px 40px;
        background: var(--clr-accent);
        color: #fff;
        border-radius: 100px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        text-decoration: none;
    }
}


/* ============================================================
   17. CORPORATE INFORMATION PAGE
============================================================ */

.corp-page {
    background: var(--clr-bg-light);
    min-height: 100vh;
}

/* Hero / intro band */
.corp-hero {
    padding: calc(var(--nav-h) + 64px) var(--margin) 56px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.corp-hero--tight {
    padding: calc(var(--nav-h) + 40px) var(--margin) 32px;
}

.corp-hero .eyebrow {
    color: var(--clr-accent);
    margin-bottom: 16px;
}

.corp-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--clr-navy);
}

.corp-hero__sub {
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    max-width: 640px;
    margin-top: 20px;
}

/* Group photo banner */
.corp-banner {
    padding: 0 var(--margin);
    max-width: var(--max-w);
    margin: 0 auto 48px;
}

.corp-banner__img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Section (Board / Executive) */
.corp-section {
    padding: 0 var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
}

.corp-section__heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(3,29,69,0.12);
}

/* Person grid */
.corp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.corp-grid--4col { grid-template-columns: repeat(4, 1fr); }
.corp-grid--team { grid-template-columns: repeat(5, 1fr); gap: 40px 32px; }
.corp-grid--team-4 { grid-template-columns: repeat(4, 1fr); gap: 40px 32px; }

/* Chairman — prominent horizontal card */
.corp-chair {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(3,29,69,0.10);
}

.corp-chair__photo {
    width: 220px;
    flex-shrink: 0;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

.corp-chair__info {
    padding-top: 8px;
}

.corp-chair__info .corp-card__bio {
    text-align: left;
}

.corp-featured--4col { grid-template-columns: 1fr 3fr; }
.corp-featured--4col .corp-card__bio { max-width: var(--w-narrow); }

/* Person card */
.corp-card { text-align: center; }

.corp-card__photo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
    margin: 0 auto 16px;
}

.corp-card__name {
    margin-bottom: 4px;
}

.corp-card__title {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-bottom: 10px;
    line-height: 1.4;
}

.corp-card__toggle {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.corp-card__toggle:hover { opacity: 0.75; }

/* Bio panel — hidden by default, revealed by JS */
.corp-card__bio {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(3,29,69,0.10);
    text-align: left;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
    margin-top: 0;
    padding-top: 0;
    border-top-color: transparent;
}

.corp-card__bio.is-open {
    max-height: 600px;
    opacity: 1;
    margin-top: 12px;
    padding-top: 12px;
    border-top-color: rgba(3,29,69,0.10);
}

.corp-card__bio p {
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    color: #555;
    margin-bottom: 10px;
}

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

/* Hero body text + rule */
.corp-hero__body {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--clr-navy);
    max-width: var(--w-mid);
    margin-top: 24px;
}

.corp-hero-rule {
    border: none;
    border-top: 1px solid rgba(3,29,69,0.12);
    margin: 0 var(--margin);
    max-width: calc(var(--max-w) - var(--margin) * 2);
    margin-left: auto;
    margin-right: auto;
}

/* Featured person card */
.corp-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(3,29,69,0.12);
}

.corp-featured__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
}

.corp-featured__content {
    padding-top: 8px;
    grid-column: 2 / 4;
}

.corp-featured__content .corp-card__bio {
    max-width: var(--w-narrow);
}

/* Tablet */
@media (max-width: 1100px) {
    .corp-hero { padding-top: calc(var(--nav-h) + 48px); }
    .corp-hero--tight { padding-top: calc(var(--nav-h) + 36px); }
    .corp-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .corp-grid--team { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
    .corp-grid--team-4 { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .corp-chair { gap: 24px; }
    .corp-chair__photo { width: 180px; }
    .corp-grid--4col { grid-template-columns: repeat(2, 1fr); }
    .corp-featured--4col { grid-template-columns: 1fr; }
    .corp-featured { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .corp-banner__img { max-height: 280px; }
}

/* Mobile */
@media (max-width: 620px) {
    .corp-grid { grid-template-columns: 1fr; }
    .corp-grid--team { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
    .corp-grid--team-4 { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
    .corp-chair { flex-direction: column; align-items: center; text-align: center; }
    .corp-chair__photo { width: 200px; }
    .corp-chair__info { text-align: center; }
    .corp-hero__title { letter-spacing: -1px; }
    .corp-featured { grid-template-columns: 1fr; gap: 24px; }
    .corp-featured__content { grid-column: 1; }
    .corp-banner__img { max-height: 200px; }
}


/* ============================================================
   18. INVESTOR RELATIONS PAGE
============================================================ */

/* Hero */
.ir-hero {
    padding: calc(var(--nav-h) + 64px) var(--margin) 56px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.ir-hero .eyebrow { margin-bottom: 16px; }

.ir-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--clr-navy);
    margin-bottom: 28px;
}

.ir-hero__body {
    max-width: 800px;
}

.ir-hero__body p {
    margin-bottom: 16px;
}

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

/* Video thumbnail */
.ir-video {
    padding: 0 var(--margin) 80px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.ir-video__wrap {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.ir-video__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.ir-video__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    background: rgba(0,0,0,0.12);
    transition: background 0.25s ease;
}

.ir-video__wrap:hover .ir-video__play { background: rgba(0,0,0,0.22); }

.ir-video__btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ir-video__wrap:hover .ir-video__btn {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.ir-video__btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 4px; /* optical offset for play triangle */
}

/* Content: sidebar + sections */
.ir-content {
    padding: 0 var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    align-items: start;
}

/* Sidebar nav */
.ir-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.ir-sidebar__link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(3,29,69,0.10);
    transition: color 0.15s ease;
}

.ir-sidebar__link:first-child { border-top: 1px solid rgba(3,29,69,0.10); }
.ir-sidebar__link:hover { color: var(--clr-accent); }
.ir-sidebar__link--active { color: var(--clr-accent); }

/* Announcement sections */
.ir-section {
    margin-bottom: 56px;
}

.ir-section:last-child { margin-bottom: 0; }

.ir-section__heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(3,29,69,0.12);
}

.ir-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(3,29,69,0.08);
}

.ir-item__meta {
    margin-bottom: 8px;
}

.ir-item__meta span { color: var(--clr-accent); }

.ir-section { max-width: var(--w-narrow); }


.ir-item__title a {
    color: var(--clr-accent);
    transition: opacity 0.15s ease;
}

.ir-item__title a:hover { opacity: 0.75; }

.ir-view-all {
    display: none;
    justify-content: flex-end;
    margin-top: 12px;
}


.ir-view-all a:hover { opacity: 0.75; }

/* Mobile */
@media (max-width: 1100px) {
    .ir-hero        { padding-top: calc(var(--nav-h) + 48px); }
    .ir-video__img  { height: 360px; }
    .ir-content     { grid-template-columns: 1fr; gap: 40px; }
    .ir-sidebar__nav { display: none; }
}

@media (max-width: 620px) {
    .ir-video__img  { height: 240px; }
    .ir-hero__title,
    .media-hero__title,
    .privacy-hero__title { letter-spacing: -1px; }
}


/* ============================================================
   18a. IR BELOW — Corporate Structure + Prospectus
============================================================ */
.ir-below {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px var(--margin) var(--section-v);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px 80px;
    align-items: start;
}

.ir-below__col { min-width: 0; }

.ir-below__heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--clr-navy);
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid #b0b0af;
}

/* Corporate structure diagram */
.ir-corp-structure__img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 140px;   /* side padding only — keeps top aligned with prospectus PDFs */
}

/* Remove padding on mobile */
@media (max-width: 620px) {
    .ir-corp-structure__img { padding: 0; }
}

/* Prospectus list items */
.ir-prospectus__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 0 40px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.ir-prospectus__item:last-child { padding-bottom: 0; }
.ir-prospectus__item:hover { opacity: 0.7; }

.ir-prospectus__icon {
    width: 32px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

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

.ir-prospectus__date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.ir-prospectus__title,
.ir-sgx__name {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    color: var(--clr-navy);
}

/* Corporate Structure — full-width feature slot */
.ir-corp-feature {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--margin) 80px;
}

.ir-corp-figure {
    display: block;
    max-width: 800px;
    margin: 0;
}

.ir-corp-feature .ir-corp-structure__img {
    display: block;
    width: 100%;
    height: auto;
}

.ir-corp-label { margin-bottom: 40px; }

/* SGX Announcements */
.ir-sgx__list {
    display: flex;
    flex-direction: column;
}

.ir-sgx__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.ir-sgx__item:first-child { padding-top: 0; }
.ir-sgx__item:hover { opacity: 0.75; }

.ir-sgx__more {
    display: block;
    text-align: right;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    text-decoration: none;
    transition: opacity 0.2s ease, letter-spacing 0.2s ease;
}

.ir-sgx__more:hover {
    opacity: 0.75;
    letter-spacing: 2.5px;
}

.ir-sgx__date {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.ir-sgx__ext {
    margin-left: 8px;
    vertical-align: -0.2em;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .ir-below { grid-template-columns: 1fr; gap: 60px; padding-top: 40px; }
}

@media (max-width: 620px) {
    .ir-below__heading { font-size: 24px; line-height: 32px; margin-bottom: 28px; }
    .ir-prospectus__title,
    .ir-sgx__name { font-size: 16px; line-height: 22px; }
    .ir-sgx__ext { display: none; }
}

/* ============================================================
   18b. FINANCIAL HIGHLIGHTS PAGE
============================================================ */

.fh-content {
    padding: 0 var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
}

/* Two-column row: heading left, body right */
.fh-row {
    display: grid;
    grid-template-columns: 282px 1fr;
    gap: 80px;
    align-items: start;
    padding: 40px 0;
    border-top: 1px solid rgba(3,29,69,0.08);
}

.fh-row:first-child { border-top: none; }

.fh-row__heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--clr-navy);
    text-transform: capitalize;
    line-height: 1.3;
}

.fh-row__body {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #555;
}

.fh-row__body p { margin: 0; }

/* Financial table */
.fh-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #D5DCE8;
    background: #fff;
    font-size: 15px;
    line-height: 15px;
}

.fh-table th,
.fh-table td {
    padding: 14px 20px;
    border: 1px solid #D5DCE8;
    text-align: left;
    vertical-align: middle;
}

.fh-table thead th {
    background: #EDF1F8;
    font-weight: 600;
    font-size: 15px;
    color: var(--clr-navy);
}

.fh-table__label {
    font-weight: 600;
    color: var(--clr-navy);
}

.fh-table__period {
    font-weight: 600;
    color: var(--clr-navy);
}

.fh-table tbody tr:nth-child(even) { background: #F8F9FC; }

.fh-table tbody td:not(.fh-table__label) {
    font-weight: 300;
    color: #64748B;
}

/* Two-column variant (Stock Fundamentals) */
.fh-table--two-col .fh-table__label { width: 58%; }

/* Mobile */
@media (max-width: 1100px) {
    .fh-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 0;
    }
}

@media (max-width: 620px) {
    .fh-table { font-size: 13px; line-height: 13px; }
    .fh-table th, .fh-table td { padding: 10px 12px; }
}


/* ============================================================
   19. CONTACT PAGE
============================================================ */

.contact-page { background: var(--clr-bg-light); }

/* Hero */
.contact-hero {
    padding: calc(var(--nav-h) + 64px) var(--margin) 48px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.contact-hero .eyebrow { margin-bottom: 16px; }

.contact-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--clr-navy);
    margin-bottom: 12px;
}

.contact-hero__sub {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

/* Map */
.contact-map {
    padding: 0 var(--margin) 72px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.contact-map__frame {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
    filter: grayscale(15%);
}

/* Contact + form grid */
.contact-body {
    padding: 0 var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

/* Left: intro + details */
.contact-info__intro {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--clr-navy);
    margin-bottom: 40px;
    max-width: 340px;
}

.contact-detail { margin-bottom: 24px; }

.contact-detail__label {
    margin-bottom: 6px;
}


.contact-detail__value a {
    color: #555;
    transition: color 0.15s ease;
}

.contact-detail__value a:hover { color: var(--clr-navy); }

/* Right: form */
.contact-form { max-width: 560px; }

.contact-form__row { margin-bottom: 28px; }

.contact-form__label {
    display: block;
    margin-bottom: 10px;
}

.contact-form__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(3,29,69,0.20);
    padding: 8px 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-navy);
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form__input::placeholder { color: #bbb; }
.contact-form__input:focus { border-bottom-color: var(--clr-accent); }

.contact-form__textarea {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(3,29,69,0.12);
    border-radius: 4px;
    padding: 16px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-navy);
    outline: none;
    resize: vertical;
    min-height: 300px;
    transition: border-color 0.2s ease;
}

.contact-form__textarea::placeholder { color: #bbb; }
.contact-form__textarea:focus { border-color: var(--clr-accent); }

.contact-form__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: var(--clr-accent);
    color: var(--clr-navy);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form__submit:hover {
    background: #00afd0;
    transform: translateY(-1px);
}

.contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-form__status {
    display: none;
    font-size: 0.9rem;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 8px;
}

.contact-form__status--success {
    display: block;
    background: #e8f7f0;
    color: #1a7a4a;
    border: 1px solid #a8dfc0;
}

.contact-form__status--error {
    display: block;
    background: #fdf0f0;
    color: #c0392b;
    border: 1px solid #f5b7b1;
}

/* Bottom band: join + social */
.contact-bottom {
    border-top: 1px solid rgba(3,29,69,0.10);
    padding: var(--section-v) var(--margin);
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-bottom__heading {
    margin-bottom: 16px;
}

.contact-bottom__text {
    margin-bottom: 20px;
    max-width: 400px;
}


.contact-bottom__link:hover { opacity: 0.75; }

/* Minimal footer bar */
.contact-bar {
    border-top: 1px solid rgba(3,29,69,0.10);
    padding: 20px var(--margin);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.contact-bar p,
.contact-bar a {
    font-size: 11px;
    color: #aaa;
}

.contact-bar a:hover { color: #666; }

/* Tablet — keep 2 cols, compress left */
@media (max-width: 1100px) {
    .contact-hero         { padding-top: calc(var(--nav-h) + 48px); }
    .contact-body         { grid-template-columns: 1fr 1.4fr; gap: 48px; }
    .contact-info__intro  { font-size: 15px; line-height: 24px; max-width: none; }
    .contact-form         { max-width: none; }
    .contact-bottom       { gap: 40px; }
    .contact-map__frame   { height: 260px; }
}

/* Mobile — single column */
@media (max-width: 620px) {
    .contact-hero__title  { letter-spacing: -1px; }
    .contact-body         { grid-template-columns: 1fr; gap: 40px; }
    .contact-bottom       { grid-template-columns: 1fr; gap: 32px; }
    .contact-map__frame   { height: 200px; }
    .contact-bar          { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ============================================================
   15. KEYFRAME ANIMATIONS
============================================================ */

/* ============================================================
   20. ABOUT PAGE
============================================================ */

.about-page { background: var(--clr-bg-light); }

/* Hero */
.about-hero {
    padding: calc(var(--nav-h) + 64px) var(--margin) 80px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.about-hero .eyebrow--page { margin-bottom: 16px; }

.about-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2.5px;
    color: var(--clr-navy);
    margin-bottom: 20px;
}

.about-hero__sub {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--clr-navy);
    max-width: var(--w-mid);
}

/* Brand story — centred band */
.about-brand {
    padding: var(--section-v) var(--margin);
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.about-brand__heading {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--clr-navy);
    margin-bottom: 32px;
}

.about-brand__body {
    max-width: var(--w-mid);
    margin: 0 auto;
}

.about-brand__body p {
    margin-bottom: 16px;
}

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

/* Two-col mission section */
.about-mission {
    padding: 0 var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
    border-top: 1px solid rgba(3,29,69,0.10);
    padding-top: 56px;
}

.about-mission__heading {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--clr-navy);
}

.about-mission__body p {
    max-width: var(--w-narrow);
    margin-bottom: 16px;
}

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

.about-mission__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-top: 32px;
}


.about-mission__link:hover { opacity: 0.75; }

/* Timeline / Milestones section */
.about-timeline {
    padding: var(--section-v) var(--margin);
}

.about-timeline .eyebrow { margin-bottom: 16px; }

.about-timeline__heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    color: var(--clr-navy);
    margin-bottom: 80px;
}

.tl-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Row 1 — years */
.tl-years {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 120px;
}

.tl-year {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #b0b5be;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transform-origin: center center;
    transition: color 0.4s cubic-bezier(0.16,1,0.3,1),
                transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.tl-year.is-active {
    font-weight: 600;
    letter-spacing: 0;
    color: #00c1e6;
    transform: scale(2.1);
}

/* Row 2 — dots */
.tl-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px;
}

/* Grey track line — positioned by JS to span first→last dot */
.tl-dots__track {
    position: absolute;
    top: 50%;
    height: 1px;
    background: #c8cdd8;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Cyan progress fill along the line */
.tl-dots__fill {
    position: absolute;
    top: 50%;
    left: 120px;
    height: 2px;
    width: 0;
    background: #00c1e6;
    transform: translateY(-50%);
    transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}

.tl-dot {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #a8b8cc;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.45s cubic-bezier(0.16,1,0.3,1),
                transform 0.45s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
}

.tl-dot.is-active {
    background: #00c1e6;
    transform: scale(1.6);
    box-shadow: 0 0 0 5px rgba(0,193,230,0.18);
}

/* Ripple — continuous loop on active dot */
@keyframes tl-dot-ripple {
    0%   { box-shadow: 0 0 0 0   rgba(0,193,230,0.35); }
    70%  { box-shadow: 0 0 0 14px rgba(0,193,230,0);    }
    100% { box-shadow: 0 0 0 14px rgba(0,193,230,0);    }
}

.tl-dot.is-active {
    animation: tl-dot-ripple 1.8s ease-out infinite;
}

/* Row 3 — content */
.tl-content-row {
    position: relative;
    height: 156px;
}

.tl-content {
    position: absolute;
    width: 240px;
    top: 0;
    text-align: center;
    opacity: 1;
    transition: left 0.55s cubic-bezier(0.25,0.8,0.25,1),
                opacity 0.3s ease;
}

.tl-content.is-fading {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.tl-content__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #031d45;
    margin-bottom: 6px;
}

.tl-content__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: #6d6d69;
}

/* Leadership section */
.about-leadership {
    padding: var(--section-v) var(--margin);
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(3,29,69,0.10);
}

.about-leadership .eyebrow { margin-bottom: 12px; }

.about-leadership__heading {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--clr-navy);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.about-leadership__photo {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto 40px;
    object-fit: cover;
}

/* ── Vertical timeline (tablet & mobile) ─────────────────── */
.tl-vertical {
    display: none; /* hidden on desktop */
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 44px; /* space for dot column */
}

/* The vertical connector line */
.tl-vertical::before {
    content: '';
    position: absolute;
    left: 19px; /* padding-left(44) - dot-offset(35) + dot-radius(10) */
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #c8cdd8;
}

.tl-vitem {
    position: relative;
}

/* Dot */
.tl-vitem::before {
    content: '';
    position: absolute;
    left: -35px; /* pull back into the dot column */
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00c1e6;
    z-index: 1;
}

.tl-vitem__year {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00c1e6;
    display: block;
    margin-bottom: 4px;
}

.tl-vitem__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #031d45;
    margin: 0 0 6px;
}

.tl-vitem__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    color: #6d6d69;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-hero      { padding-top: calc(var(--nav-h) + 48px); }
    .about-mission   { grid-template-columns: 1fr; gap: 32px; }
    .about-mission__links { align-items: flex-start; }
}

/* Switch to vertical timeline below 860px */
@media (max-width: 860px) {
    .tl-wrap     { display: none; }
    .tl-vertical { display: flex; }
}

@media (max-width: 480px) {
    .about-hero__title { letter-spacing: -1.5px; }
    .tl-vertical  { gap: 32px; padding-left: 36px; }
    .tl-vitem::before { left: -27px; width: 14px; height: 14px; }
    .tl-vertical::before { left: 16px; } /* padding(36) - dot-offset(27) + dot-radius(7) */
    .tl-vitem__title { font-size: 18px; }
    .tl-vitem__desc  { font-size: 14px; line-height: 21px; }
}


/* ============================================================
   ABOUT — MISSION / VALUES / ACCREDITATIONS
============================================================ */

.mv-split {
    padding: calc(var(--nav-h) + var(--section-v)) var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: stretch;
}

.mv-split__img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.mv-split__content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mv-split__heading {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--clr-navy);
    margin: 16px 0 24px;
}

.values {
    padding: var(--section-v) var(--margin);
    max-width: var(--max-w);
    margin: 0 auto;
}

.values__heading {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--clr-navy);
    margin-bottom: 56px;
    padding-bottom: 20px;
    position: relative;
}

.values__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--clr-accent);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.values__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--clr-navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.accreditations {
    padding: var(--section-v) var(--margin);
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.accreditations__heading {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--clr-navy);
    margin-bottom: 16px;
}

.accreditations__body {
    max-width: var(--w-mid);
    margin: 0 auto;
}

.accreditations__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-top: 56px;
}

.accreditations__logo {
    height: 64px;
    filter: url(#logo-filter);
}

@media (max-width: 1100px) {
    .mv-split { grid-template-columns: 1fr; gap: 40px; }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .values__grid { grid-template-columns: 1fr; }
    .accreditations__logos { gap: 32px; }
}

/* ============================================================
   MEDIA COVERAGE PAGE
   --media-article-w controls the max-width of the right column.
   Change it in one place to reflow the whole page.
============================================================ */

:root {
    --media-article-w: 800px;
}

.media-hero {
    padding: calc(var(--nav-h) + 64px) var(--margin) 56px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.media-hero .eyebrow { margin-bottom: 16px; }

.media-hero__title,
.privacy-hero__title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--clr-navy);
    margin-bottom: 28px;
    color: var(--clr-navy);
}

/* Year-grouped content area */
.media-content {
    padding: 0 var(--margin) var(--section-v);
    max-width: var(--max-w);
    margin: 0 auto;
}

.media-year-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 80px;
    margin-bottom: 56px;
}

.media-year-group:last-child { margin-bottom: 0; }

.media-year {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--clr-navy);
    padding-top: 30px; /* aligns with article title, below meta line */
}

/* Right column — max-width controlled by variable */
.media-articles {
    max-width: var(--media-article-w);
}

/* Each article row */
.media-article {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(3,29,69,0.12);
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.media-articles .media-article:last-child {
    border-bottom: 1px solid rgba(3,29,69,0.12);
}

/* Add spacing between year groups — remove duplicate border */
.media-year-group + .media-year-group .media-articles .media-article:first-child {
    border-top: none;
}

.media-article:hover { opacity: 0.75; }

.media-article__body { flex: 1; min-width: 0; }

.media-article__meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 6px;
}

.media-article__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    color: var(--clr-navy);
}

.media-article__arrow {
    font-size: 16px;
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: 22px; /* align with title, below meta */
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .media-hero {
        padding: calc(var(--nav-h) + 48px) 48px 48px;
    }
    .media-content {
        padding: 0 48px var(--section-v);
    }
    .media-year-group {
        grid-template-columns: 80px 1fr;
        gap: 0 48px;
    }
}

@media (max-width: 640px) {
    .media-hero {
        padding: calc(var(--nav-h) + 40px) 24px 40px;
    }
    .media-content {
        padding: 0 24px 56px;
    }
    .media-year-group {
        grid-template-columns: 1fr;
        gap: 12px 0;
        margin-bottom: 40px;
    }
    .media-year {
        padding-top: 0;
        font-size: 22px;
    }
    .media-article {
        padding: 18px 0;
        gap: 16px;
    }
    .media-article__title {
        font-size: 15px;
        line-height: 22px;
    }
    .media-article__arrow {
        margin-top: 16px;
    }
}

/* ============================================================
   MANAGEMENT TEAM V2
============================================================ */

/* All cards share a white padded box */
.mgmt-card {
    background: #fff;
    padding: 24px;
}

/* Ko Chee Wah — horizontal card, full row */
.mgmt-card--featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.mgmt-card__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
    margin-bottom: 0;
}

.mgmt-card__content {
    padding-top: 8px;
}

/* 4-col grid for the rest */
.mgmt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Stack photo + text inside regular cards */
.mgmt-card--regular .mgmt-card__photo {
    aspect-ratio: 3 / 4;
    margin-bottom: 16px;
}

/* Bio — always visible, no toggle */
.mgmt-bio {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(3,29,69,0.10);
}

.mgmt-bio p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #555;
    margin-bottom: 12px;
}

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

/* Responsive */
@media (max-width: 1100px) {
    .mgmt-card--featured { grid-template-columns: 1fr 1fr; }
    .mgmt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .mgmt-card--featured { grid-template-columns: 1fr; }
    .mgmt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .mgmt-featured { grid-template-columns: 1fr; gap: 24px; }
    .mgmt-grid { grid-template-columns: 1fr; }
}

/* Hero background slow zoom on load */
@keyframes hero-zoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
}

/* Hero text fade up on load */
@keyframes hero-fade {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   GLOBAL H1 OVERRIDES — must be last to win cascade
============================================================ */

/* Light-page H1s: thicker rendering to match dark-page appearance */
.about-hero__title,
.corp-hero__title,
.ir-hero__title,
.contact-hero__title,
.mv-split__heading {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

/* ── Hero headline — phone clamp (placed last so it wins cascade) ── */
@media (max-width: 620px) {
    .hero__headline,
    .portfolio-hero__title,
    .cs-hero__title,
    .svc-hero__title,
    .about-hero__title,
    .corp-hero__title,
    .ir-hero__title,
    .contact-hero__title,
    .mv-split__heading,
    .mgmt-hero__title,
    .media-hero__title,
    .privacy-hero__title {
        font-size: clamp(32px, 14vw, 72px);
        line-height: 1.05;
        overflow-wrap: break-word;
    }
}

/* ── Mobile letter-spacing override for light-hero pages ─────── */
@media (max-width: 620px) {
    .media-hero__title,
    .privacy-hero__title { letter-spacing: -1px; }
}

/* ── Mobile: drop the trailing line after the last media article ── */
@media (max-width: 620px) {
    .media-year-group:last-child .media-articles .media-article:last-child {
        border-bottom: none;
    }
}

