/* ============================================================
   GCWAL — Variables, Reset & Typography
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== GCWAL - Premium Corporate Design ===== */
/* Dark theme — gold accents on near-black backgrounds */

/* ===== TABLE OF CONTENTS =====
   1. CUSTOM PROPERTIES
   2. RESET & BASE
   5. TYPOGRAPHY
   6. THEME TOGGLE IN NAV
   7. NAVIGATION
   8. PAGE HEADER
   9. HERO SECTION
   10. BUTTONS
   11. SECTIONS
   12. STATS STRIP
   13. GRID LAYOUTS
   14. CARDS
   15. CONTENT SECTIONS
   16. CONTENT TYPOGRAPHY
   17. TEAM CARDS
   18. BOOK CARDS
   19. CLIENT LIST
   20. PHOTO BANNER
   21. CTA SECTION
   22. FOOTER
   23. HERO ADDRESS CARD
   24. HERO CARD DETAILS
   25. WAL INTERACTIVE DIAGRAM
   26. VIDEO CONTAINER
   27. VIDEO THUMBNAIL / MODAL
   28. RESPONSIVE
   29. TIMELINE
   30. HIGHLIGHT BOX
   31. COUNTRY TAGS
   32. IMAGE PLACEHOLDER
   33. STORY PHOTO
   34. RESPONSIVE TIMELINE
   35. PHOTO COLLAGE
   36. JOURNAL PAGE
   37. CONFERENCES & EVENTS
   38. INTERACTIVE WAL LEARNING JOURNEY
   39. TRANSCRIPT: CREATIVE THINKING & ACTION RESEARCH SECTION
   40. HERO PLAY CARD & VIDEO MODAL
*/

/* ===== CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors */
    --gold: #ffb800;
    --light-gold: #f5f0ea;
    --crimson: #8b0000;
    --crimson-dark: #3d0000;
    --crimson-bright: #c0392b;

    /* Dark Colors */
    --dark: #000000;
    --dark-card: #0f0f0f;
    --dark-surface: #1a1a1a;

    /* Light Colors */
    --cream: #faf6f6;
    --text-dark: #1a1a1a;

    /* White */
    --white: #ffffff;

    /* White Opacity (for dark backgrounds) */
    --white-90: rgba(255, 255, 255, 0.9);
    --white-85: rgba(255, 255, 255, 0.85);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-75: rgba(255, 255, 255, 0.75);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-65: rgba(255, 255, 255, 0.65);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-45: rgba(255, 255, 255, 0.45);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-35: rgba(255, 255, 255, 0.35);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-25: rgba(255, 255, 255, 0.25);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-12: rgba(255, 255, 255, 0.12);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-07: rgba(255, 255, 255, 0.07);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-04: rgba(255, 255, 255, 0.04);

    /* Borders */
    --border-dark: var(--white-08);
    --border-light: var(--black-10);

    /* Black Opacity */
    --black-10: rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary:
        "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Noto Serif", Georgia, "Times New Roman", serif;
    --font-label: "Plus Jakarta Sans", "Work Sans", sans-serif;
    --font-body: "Work Sans", sans-serif;
    --font-serif: "Noto Serif", Georgia, serif;

    /* Type Scale */
    --fs-2xs: 0.75rem;
    --fs-xs: 0.875rem;
    --fs-sm: 0.9375rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;
    --fs-2xl: 3rem;

    /* Line Heights */
    --lh-tight: 1.2;
    --lh-snug: 1.4;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;

    /* Spacing */
    --section-padding: 5rem;
    --container-max: 1200px;

    /* Transitions */
    --transition: 0.3s ease;

    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* Aliases - kept for backward compatibility */
    --gold-accent: var(--gold);
    --charcoal: var(--dark-surface);
    --ink: var(--dark);
    --text-grey: var(--text-dark);
    --border-grey: var(--border-dark);
    --bg-primary: var(--dark);
    --bg-secondary: var(--dark-card);
    --bg-section: var(--dark-card);
    --bg-card: var(--dark-card);
    --bg-hover: var(--dark-surface);
    --text-primary: var(--white-90);
    --text-secondary: var(--white-75);
    --text-tertiary: var(--white-60);
    --text-light: var(--white-45);
    --text-muted: var(--cream);
    --text-cream: var(--cream);
    --border-color: var(--border-dark);
    --surface-elevated: var(--dark-card);
    --surface-overlay: rgba(10, 10, 10, 0.98);
    --surface-light: var(--light-gold);
    --dark-bg: var(--dark);
    --light-bg: var(--cream);
    --light-text: var(--text-dark);
    --light-border: var(--border-light);
    --dark-border: var(--border-dark);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}
h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}
h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
h4 {
    font-size: 1.125rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.8;
}
a {
    color: var(--gold-accent);
}

ul {
    padding-left: 1.25rem;
}

li {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.research-areas-list {
    list-style: disc;
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
}

.research-areas-list li {
    margin-bottom: 0.35rem;
}

.research-areas-list li::marker {
    color: var(--gold-accent);
}

/* Accent text */

span.accent,
h2 span,
h1 span,
h1 em {
    color: var(--crimson);
    font-style: normal;
}

/* Theme B: accent spans use gold for legibility on dark backgrounds */
span.accent,
h2 span,
h1 span,
h1 em {
    color: var(--gold-accent);
    -webkit-text-fill-color: var(--gold-accent);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}


/* ============================================================
   GCWAL — Navigation
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* No isolation — overlay lives on body, drawer is part of nav at z-index 1000 */
    padding: 1rem clamp(1.25rem, 4vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav.transparent {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--white-10);
    box-shadow: none;
    padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
}

.nav.scrolled {
    padding: 0.75rem clamp(1.25rem, 4vw, 4rem);
    box-shadow: var(--shadow);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1);
}

.nav.transparent .logo img {
    height: 50px;
    filter: brightness(1.2);
}

.nav:not(.transparent) .logo img {
    filter: brightness(1);
}

.footer .logo img {
    height: 38px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 0.125rem;
    list-style: none;
    padding-left: 0;
    align-items: center;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav.transparent .nav-links > li > a {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav:not(.transparent) .nav-links > li > a {
    color: var(--charcoal);
    text-shadow: none;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--crimson-dark);
}

.nav.transparent .nav-links > li > a:hover,
.nav.transparent .nav-links > li > a.active {
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--gold-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    background: transparent;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 18, 18, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 184, 0, 0.2);
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white-90);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(196, 30, 58, 0.15), transparent);
    color: var(--gold-accent);
}

.nav:not(.transparent) .dropdown-menu {
    background: rgba(26, 18, 18, 0.98);
}

.nav:not(.transparent) .dropdown-menu a {
    color: var(--white-90);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 1px;
    display: block;
}

.nav:not(.transparent) .mobile-menu-btn span {
    background: var(--charcoal);
}

/* Hamburger → X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hide mobile-only elements on desktop */
.nav-mobile-cta-item {
    display: none;
}
.dropdown-toggle-btn {
    display: none;
}

/* Mobile nav overlay — appended to body, covers full viewport.
   z-index 998 keeps it below .nav (z-index 1000), so the drawer
   (inside .nav) always appears on top of the overlay. */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}


/* ============================================================
   GCWAL — Page Header
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 5rem clamp(1.5rem, 5vw, 2.5rem) 4.5rem;
    background: linear-gradient(
        160deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.88) 100%
    );
    background-image: url("../assets/banners/banner_aboutgcwal.jpg");
    background-size: cover;
    background-position: 0% 30%;
    background-blend-mode: overlay;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Center page header content like prog-hero */
.page-header > * {
    width: 100%;
    /* max-width: 1200px;

    margin-left: auto;
    margin-right: auto; */
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(26, 10, 10, 0.95) 0%,
        rgba(26, 10, 10, 0.85) 30%,
        rgba(26, 10, 10, 0.6) 50%,
        rgba(26, 10, 10, 0.3) 70%,
        transparent 90%
    );
    pointer-events: none;
    z-index: 1;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(196, 30, 58, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.page-header .breadcrumb,
.page-header h1,
.page-header p {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    color: white;
    max-width: var(--container-max);
}

.page-header h1 span {
    /* Use solid gold accent color instead of gradient */
    background: none;
    color: var(--gold-accent);
    /* Remove text-clip transparency */
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--gold-accent);
}

.page-header p,
.page-header .page-subtitle {
    font-size: 1.125rem;
    color: white;
    max-width: 660px;
    z-index: 2;
}

.page-header .page-subtitle p {
    margin: 0 0 1rem;
}

.page-header .page-subtitle p:last-child {
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--white-60);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-accent);
}

.breadcrumb span {
    color: var(--white-50);
}

/* Navigation pills within page header */
.page-header .header-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.page-header .header-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: white;
    background: var(--white-08);
    backdrop-filter: blur(6px);
}

.page-header .header-pill:hover {
    background: var(--crimson);
    border-color: var(--crimson);
}

.page-header .pill-dot {
    width: 6px;
    height: 6px;
    background: var(--crimson);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Page-specific banner backgrounds — each class sets image + position */
.page-header.banner-about {
    background-image: url("../assets/banners/banner_aboutgcwal.jpg");
    background-position: center 40%;
}

.page-header.banner-history {
    background-image: url("../assets/banners/banner_aboutgcwal.jpg");
    background-position: center 60%;
}

.page-header.banner-team {
    background-image: url("../assets/banners/banner_team.jpg");
    background-position: center 20%;
}

.page-header.banner-clients {
    background-image: url("../assets/banners/banner_pastclients.jpg");
    background-position: center 50%;
}

.page-header.banner-what-is-wal {
    background-image: url("../assets/banners/banner_whatiswal.jpg");
    background-position: center 35%;
}

.page-header.banner-programmes {
    background-image: url("../assets/banners/banner_programmes3.jpg");
    background-position: center 40%;
}

.page-header.banner-individual-change {
    background-image: url("../assets/banners/banner_programmes_IC.jpg");
    background-position: center 30%;
}

.page-header.banner-manager-team-change {
    background-image: url("../assets/banners/banner_programmes3.jpg");
    background-position: center 55%;
}

.page-header.banner-organisational-change {
    background-image: url("../assets/banners/banner_programmes_OC.jpg");
    background-position: center 45%;
}

.page-header.banner-case-studies {
    background-image: url("../assets/banners/GCWAL_WEBSITE_BANNER_CASESTUDIESFEB222.jpg");
    background-position: center 50%;
}

.page-header.banner-certifications {
    background-image: url("../assets/banners/banner_programmes3.jpg");
    background-position: center 35%;
}

.page-header.banner-licensing {
    min-height: 600px;
    padding-bottom: 5.5rem;
    background-image: url("../assets/banners/banner_programmes3.jpg");
    background-position: center 60%;
}

.page-header.banner-research {
    background-image: url("../assets/banners/banner_researchcollab.jpg");
    background-position: center 30%;
}

.page-header.banner-publications {
    background-image: url("../assets/banners/banner_publications.jpg");
    background-position: center 40%;
}

.page-header.banner-journal {
    background-image: url("../assets/banners/banner_journal2.jpg");
    background-position: center 35%;
}

.page-header.banner-events {
    background-image: url("../assets/banners/banner_events3.jpg");
    background-position: center 30%;
    min-height: 625px;
}

.page-header.banner-contact {
    background-image: url("../assets/banners/banner_contact.jpg");
    background-position: center -10%;
}

.page-header.banner-privacy {
    background-image: url("../assets/banners/banner_contact.jpg");
    background-position: center 65%;
}


/* ============================================================
   GCWAL — Hero Section
   Part of styles.css — concatenated at build time
   ============================================================ */

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


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(139, 0, 0, 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    background: radial-gradient(
        circle at 30% 50%,
        rgba(255, 184, 0, 0.08) 0%,
        transparent 50%
    );
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Desktop: right-side image panel — the skew/shape is on the wrapper */










@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.35);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    text-decoration: none;
}

.hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--crimson);
    font-weight: 600;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-grey);
    max-width: none;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-content h2 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 1rem;
}

/*
.hero-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson-dark), transparent);
}
*/
.hero-content h2 span {
    color: var(--gold-accent);
}

.hero-content p {
    margin-bottom: 1.25rem;
    color: var(--white-80);
}

.hero-content p a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.hero-content p a:hover {
    color: var(--gold-accent);
}

.hero-content .quote {
    margin-top: 1.25rem;
    margin-bottom: 0;
}







/* ============================================================
   GCWAL — Buttons
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gold-accent);
    color: var(--charcoal);
    border: 2px solid var(--gold-accent);
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 1;
    font-family: var(--font-primary);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffc107, #ffd54f);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: var(--charcoal);
    border-color: var(--gold-accent);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
}

.btn-secondary {
    background: var(--gold-accent);
    color: var(--charcoal);
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    border: 2px solid var(--gold-accent);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd54f, var(--gold-accent));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    color: var(--charcoal);
    border-color: var(--gold-accent);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid var(--cream);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--charcoal);
    border-color: white;
}

.btn-gold {
    background: var(--gold-accent);
    color: #000000;
    border: 2px solid var(--gold-accent);
    padding: 0.875rem 2.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-gold:hover {
    background: #ffc107;
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
    color: #000000;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-accent);
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-play:hover {
    background: var(--crimson-dark);
    transform: scale(1.08);
}


/* ============================================================
   GCWAL — Sections, Stats Strip & Grid Layouts
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding) clamp(1.5rem, 5vw, 6rem);
}

/* Large screen inner wrapper */
.section > .container,
.section > .section-header,
.stats-strip > * {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

/* Section backgrounds */
.section-white {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.section-light {
    background: var(--bg-section);
    color: var(--text-primary);
}

.section-sand {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Dark accent section */
.section-warm-dark {
    background: #000000;
    color: var(--white);
}

/* Theme-aware image switching — dark mode always shows dark variant */
.theme-img-light {
    display: none;
}
.theme-img-dark {
    display: block;
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--cream);
}

/* Left-border section header variant (from template1 "Our Core Pathways" style) */
.section-header-left {
    max-width: var(--container-max);
    margin: 0 0 3.5rem 0;
    text-align: left;
    border-left: 4px solid var(--crimson);
    padding-left: 1.75rem;
}

.section-header-left h2 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-header-left p {
    font-size: 1.125rem;
    color: var(--white-65);
    max-width: 560px;
}

/* On light-background sections, section-header-left needs dark colours */
.ppage-pathway .section-header-left h2,
.pp-pathways .section-header-left h2 {
    color: var(--ink);
}
.ppage-pathway .section-header-left p,
.pp-pathways .section-header-left p {
    color: var(--charcoal);
    opacity: 0.75;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    padding: 3.5rem clamp(1.5rem, 4vw, 4rem);
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 4vw, 5rem);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2vw, 2rem);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


/* ============================================================
   GCWAL — Cards through CTA Section
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== CARDS ===== */
.card {
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

.card-white {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 184, 0, 0.3);
}

/* Theme B: Even more subtle cards */
.card {
    background: var(--bg-card);
    border-color: var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(196, 30, 58, 0.2),
        rgba(196, 30, 58, 0.08)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--crimson);
}

.card-icon {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 184, 0, 0.2),
        rgba(255, 184, 0, 0.08)
    );
}

.card-icon svg {
    stroke: var(--gold-accent);
}

.cs-badge {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-badge {
    background: var(--gold-accent);
    color: var(--charcoal);
}

.cs-org {
    color: var(--crimson);
    font-weight: 500;
    margin-bottom: 1rem;
}

.cs-org {
    color: var(--gold-accent);
}

/* ===== CERT BADGE ===== */

.cert-badge {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--crimson-bright) 0%,
        var(--crimson) 50%,
        var(--crimson-dark) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Subtle gold inner ring */
.cert-badge::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.35);
}

.cert-badge span {
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-family: "Plus Jakarta Sans", sans-serif;
    position: relative;
    z-index: 1;
}

/* Variant B — Typographic stamp: large acronym between gold rules */

.cert-badge--stamp::before,
.cert-badge--stamp::after {
    content: "";
    width: 52px;
    height: 1.5px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-accent),
        transparent
    );
    flex-shrink: 0;
}

.cert-badge--stamp span {
    color: var(--crimson);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 3px;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1;
}

/* Variant C — Octagonal notch seal: 8-sided, crimson fill, white text */

.cert-badge--notch span {
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--white-80);
    line-height: 1.7;
}

.card li {
    color: var(--white-80);
    font-weight: 500;
}

.card-dark:hover {
    background: var(--white-05);
    border-color: var(--white-12);
}

.card-dark h3 {
    color: white;
}

.card-dark p {
    color: var(--text-light);
}

/* Compact card — for name/institution lists (academics, panel members, etc.) */
.card--compact {
    padding: 1rem 1.25rem;
}

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

/* Card Link */

.card-link:hover {
    gap: 0.75rem;
}

.card-link svg {
    transition: var(--transition);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* ===== CONTENT SECTIONS ===== */
.content-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.content-section h2 span,
.card h3 span {
    color: var(--crimson);
}

.content-section p {
    color: var(--white-80);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.content-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white-80);
    font-size: 1rem;
    line-height: 1.7;
}

.content-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--crimson);
    border-radius: 50%;
}

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

.content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem;
    color: white;
}

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: white;
}

.content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: white;
}

.content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--white-80);
    margin-bottom: 1.25rem;
}

.content ul,
.content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white-80);
    margin-bottom: 0.625rem;
}

.content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: white;
    padding: 1.5rem 2rem;
    background: rgba(26, 18, 18, 0.5);
    border-left: 4px solid var(--crimson);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

/* Quote */
.quote {
    font-size: 1.375rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    padding: 2rem;
    background: rgba(26, 18, 18, 0.5);
    border-radius: 16px;
    border-left: 4px solid var(--crimson);
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: rgba(26, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card p {
    flex: 1;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 184, 0, 0.3);
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(196, 30, 58, 0.15),
        rgba(196, 30, 58, 0.05)
    );
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.team-card .role {
    font-size: 0.875rem;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--cream);
}

/* ===== BOOK CARDS ===== */
.books-list {
    display: flex;
    flex-direction: column;
}

.book-item {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--dark-border);
    align-items: flex-start;
}

.book-item:first-child {
    padding-top: 0;
}

.book-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.book-cover {
    flex-shrink: 0;
    width: 220px;
    background: #1a1a2e;
    border-radius: 6px;
    padding: 0.75rem;
    border: 1px solid var(--white-08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 var(--white-04);
    align-self: flex-start;
}

.book-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.book-info {
    flex: 1;
}

.book-info h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--gold-accent);
    line-height: 1.3;
}

.book-info .book-author {
    font-size: 0.9375rem;
    color: var(--dark-card);
    margin-bottom: 1rem;
}

.book-info .book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.book-info .book-meta span {
    color: var(--cream);
}

.book-info .book-meta span strong {
    color: white;
    font-weight: 600;
}

.book-info .book-description {
    font-size: 0.9375rem;
    color: var(--white-80);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.book-desc-more {
    display: none;
}

.book-desc-more.open {
    display: block;
}

.book-description p {
    margin-bottom: 0.75rem;
}

.book-description p:last-of-type {
    margin-bottom: 0;
}

.book-read-more {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.2rem;
    color: var(--gold-accent);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.book-read-more:hover {
    text-decoration: underline;
    color: var(--crimson-dark);
}

.book-info .book-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.book-info .btn-book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--crimson);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.book-info .btn-book:hover {
    background: var(--crimson-dark);
}

.book-info .btn-book-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--charcoal);
    border-radius: 8px;
    transition: var(--transition);
}

.book-info .btn-book-outline:hover {
    background: var(--charcoal);
    color: white;
}

/* Journal Cover Image */
.journal-cover-img {
    width: 100%;
    max-width: 200px;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    margin: 0 auto 1.5rem;
    display: block;
}

/* Journal Card */
.journal-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.journal-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(196, 30, 58, 0.05));
    pointer-events: none;
}

.journal-card .journal-icon {
    width: 72px;
    height: 72px;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(196, 30, 58, 0.15),
        rgba(196, 30, 58, 0.05)
    );
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
}

.journal-card .journal-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--crimson);
}

.journal-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    position: relative;
    color: var(--charcoal);
}

.journal-card .journal-issn {
    color: var(--crimson);
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.journal-card .journal-publisher {
    color: var(--text-grey);
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
}

.journal-card .journal-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 12px;
}

.journal-card .journal-stats div {
    text-align: center;
}

.journal-card .journal-stats .stat-value {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    display: block;
}

.journal-card .journal-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Journal focus list */
.journal-focus-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.journal-focus-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-grey);
}
.journal-bullet {
    position: absolute;
    left: 0;
    color: var(--crimson);
}

/* ===== CLIENT LIST ===== */
.client-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.client-list li {
    padding: 0;
    color: var(--charcoal);
    font-size: 0.9rem;
    padding-left: 1.1rem;
    position: relative;
}

.client-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.82rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--crimson);
}

.client-list .client-location {
    color: var(--text-grey);
    font-size: 0.875rem;
    margin-left: 0.3rem;
}

@media (max-width: 768px) {
    .client-list {
        grid-template-columns: 1fr;
    }
}

/* ===== PHOTO BANNER ===== */
.photo-banner {
    padding: 0;
    margin: 0;
}
.photo-banner-inner {
    height: 400px;
    overflow: hidden;
    position: relative;
}
.photo-banner-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.65);
}
.photo-banner-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    max-width: 560px;
}
.photo-banner-caption p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.01em;
}
.photo-banner-caption.centered {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding: 0 2rem;
}
.photo-banner-caption.centered p {
    font-size: 1.5rem;
}
.photo-banner-caption.centered .photo-banner-sub {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .photo-banner-inner {
        height: 260px;
    }
    .photo-banner-caption {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.5rem;
        max-width: none;
    }
    .photo-banner-caption p {
        font-size: 1.05rem;
    }
    .photo-banner-caption.centered {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 0 1.25rem;
    }
}
@media (max-width: 480px) {
    .photo-banner-inner {
        height: 220px;
    }
    .photo-banner-caption p {
        font-size: 0.95rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-image:
        linear-gradient(
            to bottom right,
            rgba(15, 10, 10, 0.95),
            rgba(26, 18, 18, 0.9),
            rgba(26, 18, 18, 0.9)
        ),
        url("../assets/banners/banner_aboutgcwal.jpg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 8rem clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: none;
}

.cta-section::after {
    content: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section h2 span {
    background: none;
    color: var(--gold-accent);
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--gold-accent);
}

.cta-section p {
    color: var(--white-80);
    font-size: 1.125rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}


/* ============================================================
   GCWAL — Footer + Hero Address/Card Details
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    color: var(--white-75);
    padding: 4.5rem clamp(1.5rem, 4vw, 4rem) 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--crimson);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: var(--cream);
    font-size: 0.9375rem;
    max-width: 320px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    font-size: 0.9375rem;
    color: var(--white-75);
    line-height: 2;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.footer-contact .contact-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    color: var(--text-grey);
}

.footer-contact a {
    color: var(--white-75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold-accent);
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1.25rem;
    color: var(--gold-accent);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col li {
    margin-bottom: 0.625rem;
}

.footer-col a {
    color: var(--white-75);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--white-60);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-75);
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    border-color: var(--crimson-dark);
    color: white;
}

/* ===== HERO ADDRESS CARD ===== */
/* Desktop: relative to .hero section — bottom-right corner of the image panel.
   The image panel occupies the right 50%, so right:2rem lands inside it. */

/* ===== HERO CARD DETAILS ===== */

.client-avatar.more {
    background: var(--crimson);
}


/* ============================================================
   GCWAL — WAL Interactive Diagram + Large Diagram Sections
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== WAL INTERACTIVE DIAGRAM ===== */

#walDiagram {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Connector lines */
.wal-connector {
    stroke: var(--border-grey);
    stroke-width: 1.5;
    transition: stroke 0.25s ease;
}

.wal-connector.active {
    stroke: var(--crimson);
    stroke-width: 2.5;
}

/* Outer nodes */
.wal-node circle {
    fill: var(--charcoal);
    stroke: none;
    transition:
        fill 0.25s ease,
        transform 0.2s ease;
    transform-origin: center;
    transform-box: fill-box;
    cursor: pointer;
}

.wal-node:hover circle,
.wal-node:focus circle {
    fill: #2a2a2a;
    transform: scale(1.06);
    outline: none;
}

.wal-node.active circle {
    fill: var(--crimson);
}

.wal-node:focus {
    outline: none;
}

/* Centre node */
.wal-node-centre circle {
    fill: var(--crimson) !important;
    cursor: pointer;
}

.wal-node-centre:hover circle {
    fill: var(--crimson-dark) !important;
    transform: scale(1.04);
}

.wal-node-centre.active circle {
    fill: var(--crimson) !important;
}

/* Info Panel */

@keyframes walFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wal-panel-tag {
    display: inline-block;
    background: var(--crimson);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.wal-info-panel h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.wal-info-panel p {
    color: var(--text-grey);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.wal-info-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.wal-info-panel ul li {
    padding: 0.4rem 0;
    color: var(--text-grey);
    font-size: 0.9rem;
    padding-left: 1.1rem;
    position: relative;
}

.wal-info-panel ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--crimson);
}

.wal-panel-hint {
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
    margin: 0 !important;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
}

/* ===================================================
   LIGHT SECTION OVERRIDES
   Restores readable dark typography within all
   light-background section variants.
   =================================================== */

/* ── Headings on light backgrounds ── */
.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white h5,
.section-white h6,
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-sand h1,
.section-sand h2,
.section-sand h3,
.section-sand h4,
.section-sand h5,
.section-sand h6 {
    color: var(--charcoal);
}

/* Keep accent spans crimson on light section backgrounds (Theme A) */
.section-white h1 em,
.section-white h2 span,
.section-light h1 em,
.section-light h2 span,
.section-sand h1 em,
.section-sand h2 span {
    color: var(--crimson);
    -webkit-text-fill-color: var(--crimson);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

/* Theme B: override hardcoded crimson to gold on dark section backgrounds */
.section-white h1 em,
.section-white h2 span,
.section-light h1 em,
.section-light h2 span,
.section-sand h1 em,
.section-sand h2 span {
    color: var(--gold-accent);
    -webkit-text-fill-color: var(--gold-accent);
}

/* Theme B: content-section, card, and hero accent spans → gold */
.content-section h2 span,
.card h3 span,
.hero h1 em {
    color: var(--gold-accent);
    -webkit-text-fill-color: var(--gold-accent);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

/* ── Body text on light backgrounds ── */
.section-white p,
.section-light p,
.section-sand p {
    color: var(--text-secondary);
}

.section-white li,
.section-light li,
.section-sand li {
    color: var(--text-secondary);
}

/* ── Section header subtitle ── */
.section-white .section-header p,
.section-light .section-header p,
.section-sand .section-header p {
    color: var(--text-grey);
}

.book-actions .btn-primary,
.section-white .btn-primary,
.section-light .btn-primary,
.section-sand .btn-primary {
    color: var(--crimson);
}

.book-actions .btn-primary:hover,
.section-white .btn-primary:hover,
.section-light .btn-primary:hover,
.section-sand .btn-primary:hover {
    color: white;
}

/* ── Cards on light backgrounds ── */
.section-white .card,
.section-light .card,
.section-sand .card {
    background: var(--white);
    border: 1px solid var(--charcoal);
    box-shadow: 0 2px 12px rgba(44, 26, 26, 0.06);
    color: var(--charcoal); /* inherit base so untyped divs get dark text */
}

/* White sections get parchment cards so they stand out */
.section-white .card {
    background: var(--cream);
}

.section-white .card:hover,
.section-light .card:hover,
.section-sand .card:hover {
    box-shadow: 0 12px 30px rgba(44, 26, 26, 0.14);
    border-color: rgba(139, 0, 0, 0.22);
}

.section-white .card h3,
.section-light .card h3,
.section-sand .card h3,
.section-white .card h4,
.section-light .card h4,
.section-sand .card h4 {
    color: var(--charcoal);
}

.section-white .card p,
.section-light .card p,
.section-sand .card p,
.section-white .card li,
.section-light .card li,
.section-sand .card li {
    color: var(--text-grey);
}

.section-white .card-icon,
.section-light .card-icon,
.section-sand .card-icon {
    background: rgba(139, 0, 0, 0.08);
}

.section-white .card-icon,
.section-light .card-icon,
.section-sand .card-icon {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 184, 0, 0.2),
        rgba(255, 184, 0, 0.08)
    );
}

/* ── Content section text on light backgrounds ── */
.section-white .content-section p,
.section-light .content-section p,
.section-sand .content-section p {
    color: var(--text-secondary);
}

.section-white .content-section ul li,
.section-light .content-section ul li,
.section-sand .content-section ul li {
    color: var(--text-secondary);
}

/* ── Content block typography on light backgrounds ── */
.section-white .content h2,
.section-light .content h2,
.section-sand .content h2,
.section-white .content h3,
.section-light .content h3,
.section-sand .content h3,
.section-white .content h4,
.section-light .content h4,
.section-sand .content h4 {
    color: var(--charcoal);
}

.section-white .content p,
.section-light .content p,
.section-sand .content p,
.section-white .content li,
.section-light .content li,
.section-sand .content li {
    color: var(--text-secondary);
}

.section-white .content blockquote,
.section-light .content blockquote,
.section-sand .content blockquote {
    background: var(--cream);
    color: var(--charcoal);
    border-left-color: var(--crimson);
}

/* ── Quote block on light backgrounds ── */
.section-white .quote,
.section-light .quote,
.section-sand .quote {
    background: var(--cream);
    color: var(--charcoal);
    border-left-color: var(--crimson);
}

/* ── Team cards on light backgrounds ── */
.section-white .team-card,
.section-light .team-card,
.section-sand .team-card {
    background: var(--white);
    border-color: var(--charcoal);
    box-shadow: 0 2px 12px rgba(44, 26, 26, 0.06);
}

.section-white .team-card h4,
.section-light .team-card h4,
.section-sand .team-card h4 {
    color: var(--charcoal);
}

.section-white .team-card p,
.section-light .team-card p,
.section-sand .team-card p {
    color: var(--text-grey);
}

/* ── Book items on light backgrounds ── */
.section-white .book-item,
.section-light .book-item,
.section-sand .book-item {
    border-bottom-color: var(--charcoal);
}

.section-white .book-info h3,
.section-light .book-info h3,
.section-sand .book-info h3 {
    color: var(--gold-accent);
}

.section-white .book-info .book-description,
.section-light .book-info .book-description,
.section-sand .book-info .book-description {
    color: var(--text-secondary);
}

.section-white .book-info .book-meta span,
.section-light .book-info .book-meta span,
.section-sand .book-info .book-meta span {
    color: var(--text-grey);
}

.section-white .book-info .book-meta span strong,
.section-light .book-info .book-meta span strong,
.section-sand .book-info .book-meta span strong {
    color: var(--charcoal);
}

/* ── Stat labels on light stats-strip ── */
.section-white .stat-label,
.section-light .stat-label,
.section-sand .stat-label {
    color: var(--text-grey);
}

/* ── Client list on light backgrounds ── */
.section-white .client-list li,
.section-light .client-list li,
.section-sand .client-list li {
    color: var(--charcoal);
}

.section-white .client-list .client-location,
.section-light .client-list .client-location,
.section-sand .client-list .client-location {
    color: var(--text-grey);
}

/* ── WAL diagram info panel on light backgrounds ── */
.section-white .wal-info-panel,
.section-light .wal-info-panel,
.section-sand

/* ── btn-book-outline on light backgrounds ── */
.section-white .btn-book-outline,
.section-light .btn-book-outline,
.section-sand .btn-book-outline {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

/* ── Dark warm-dark section ensures white type ── */
.section-warm-dark h1,
.section-warm-dark h2,
.section-warm-dark h3,
.section-warm-dark h4,
.section-warm-dark h5,
.section-warm-dark h6 {
    color: var(--white);
}

.section-warm-dark p,
.section-warm-dark li {
    color: var(--white-85);
}

.section-warm-dark .card {
    background: var(--white-08);
    border-color: var(--white-15);
}

.section-warm-dark .card h3,
.section-warm-dark .card h4 {
    color: var(--white);
}

.section-warm-dark .card p,
.section-warm-dark .card li {
    color: var(--white-80);
}

/* =====================================================
   LIGHT-SECTION OVERRIDES
   Re-targets child elements within section-white/light/sand
   to ensure text/cards/links render correctly on dark backgrounds.
   ===================================================== */

/* Headings */
.section-white h1,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white h5,
.section-white h6,
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-sand h1,
.section-sand h2,
.section-sand h3,
.section-sand h4,
.section-sand h5,
.section-sand h6 {
    color: var(--text-primary);
}

/* Body text & list items */
.section-white p,
.section-light p,
.section-sand p,
.section-white li,
.section-light li,
.section-sand li {
    color: var(--text-secondary);
}

/* Higher-specificity overrides for .content-section and .content (beat 0,2,1 and 0,2,2 rules) */
.section-white .content-section p,
.section-light .content-section p,
.section-sand .content-section p,
.section-white .content-section ul li,
.section-light .content-section ul li,
.section-sand .content-section ul li {
    color: var(--text-secondary);
}

.section-white .content-section ul li::before,
.section-light .content-section ul li::before,
.section-sand .content-section ul li::before {
    background: var(--gold-accent);
}

.section-white .content p,
.section-light .content p,
.section-sand .content p,
.section-white .content li,
.section-light .content li,
.section-sand .content li {
    color: var(--text-secondary);
}

.section-white .content h2,
.section-light .content h2,
.section-sand .content h2,
.section-white .content h3,
.section-light .content h3,
.section-sand .content h3,
.section-white .content h4,
.section-light .content h4,
.section-sand .content h4 {
    color: var(--text-primary);
}

/* Section-header subtitles */
.section-white .section-header p,
.section-light .section-header p,
.section-sand .section-header p {
    color: var(--text-muted);
}

/* Cards */
.section-white .card,
.section-light .card,
.section-sand .card {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    color: var(--text-secondary);
}

.section-white .card:hover,
.section-light .card:hover,
.section-sand .card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 184, 0, 0.3);
}

.section-white .card h3,
.section-light .card h3,
.section-sand .card h3,
.section-white .card h4,
.section-light .card h4,
.section-sand .card h4 {
    color: var(--text-primary);
}

.section-white .card p,
.section-light .card p,
.section-sand .card p,
.section-white .card li,
.section-light .card li,
.section-sand .card li {
    color: var(--white-75);
}

/* Stat labels */
.section-white .stat-label,
.section-light .stat-label,
.section-sand .stat-label {
    color: var(--white-60);
}

/* Client list */
.section-white .client-list li,
.section-light .client-list li,
.section-sand .client-list li,
.section-white .client-list .client-location,
.section-light .client-list .client-location,
.section-sand .client-list .client-location {
    color: var(--cream);
}

/* Book list */
.section-white .book-item,
.section-light .book-item,
.section-sand .book-item {
    border-bottom-color: var(--white-10);
}

.section-white .book-info h3,
.section-light .book-info h3,
.section-sand .book-info h3 {
    color: var(--gold-accent);
}

.section-white .book-info .book-description,
.section-light .book-info .book-description,
.section-sand .book-info .book-description {
    color: var(--white-80);
}

.section-white .book-info .book-meta span,
.section-light .book-info .book-meta span,
.section-sand .book-info .book-meta span {
    color: var(--white-60);
}

.section-white .book-info .book-meta span strong,
.section-light .book-info .book-meta span strong,
.section-sand .book-info .book-meta span strong {
    color: var(--white-90);
}

/* btn-book-outline */
.section-white .btn-book-outline,
.section-light .btn-book-outline,
.section-sand .btn-book-outline {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

/* book-author (uses --dark-card which is #0f0f0f in Theme B — override to light) */
.section-white .book-author,
.section-light .book-author,
.section-sand .book-author {
    color: var(--white-80);
}

/* volume-header hover (hardcoded #f9f8f6 — override to subtle dark highlight) */
.volume-header:hover {
    background: var(--white-04) !important;
}

/* ── Journal card (section-light) ── */
.journal-card {
    background: var(--white-06);
    color: var(--white-90);
}
.journal-card::before {
    background: linear-gradient(135deg, transparent, rgba(255, 184, 0, 0.05));
}
.journal-card .journal-icon {
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 184, 0, 0.2),
        rgba(255, 184, 0, 0.06)
    );
}
.journal-card .journal-icon svg {
    stroke: var(--gold-accent);
}
.journal-card h3 {
    color: var(--white-90);
}
.journal-card .journal-issn {
    color: var(--gold-accent);
}
.journal-card .journal-stats {
    background: rgba(255, 184, 0, 0.08);
}
.journal-card .journal-stats .stat-value {
    color: var(--white-90);
}
.journal-card .journal-stats .stat-label {
    color: var(--white-55);
}
.journal-card .journal-publisher {
    color: var(--white-60);
}

/* ── Journal focus list (section-light) ── */
.journal-focus-list li {
    color: var(--white-75);
}
.journal-bullet {
    color: var(--gold-accent);
}

/* ── Volume / article list (section-light) ── */
.volume-header {
    background: var(--white-06);
    border-color: var(--white-10);
}
.volume-header h3 {
    color: var(--white-90);
}
.volume-header .volume-year,
.volume-header .toggle-icon {
    color: var(--white-55);
}
/* article-item styles consolidated in 13-journal.css */

/* ── Archive links (section-white) ── */
.archive-link {
    background: var(--white-06);
    border-color: var(--white-10);
}
.archive-link:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.12);
}
.archive-link .archive-vol {
    color: var(--white-90);
}
.archive-link .archive-year {
    color: var(--white-55);
}


/* ============================================================
   GCWAL — Theme B Overrides, Video Container, Video Modal
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== THEME B: COMPONENT OVERRIDES =====
   Elements with hardcoded (non-var) values in their light-section rules
   that cannot be fixed by the scoped variable approach above.
   ========================================================= */

/* Quote block */
.section-white .quote,
.section-light .quote,
.section-sand .quote {
    background: var(--white-04);
    color: var(--text-secondary);
    border-left-color: var(--gold-accent);
}

/* Highlight box (history page) */
.highlight-box {
    background: rgba(255, 184, 0, 0.08);
    border-left-color: var(--gold-accent);
}
.highlight-box p {
    color: var(--text-secondary);
}

/* Team cards on light sections */
.section-white .team-card,
.section-light .team-card,
.section-sand .team-card {
    background: var(--bg-card);
    border-color: var(--white-07);
}
.section-white .team-card h4,
.section-light .team-card h4,
.section-sand .team-card h4 {
    color: var(--text-primary);
}
.section-white .team-card p,
.section-light .team-card p,
.section-sand .team-card p {
    color: var(--cream);
}

/* Legacy founder profile cards */
.legacy-profile-grid {
    display: grid;
    gap: 1.5rem;
}

.legacy-profile-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem 1.25rem;
    align-items: start;
    text-align: left;
    padding: 1.5rem;
}

.legacy-profile-card .team-avatar {
    width: 88px;
    height: 88px;
    margin: 0;
}

.legacy-profile-card h4 {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.legacy-profile-qual {
    color: var(--gold-accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.legacy-profile-card p {
    margin-bottom: 0.85rem;
    font-size: 1rem;
    line-height: 1.75;
}

.legacy-profile-card p:last-child {
    margin-bottom: 0;
}

.legacy-profile-card h4 {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .legacy-profile-card {
        grid-template-columns: 1fr;
    }

    .legacy-profile-card .team-avatar {
        width: 96px;
        height: 96px;
    }
}

/* Event cards (conferences page) */
.event-card {
    background: var(--bg-card);
    border-color: var(--white-07);
}
.event-card-body h3 {
    color: var(--text-primary);
}
.event-card-body p {
    color: var(--text-muted);
}
.event-location {
    color: var(--white-55);
}

/* Blockquote (research page) */
.section-white blockquote,
.section-light blockquote {
    background: var(--bg-hover) !important;
    color: var(--white-75) !important;
    border-color: var(--gold-accent) !important;
}

/* ===== RESEARCH IN PRACTICE CARDS ===== */
.research-practice-card .rpc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

/* Research stat box */
.research-stat-box {
    background: var(--bg-card);
    border-color: var(--white-08);
}

/* ===== RESEARCHER ROWS (research page) ===== */
.researcher-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.researcher-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--crimson);
}
.researcher-name {
    font-weight: 600;
    color: var(--charcoal);
}
.researcher-role {
    font-size: 0.875rem;
    color: var(--text-grey);
}

/* Theme B overrides */
.researcher-row {
    background: var(--bg-hover) !important;
    border-left-color: var(--gold-accent) !important;
}
.researcher-row .researcher-name {
    color: var(--white-90) !important;
}
.researcher-row .researcher-role {
    color: var(--white-55) !important;
}

/* ===== RESEARCH / CONFERENCE STAT BOX ===== */
.research-stat-cell {
    background: var(--white-04);
    border: 1px solid var(--white-06);
}

/* ===== CONTACT FORM WRAP ===== */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-wrap h3 {
    margin-bottom: 2rem;
}

/* ===== FORM ROW (two-column layout) ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== FORM GROUPS ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.form-required {
    color: var(--gold-accent);
    opacity: 0.7;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--cream);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-accent);
    background: rgba(255, 184, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ===== CUSTOM SELECT ===== */
.form-select-wrap {
    position: relative;
}

.form-select-wrap select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--cream);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-select-wrap select:focus {
    border-color: var(--gold-accent);
    background: rgba(255, 184, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.08);
}

.form-select-wrap select option {
    background: #1a1a1a;
    color: var(--cream);
}

.form-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ===== CONTACT DETAIL ITEMS ===== */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-item a,
.contact-item address {
    color: var(--cream);
    font-weight: 500;
    font-style: normal;
}
.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }
    .contact-item {
        align-items: flex-start;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .contact-form-wrap {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
}

/* Stats info box (conferences + research pages) */

/* ===== CERTIFICATION STEP BOX ===== */
/* Mobile: stack number on top of card */
@media (max-width: 600px) {
    .section-sand .u-maxw-900 > div {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}
.cert-step-box {
    flex: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
}

.cert-step-title {
    color: var(--crimson);
    margin-bottom: 0.5rem;
}

.cert-step-desc {
    color: var(--text-grey);
    margin: 0;
}

.cert-step-number {
    width: 60px;
    height: 60px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* THEME B: CERTIFICATIONS OVERRIDES */
.cert-step-number {
    background: var(--gold-accent);
    color: var(--charcoal);
}

.cert-step-box {
    background: var(--bg-hover);
    border: 1px solid var(--white-10);
}

.cert-step-title {
    color: var(--gold-accent);
}

.cert-step-desc {
    color: var(--cream);
}

.section-light .content-section .cert-benefits-list li,
.cert-benefits-list li {
    color: var(--text-secondary);
}

.section-light .content-section .cert-benefits-list li::before,
.cert-benefits-list li::before {
    background: var(--gold-accent);
}

.cert-badge::before {
    border-color: var(--white-20);
}

.cert-badge--stamp span {
    color: var(--gold-accent);
}

.section-white .card--compact,
.section-light .card--compact,
.section-sand .card--compact {
    background: var(--bg-hover);
    border-color: var(--white-10);
}

.section-white .card--compact h4,
.section-light .card--compact h4,
.section-sand .card--compact h4 {
    color: var(--text-primary);
}

.section-white .card--compact p,
.section-light .card--compact p,
.section-sand .card--compact p {
    color: var(--text-muted);
}

/* ALARA card (card-white inside section-light) */
.section-light .card-white {
    background: var(--bg-hover);
    border-color: var(--white-10);
}

.section-light .card-white p {
    color: var(--white-80);
}

.section-light .card-white li {
    color: var(--white-75);
}

/* ===== THEME B: NAV OVERRIDES ===== */
.nav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(255, 184, 0, 0.15);
}

.nav.transparent {
    background: transparent;
    border-bottom-color: var(--white-08);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(255, 184, 0, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

/* Dark nav always needs white hamburger spans — the base rule sets charcoal (for light navs) */
.nav:not(.transparent) .mobile-menu-btn span {
    background: var(--white);
}

.nav:not(.transparent) .nav-links > li > a {
    color: var(--text-secondary);
}

.nav:not(.transparent) .nav-links > li > a:hover,
.nav:not(.transparent) .nav-links > li > a.active {
    color: var(--gold-accent);
}

.nav:not(.transparent) .dropdown-menu {
    background: rgba(10, 10, 10, 0.98);
    border-color: var(--white-06);
}

.nav:not(.transparent) .dropdown-menu a {
    color: var(--white-80);
}

/* ===== THEME B: BUTTON OVERRIDES ===== */

/* Secondary button — gold background, dark text */
.btn-secondary {
    background: var(--gold-accent);
    color: var(--charcoal);
    border-color: var(--gold-accent);
}

.btn-secondary:hover {
    color: var(--charcoal);
    border-color: var(--gold-accent);
}

/* Outline light — already works on dark backgrounds, just reinforce */
.btn-outline-light:hover {
    background: var(--gold-accent);
    color: #000000;
    border-color: var(--gold-accent);
}

/* ===== INLINE STYLE REPLACEMENTS ===== */

/* Certifications — advisory board card items */
.cert-item-heading {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.cert-item-label {
    font-size: var(--fs-2xs);
    margin-bottom: 0.3rem;
}

.cert-item-desc {
    font-size: 0.875rem;
    margin: 0;
    line-height: var(--lh-normal);
}

/* Past clients — stat numbers and region headings */

.client-region-heading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

/* What is WAL — step card headings */
.wal-step-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Organisational change — programme note text */

/* Research — section subheadings */
.research-section-heading {
    font-size: var(--fs-base);
    margin: 1.5rem 0 0.75rem;
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== VIDEO THUMBNAIL / MODAL ===== */
#videoModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#videoModal.is-open {
    display: flex !important;
    pointer-events: all;
}


/* ============================================================
   GCWAL — Main Responsive Block
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== RESPONSIVE ===== */

/* ── Very large screens (1600px+) ── */
@media (min-width: 1600px) {
    :root {
        --container-max: 1400px;
    }
    .nav {
        padding: 1rem clamp(4rem, 8vw, 10rem);
    }
    .nav.transparent {
        padding: 1.25rem clamp(4rem, 8vw, 10rem);
    }
    .nav.scrolled {
        padding: 0.75rem clamp(4rem, 8vw, 10rem);
    }
    .hero {
        padding-left: clamp(4rem, 8vw, 10rem);
    }
    .section {
        padding-left: clamp(4rem, 8vw, 10rem);
        padding-right: clamp(4rem, 8vw, 10rem);
    }
    .stats-strip {
        padding-left: clamp(4rem, 8vw, 10rem);
        padding-right: clamp(4rem, 8vw, 10rem);
    }
    .footer {
        padding-left: clamp(4rem, 8vw, 10rem);
        padding-right: clamp(4rem, 8vw, 10rem);
    }
    .cta-section {
        padding-left: clamp(4rem, 8vw, 10rem);
        padding-right: clamp(4rem, 8vw, 10rem);
    }
    .page-header {
        padding-left: clamp(4rem, 8vw, 10rem);
        padding-right: clamp(4rem, 8vw, 10rem);
    }
}

/* ── Large screens / Tablet landscape (max 1200px) ── */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    .hero-visual {
        display: none;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Tablet portrait (max 900px) ── */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ── Nav hamburger (max 1280px) ── */
@media (max-width: 1280px) {
    .nav {
        padding: 0.875rem 1.25rem;
    }
    .nav.transparent {
        padding: 0.875rem 1.25rem;
    }
    .nav.scrolled {
        padding: 0.75rem 1.25rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    /* Hide the desktop btn-primary Contact Us in the nav bar on mobile */
    .nav > .btn-primary {
        display: none;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(300px, 82vw);
        background: var(--dark-bg);
        border: 1px solid var(--dark-border);
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        padding-top: 64px;
        margin: 0;
        z-index: 1001;
        box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
        transform: translateX(110%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links > li {
        border-bottom: 1px solid var(--dark-border);
        position: relative;
    }
    .nav-links > li > a {
        font-size: 0.9375rem;
        font-weight: 600;
        padding: 1rem 3.5rem 1rem 1.25rem;
        border-radius: 0;
        display: block;
        color: var(--white-90) !important;
        text-shadow: none !important;
        background: none;
        text-decoration: none;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--dark-border);
        border-radius: 0;
        padding: 0;
        background: rgba(26, 18, 18, 0.6);
        min-width: 0;
        display: none;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 0.75rem 1.75rem;
        border-radius: 0;
        font-size: 0.875rem;
        border-bottom: 1px solid var(--dark-border);
        color: var(--white-80) !important;
        display: block;
        text-decoration: none;
    }
    .nav-mobile-cta-item .nav-cta-mobile {
        display: block;
        margin: 1rem 1.25rem;
        text-align: center;
        background: var(--gold-accent);
        color: var(--charcoal);
        font-weight: 700;
        font-size: 0.875rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-family: var(--font-primary);
        border-radius: 100px;
        border: 2px solid var(--gold-accent);
        padding: 0.875rem 2rem;
        text-decoration: none;
    }
    .nav-mobile-cta-item .nav-cta-mobile:hover {
        background: #ffc107;
        border-color: #ffc107;
        color: var(--charcoal);
    }
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    .dropdown-menu a:active {
        background: var(--border-grey);
        color: var(--crimson);
    }
    .dropdown-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 52px;
        height: 52px;
        background: none;
        border: none;
        border-left: 1px solid var(--border-grey);
        cursor: pointer;
        color: var(--gold-accent);
        transition:
            background 0.2s,
            color 0.2s;
    }
    .dropdown-toggle-btn:active {
        background: rgba(255, 184, 0, 0.1);
        color: var(--gold-accent);
    }
    .dropdown.open .dropdown-toggle-btn {
        color: var(--gold-accent);
    }
    .dropdown.open .dropdown-toggle-btn svg {
        transform: rotate(180deg);
    }
    .dropdown-toggle-btn svg {
        transition: transform 0.25s ease;
    }
    .nav-mobile-cta-item {
        display: block;
        border-bottom: none;
    }
    .nav-links .nav-cta-mobile {
        display: block;
        margin: 1.25rem 1.25rem 0.5rem;
        background: var(--gold-accent);
        color: var(--charcoal) !important;
        text-align: center;
        padding: 0.875rem 1rem;
        border-radius: 100px;
        border: 2px solid var(--gold-accent);
        font-weight: 700;
        font-size: 0.875rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-family: var(--font-primary);
        text-decoration: none;
    }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
    }

    /* Hero */
    .hero {
        padding: 6rem 1.25rem 0;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-content {
        width: 100%;
        padding-right: 0;
        padding-bottom: 2.5rem;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero-content h2 {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }
    /* Image wrap: becomes a normal flow block below the text */
    .hero-image-wrap {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% + 2.5rem); /* bleed to edges */
        margin-left: -1.25rem;
        height: 280px;
        transform: none;
        border-radius: 0;
        overflow: hidden;
        order: 2;
    }
    .hero-content {
        order: 1;
    }
    .hero-bg-shape {
        position: absolute;
        inset: 0;
    }
    .hero-accent-shape {
        display: none;
    }

    /* Address card: overlaid at bottom-left of the image on mobile.
       Position is relative to .hero; image is 280px at the bottom. */
    .hero-address-card {
        display: flex !important;
        position: absolute;
        bottom: 1rem;
        left: 1.25rem;
        right: auto;
        z-index: 10;
        transform: none;
    }

    /* Grids */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-strip {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2.5rem 1.25rem;
        justify-content: space-around;
    }
    .stat-item {
        min-width: 120px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer {
        padding: 3rem 1.25rem 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Section */
    .section {
        padding: var(--section-padding) 1.25rem;
    }
    .page-header {
        padding: 5rem 1.25rem 3rem;
        min-height: 380px;
    }
    .page-header h1 {
        font-size: 2.25rem;
    }
    .section-header h2 {
        font-size: 1.75rem;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }

    /* CTA */
    .cta-section {
        padding: var(--section-padding) 1.25rem;
    }
    .cta-section h2 {
        font-size: 1.75rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-outline-light {
        justify-content: center;
        text-align: center;
    }

    /* Misc */
    .quote {
        font-size: 1.125rem;
        padding: 1.5rem;
    }
    .hero-card {
        width: 100%;
        max-width: 300px;
    }

    /* Books */
    .book-item {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    .book-cover {
        width: 180px;
        margin: 0 auto;
    }
    .book-info .book-meta {
        justify-content: center;
    }
    .book-info .book-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .book-featured {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        text-align: center;
    }
    .book-featured .book-cover {
        max-width: 180px;
        margin: 0 auto;
    }
    .books-grid {
        grid-template-columns: 1fr;
    }

    /* Journal */
    .journal-card .journal-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Timeline */
    .timeline::before {
        left: 1.25rem;
    }
    .timeline-item {
        padding-left: 3.5rem;
        padding-right: 0;
    }
    .timeline-dot {
        left: 0.75rem;
    }
    .country-tags {
        justify-content: center;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline-light {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ── Small mobile (max 480px) ── */
@media (max-width: 480px) {
    :root {
        --section-padding: 2.5rem;
    }
    .hero h1,
    .hero-content h2 {
        font-size: 1.875rem;
    }
    .stat-number {
        font-size: 2.25rem;
    }
    .stats-strip {
        gap: 1.5rem;
    }
    .stat-item {
        min-width: 100px;
    }
    .card {
        padding: 1.5rem;
    }
    .team-card {
        padding: 1.5rem;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        gap: 1.25rem;
    }
    .page-header {
        min-height: 260px;
        padding: 4.5rem 1.25rem 2rem;
    }
    .page-header h1 {
        font-size: 1.6rem;
    }
    .page-header p {
        font-size: 1rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .home-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .footer-grid {
        gap: 1.5rem;
    }
    /* Prevent wide inline elements overflowing */
    .section img,
    .section table {
        max-width: 100%;
    }
}



/* ============================================================
   GCWAL — Timeline, Highlight Box, Country Tags, Story Photo, Collage
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-grey);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    width: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    background: var(--gold-accent);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--gold-accent);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -7px;
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.375rem;
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 1.125rem;
    color: var(--cream);
    line-height: 1.6;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: rgba(196, 30, 58, 0.06);
    border-left: 4px solid var(--crimson);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.highlight-box p {
    color: var(--cream);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== COUNTRY TAGS ===== */
.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.country-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: white;
    border: 1px solid var(--border-grey);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ===== IMAGE PLACEHOLDER ===== */

/* ===== STORY PHOTO ===== */
.story-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.story-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-photo figcaption {
    padding: 1rem 1.25rem;
    background: white;
    font-size: 0.875rem;
    color: var(--text-grey);
    text-align: center;
}

.story-photo figcaption strong {
    color: var(--charcoal);
    display: block;
    margin-bottom: 0.125rem;
}

/* ===== RESPONSIVE TIMELINE ===== */
@media (max-width: 768px) {
    .timeline::before {
        left: 1.25rem;
    }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 3.5rem;
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 0.75rem;
        right: auto;
    }
}

/* ===== PHOTO COLLAGE ===== */
.photo-collage {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
.photo-collage.layout-featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.photo-collage .collage-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}
.photo-collage .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.photo-collage .collage-item:hover img {
    transform: scale(1.03);
}
.photo-collage .collage-item.span-2 {
    grid-column: 1 / -1;
}
.photo-collage .collage-item.tall {
    grid-row: span 2;
}
.collage-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
@media (max-width: 768px) {
    .photo-collage {
        grid-template-columns: 1fr;
    }
    .photo-collage .collage-item.tall {
        grid-row: span 1;
    }
}


/* ============================================================
   GCWAL — Journal Page + Conferences & Events
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== JOURNAL PAGE ===== */



.journal-meta span {
    font-size: 0.9375rem;
}
.journal-meta strong {
    color: var(--charcoal);
}
.volume-section {
    margin-bottom: 2.5rem;
}
.volume-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
}
.volume-header:hover {
    background: #f9f8f6;
}
.volume-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0;
}
.volume-header .volume-year {
    font-size: 0.875rem;
    color: var(--cream);
    font-weight: 400;
    margin-left: 0.75rem;
}
.volume-header .toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--cream);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.volume-header.open .toggle-icon {
    transform: rotate(180deg);
}
.volume-articles {
    display: none;
    padding: 0.625rem 0 0;
    counter-reset: article-counter;
}
.volume-articles.open {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.article-item {
    position: relative;
    padding: 0.875rem 1.25rem 0.875rem 3.25rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    transition: var(--transition);
    margin-bottom: 0;
    counter-increment: article-counter;
}
.article-item::before {
    content: counter(article-counter, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: 0.925rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold-accent);
    opacity: 0.5;
    font-variant-numeric: tabular-nums;
}
.article-item:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 184, 0, 0.22);
}
.article-item .article-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin-bottom: 0.35rem;
}
.article-item .article-authors {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--gold-accent);
    opacity: 0.75;
}
.article-item .article-authors::before {
    content: "— ";
    font-style: normal;
}
.article-item .article-tag {
    display: inline-block;
    background: rgba(255, 184, 0, 0.1);
    color: var(--gold-accent);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 184, 0, 0.2);
}
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}
.archive-link {
    display: block;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-grey);
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
}
.archive-link:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.08);
}
.archive-link .archive-vol {
    font-weight: 600;
    color: var(--cream);
    font-size: 0.9375rem;
}
.archive-link .archive-year {
    color: var(--cream);
    font-size: 0.875rem;
}
@media (max-width: 768px) {
    
    
    
    .volume-header h3 {
        font-size: 1rem;
    }
}

/* ===== CONFERENCES & EVENTS ===== */
.event-card {
    background: var(--bg-card);
    border: 1px solid var(--white-07);
    border-left: 3px solid var(--gold-accent);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.event-card:hover {
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
    transform: translateY(-2px);
    border-left-color: var(--gold-accent);
}
.event-card-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
}
.event-card-image {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
}
.event-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 0.75rem;
}
.event-location {
    font-size: 0.875rem;
    color: var(--white-45);
    margin-bottom: 0.75rem;
}
.event-card-body p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Photo Gallery Grid */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.photo-gallery .gallery-item {
    overflow: hidden;
    border-radius: 100px;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}
.photo-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.photo-gallery .gallery-item:hover img {
    transform: scale(1.08);
}
.photo-gallery .gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}
.photo-gallery .gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}
.photo-gallery .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white-15);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-nav:hover {
    background: var(--white-30);
}
.lightbox-nav.prev {
    left: 1.5rem;
}
.lightbox-nav.next {
    right: 1.5rem;
}

@media (max-width: 1200px) {
    .photo-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-gallery .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
    .photo-gallery .gallery-item.wide {
        grid-column: span 2;
    }
    .event-card-grid {
        grid-template-columns: 1fr;
    }
    .event-card-image {
        height: 200px;
        max-height: 200px;
    }
}



/* ============================================================
   GCWAL — Interactive Learning Journey, Transcript, Creative Thinking, Action Research, Hero Play Card
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== INTERACTIVE WAL LEARNING JOURNEY ===== */


/* Progress bar at top */

.wal-journey-progress::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--border-grey);
    z-index: 0;
}

.wal-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 110px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
}

.wal-step-dot.active 
.wal-step-dot.completed 

.wal-step-dot.active 
.wal-step-dot.completed 

/* Step content panel */

.wal-slide {
    display: none;
    animation: walSlideIn 0.4s ease;
}
.wal-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@keyframes walSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.wal-slide-left h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.wal-slide-left p {
    font-size: 1.125rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.wal-key-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.45;
}
.wal-key-points li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--crimson);
    flex-shrink: 0;
    margin-top: 0.45em;
}


/* Right side of each slide */


/* Visual elements within right panels */


.wal-formula-display span {
    color: var(--crimson);
}




.wal-phase-item:hover {
    transform: translateX(4px);
}

.wal-phase-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.1rem;
}
.wal-phase-text span {
    font-size: 0.875rem;
    color: var(--text-grey);
}



.wal-method-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}
.wal-method-card p {
    font-size: 1.125rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.5;
}




.wal-compare-cell.header {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--charcoal);
    color: white;
}
.wal-compare-cell.wal-col {
    border-left: 3px solid var(--crimson);
    color: var(--charcoal);
    font-weight: 500;
}
.wal-compare-cell.wbl-col {
    color: var(--text-grey);
}



.wal-outcome-chip svg {
    display: block;
    margin: 0 auto 0.4rem;
    color: var(--crimson);
}

/* Journey navigation */


.wal-nav-btn:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}
.wal-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.wal-nav-btn.next-btn {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
}
.wal-nav-btn.next-btn:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
}

.wal-nav-counter span {
    color: var(--crimson);
}

@media (max-width: 900px) {
    .wal-slide.active {
        grid-template-columns: 1fr;
    }
    
    
    
    
    .wal-journey-progress::before {
        width: calc(100% - 40px);
    }
    
}

/* ===== TRANSCRIPT: CREATIVE THINKING & ACTION RESEARCH SECTION ===== */

/* Diagram reference */




.clp-diagram-caption svg {
    flex-shrink: 0;
    color: var(--crimson);
}

@media (max-width: 768px) {
    
}

/* Tab navigation */

.tscript-tabs::-webkit-scrollbar {
    display: none;
}
.tscript-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-grey);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.tscript-tab:hover {
    color: var(--charcoal);
}
.tscript-tab.active {
    color: var(--crimson);
    border-bottom-color: var(--crimson);
}
.tscript-tab svg {
    transition: color 0.2s;
}

/* Tab panels */
.tscript-panel {
    display: none;
}
.tscript-panel.active {
    display: block;
    animation: walSlideIn 0.35s ease;
}

/* ---- CREATIVE THINKING STAGES ---- */

.creative-stage {
    background: white;
    padding: 1.5rem 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    border-right: 1px solid var(--border-grey);
    text-align: center;
}
.creative-stage:last-child {
    border-right: none;
}
.creative-stage::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.2s;
}
.creative-stage:hover::after {
    background: rgba(196, 30, 58, 0.4);
}
.creative-stage.active::after {
    background: var(--crimson);
}
.creative-stage.active {
    background: rgba(196, 30, 58, 0.04);
}

.creative-stage.active 





.creative-detail-body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.4rem;
}
.creative-detail-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.creative-detail-body p {
    font-size: 1.125rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
}

/* ---- AWARENESS JOURNEY ---- */

.awareness-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: background 0.2s;
}
.awareness-step:hover {
    background: rgba(196, 30, 58, 0.03);
}
.awareness-step.active {
    background: rgba(196, 30, 58, 0.05);
}


.awareness-step.active 

.awareness-step.active .awareness-line,
.awareness-step.done 
.awareness-step.done 
.awareness-step:last-child 

.awareness-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0;
    transition: color 0.2s;
}
.awareness-step.active .awareness-body h4 {
    color: var(--crimson);
}
.awareness-body p {
    font-size: 1.125rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;
}
.awareness-step.active .awareness-body p {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.35rem;
}

/* ---- ACTION RESEARCH CYCLE ---- */


.arc-ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.arc-step-btn {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-grey);
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-grey);
    text-align: center;
    line-height: 1.2;
    padding: 0.25rem;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.arc-step-btn:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}
.arc-step-btn.active {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
    box-shadow: 0 4px 18px rgba(196, 30, 58, 0.35);
    transform: translate(-50%, -50%) scale(1.1);
}

.arc-centre span {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-grey);
}
.arc-centre strong {
    display: block;
    font-size: 0.9rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--charcoal);
    margin-top: 0.15rem;
    line-height: 1.2;
}


.arc-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}
.arc-info p {
    font-size: 1.125rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
}


@media (max-width: 900px) {
    
    .creative-stage:nth-child(3) {
        border-right: none;
    }
    
    
    .arc-step-btn {
        width: 56px;
        height: 56px;
        font-size: 0.875rem;
    }
    .tscript-tab {
        padding: 0.7rem 1rem;
        font-size: 0.875rem;
    }
}

/* ===== HERO PLAY CARD & VIDEO MODAL ===== */

/* Play card positioned top-left of hero */




.hero-play-btn:hover {
    background: var(--white-25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

/* Play icon circle */


/* Text beside play button */






/* ── Video Modal ── */


.gcwal-video-modal.open {
    opacity: 1;
    pointer-events: all;
}





.gcwal-video-modal.open 



.gcwal-modal-close:hover {
    background: var(--white-30);
}

/* 16:9 responsive iframe wrapper */


.gcwal-modal-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    
    
    
    
    
    .page-header .header-pills {
        margin-top: 1.5rem;
    }
    .page-header .header-pill {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}



/* ============================================================
   GCWAL — Utility Classes
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== UTILITY CLASSES ===== */
/* Margin Top */



.u-mt-0-75 {
    margin-top: 0.75rem;
}

.u-mt-1-25 {
    margin-top: 1.25rem;
}
.u-mt-1-5 {
    margin-top: 1.5rem;
}
.u-mt-2 {
    margin-top: 2rem;
}

/* Margin Bottom */
.u-mb-1 {
    margin-bottom: 1rem;
}
.u-mb-1-5 {
    margin-bottom: 1.5rem;
}
.u-mb-2 {
    margin-bottom: 2rem;
}
.u-mb-3 {
    margin-bottom: 3rem;
}

.u-mb-4 {
    margin-bottom: 4rem;
}

/* Margin Horizontal Auto */
.u-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Margin Vertical */
.u-my-2 {
    margin: 2rem 0;
}

/* Padding */

.u-p-1-5 {
    padding: 1.5rem;
}



/* Gap */
.u-gap-1-5 {
    gap: 1.5rem;
}
.u-gap-2 {
    gap: 2rem;
}



/* Display */
.u-d-none {
    display: none !important;
}



/* Max Width */

.u-maxw-600 {
    max-width: 600px;
}

.u-maxw-900 {
    max-width: 900px;
}

/* Aspect Ratio */




.u-row-gap-1 {
    row-gap: 1rem;
}
/* Color utilities */
.u-color-crimson {
    color: var(--crimson);
}
.u-color-gold-accent {
    color: var(--gold-accent);
}




/* Section tag (pill label above card headings) */
.section-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-tag-crimson {
    color: #1a1a1a;
    background: var(--gold-accent);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

/* Simple list (no bullets, borderless) */
.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    background: transparent;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.simple-list li:last-child {
    border-bottom: none;
}

.simple-list--gold li {
    border-bottom-color: rgba(212, 175, 55, 0.15);
    padding-left: 1.25rem;
    position: relative;
}

.simple-list--gold li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-accent);
}

.simple-list--gold-text li {
    color: var(--gold-accent);
}

/* Font-size utilities */


.u-fz-0-9rem {
    font-size: 0.9rem;
}


/* Text alignment */
.u-text-center {
    text-align: center;
}




/* ============================================================
   GCWAL — Programme Pages
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== PROGRAMME PAGES (merged from programme.css) ===== */
/* ===== PROGRAMME PAGE STYLES ===== */
/* Extracted from programme pages: individual-change, manager-team-change, organisational-change */

/* ===== PROGRAMME SECTIONS ===== */








.prog-prog-sidebar h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.prog-prog--warm .prog-prog-sidebar p {
    color: var(--charcoal);
}





.prog-prog--warm 

/* ===== STEPS ===== */


.prog-subsection:last-child {
    margin-bottom: 0;
}



.prog-subsection-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--crimson);
    opacity: 0.22;
}





.prog-prog--warm 

.prog-step:last-child {
    border-bottom: none;
}



.prog-step p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--cream);
    margin: 0;
}

.prog-prog--warm .prog-step p {
    color: var(--charcoal);
}

/* ===== DELIVERABLES ===== */




.prog-prog--warm 



.prog-deliver-icon svg {
    width: 15px;
    height: 15px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.prog-deliver p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
    padding-top: 0.22rem;
}

.prog-prog--warm .prog-deliver p {
    color: var(--cream);
}

/* ===== DESIGNED FOR ===== */




.prog-prog--warm 

.prog-for-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--crimson);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 0.18rem;
}

.prog-for-item p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0;
}

.prog-prog--warm .prog-for-item p {
    color: var(--cream);
}

/* ===== PATHWAY ===== */










.prog-pathway-arrow svg {
    width: 26px;
    height: 26px;
    stroke: var(--crimson);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}



.prog-pathway-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--charcoal);
}

.prog-pathway-card p {
    font-size: 1rem;
    color: var(--text-grey);
    margin: 0 0 1.25rem;
    line-height: 1.65;
}





/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    

    
}

@media (max-width: 768px) {
    

    

    

    

    
}

/* ===== PROGRAMMES OVERVIEW LAYOUT ===== */

.grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Equal 50/50 columns matching original design */






/* Info panels — L-corner accent: top + left border only */


/* WBL — clean white, crimson corner accent */


/* WAL — warm parchment, gold corner accent */


.prog-panel h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.prog-panel h2 span {
    color: var(--crimson);
}

.prog-panel--dark h2 span {
    color: #8a5e24;
}





.panel-meta h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--charcoal);
}

.panel-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}

.panel-meta li {
    font-size: 0.88rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
    color: #666666;
}



/* Crimson bullets for WBL */
.prog-panel--light 

/* Amber/gold bullets for WAL */
.prog-panel--dark 

/* Stacked WBL cards column */








/* Connector divider between WBL and WAL rows */


/* Featured WAL card fills the full column height */


.card--featured ul {
    flex: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    

    

    
}

@media (max-width: 600px) {
    

    
}



/* ============================================================
   GCWAL — Certifications Section
   Part of styles.css — concatenated at build time
   ============================================================ */

/* =====================================================
   THEME B: PROGRAMME PAGE OVERRIDES
   All hardcoded light colours flipped to dark.
   ===================================================== */

/* Panels */




.prog-panel h2 {
    color: var(--text-primary);
}

.prog-panel h2 span,
.prog-panel--dark h2 span {
    color: var(--gold-accent);
}



.panel-meta h4 {
    color: var(--text-light);
}

.panel-meta li {
    color: var(--text-tertiary);
}

.prog-panel--light .bullet,
.prog-panel--dark .bullet {
    color: var(--gold-accent);
}

.prog-badge--light,


/* Divider */


/* oc2 programme sections (individual/manager/org change pages) */




.prog-prog-sidebar h2 {
    color: var(--text-primary);
}

.prog-prog-sidebar p,
.prog-prog--warm .prog-prog-sidebar p {
    color: var(--text-tertiary);
}







.prog-subsection-label::after {
    background: var(--gold-accent);
}





.prog-for-item svg {
    stroke: var(--gold-accent);
}

.prog-pathway-arrow svg {
    stroke: var(--gold-accent);
}



.prog-prog--warm 



.prog-prog--warm 

.prog-step p {
    color: var(--text-secondary);
}

.prog-prog--warm .prog-step p {
    color: var(--text-secondary);
}



.prog-prog--warm 

.prog-deliver p {
    color: var(--text-secondary);
}



.prog-prog--warm 

.prog-for-item p {
    color: var(--text-secondary);
}







.prog-pathway-card h3 {
    color: var(--text-primary);
}

.prog-pathway-card p {
    color: var(--text-tertiary);
}





/* ============================================================
   GCWAL — Licensing Pages
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== LICENSING PAGES (merged from licensing.css) ===== */
/* ===== LICENSING PAGE STYLES ===== */
/* Extracted from: programme-licensing.html, programme-licensing-details.html */

/* ===== CRITERIA LIST ===== */
.criteria-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #e8e4de;
}

.criteria-list li:last-child {
    border-bottom: none;
}



/* ===== ENHANCED PROCESS DIAGRAM ===== */


.lp-diagram-wrap svg {
    min-width: 900px;
    width: 100%;
    height: auto;
    display: block;
}





/* ===== CONTENT BLOCKS ===== */
.content-block {
    background: white;
    border: 2px solid #e8e4de;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.content-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #f0ece7;
}

.content-block-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #ffc107, #ffb800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.35);
}

.content-block-header h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

/* ===== PROGRAMME CARDS WITH ICONS ===== */
.programme-card {
    background: white;
    border: 2px solid #e8e4de;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.programme-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson), var(--crimson-bright));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.programme-card:hover {
    border-color: var(--crimson);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.15);
}

.programme-card:hover::before {
    transform: scaleX(1);
}

.programme-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #faf8f5, #f5f1ec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
}

.programme-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
}

.programme-card h3 {
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.programme-card p {
    color: var(--text-grey);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== REQUIREMENT STEP CARDS ===== */
.requirement-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8e4de;
    transition: all 0.3s ease;
}

.requirement-step:hover {
    border-color: var(--crimson);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.1);
}

.requirement-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #ffc107, #ffb800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.35);
}

/* ===== PROGRAMME LEVEL BADGES ===== */
.programme-level-card {
    background: white;
    border: 2px solid #e8e4de;
    border-radius: 14px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.programme-level-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffc107, #ffb800);
}

.programme-level-card:hover {
    border-color: var(--crimson);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.1);
}

.programme-level-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ffb800);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* ===== QUALITY ASSURANCE GRID ===== */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.qa-card {
    background: white;
    border: 2px solid #e8e4de;
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.qa-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--crimson-bright));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.qa-card:hover {
    border-color: var(--crimson);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.12);
}

.qa-card:hover::after {
    transform: scaleX(1);
}

.qa-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #faf8f5, #f5f1ec);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold-accent);
}

.qa-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

/* ===== BENEFIT LISTS ===== */
.benefit-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 1.5rem 0 0 !important;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0ece7;
    transition: all 0.3s ease;
    list-style: none !important;
}

.benefit-list li::before {
    display: none !important;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li:hover {
    padding-left: 0.5rem;
    background: rgba(250, 248, 245, 0.5);
}

.benefit-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #ffc107, #ffb800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    margin-top: 0.1rem;
}

/* ===== PROCESS FLOW DIAGRAM ===== */


.process-diagram-wrap svg {
    min-width: 1400px;
    width: 100%;
    height: auto;
    display: block;
}





/* ===== BACK LINK ===== */
.lp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 3rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lp-back-link:hover {
    background: rgba(196, 30, 58, 0.05);
    border-color: var(--gold-accent);
    transform: translateX(-4px);
}

.lp-back-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.lp-back-link:hover svg {
    transform: translateX(-4px);
}

/* ===== EXCEPTION CALLOUT ===== */
.exception-box {
    margin-top: 2rem;
    background: linear-gradient(to right, rgba(255, 184, 0, 0.08), white);
    border-left: 4px solid var(--gold-accent);
    padding: 1.75rem 2rem;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(255, 184, 0, 0.1);
}

.exception-box strong {
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

/* ===== THEME B: DARK MODE OVERRIDES =====
   SVG text: CSS fill overrides SVG fill attributes
   ================================================ */
.lp-diagram-wrap text {
    fill: var(--white-85);
}
.process-diagram-wrap text {
    fill: var(--white-85);
}

/* ===== THEME B: DARK MODE OVERRIDES ===== */
.content-block {
    background: var(--bg-card) !important;
    border-color: var(--white-07) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.content-block-header {
    border-bottom-color: var(--white-07);
}

.content-block-header h3 {
    color: var(--text-primary);
}





.programme-card {
    background: var(--bg-card) !important;
    border-color: var(--white-07) !important;
}

.programme-card h3 {
    color: var(--text-primary);
}

.programme-card p {
    color: var(--white-65);
}

.programme-icon {
    background: var(--white-06);
}

.requirement-step {
    background: var(--bg-hover) !important;
    border-color: var(--white-07) !important;
}

.requirement-step:hover {
    border-color: rgba(196, 30, 58, 0.5);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.12);
}

.programme-level-card {
    background: var(--bg-card) !important;
    border-color: var(--white-07) !important;
}

.programme-level-card:hover {
    border-color: rgba(196, 30, 58, 0.5);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.12);
}

.qa-card {
    background: var(--bg-card) !important;
    border-color: var(--white-07) !important;
}

.qa-card:hover {
    border-color: rgba(196, 30, 58, 0.5);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.14);
}

.qa-icon {
    background: var(--white-06);
}

.lp-back-link {
    background: var(--bg-hover) !important;
}

.lp-back-link:hover {
    background: rgba(196, 30, 58, 0.08);
    border-color: var(--gold-accent);
}

.exception-box {
    background: linear-gradient(
        to right,
        rgba(255, 184, 0, 0.12),
        #1a1a1a
    ) !important;
}

.criteria-list li {
    border-bottom-color: var(--white-07);
}

.benefit-list li {
    border-bottom-color: var(--white-07);
}

.benefit-list li:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* ===== GOLD ACCENT: SUB-HEADINGS & CARD TITLES ===== */
/* Override inline style="color: var(--crimson)" on section sub-headings */
.content-block .content-section > h3 {
    color: var(--gold-accent) !important;
}

.qa-card h4 {
    color: var(--gold-accent) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .qa-grid {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

    .content-block-header h3 {
        font-size: 1.25rem;
    }

    .programme-card {
        padding: 1.5rem;
    }
}



/* ============================================================
   GCWAL — Home Page
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ============================================================
   HOMEPAGE REDESIGN — template1 layout
   ============================================================ */

/* Material Symbols */
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
    vertical-align: middle;
}

/* ===== HOME HERO ===== */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 9rem clamp(1.5rem, 5vw, 5rem) 5rem;
    overflow: hidden;
    background: #0a0000;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/gcwal-building-bg.png");
    background-size: cover;
    background-position: center 25%;
    z-index: 0;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.2) 12%,
            rgba(0, 0, 0, 0) 25%
        ),
        linear-gradient(
            to right,
            rgba(26, 0, 0, 0.95) 0%,
            rgba(26, 0, 0, 0.85) 40%,
            rgb(26 0 0 / 0%) 65%,
            rgba(26, 0, 0, 0) 100%
        );
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    animation: fadeInUp 0.9s ease-out;
}

.home-hero-content h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.home-hero-content h1 span {
    color: var(--gold-accent);
    font-style: italic;
}

.home-hero-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* ===== HOME STATS STRIP ===== */








/* ===== HOME PATHWAYS ===== */




.home-pathway-card:hover {
    border-color: var(--crimson);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.home-pathway-card.featured {
    background: var(--crimson);
    border-color: var(--crimson);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.4);
}

.home-pathway-card.featured:hover {
    border-color: var(--crimson-bright);
    box-shadow: 0 24px 60px rgba(139, 0, 0, 0.5);
}



.home-pathway-card:hover 





.home-pathway-card h3 {
    font-size: 1.375rem;
    color: white;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.home-pathway-card p {
    font-size: 1.125rem;
    color: var(--white-60);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.75rem;
}

.home-pathway-card.featured p {
    color: var(--white-85);
}

.home-pathway-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-primary);
    transition: gap 0.2s ease;
    margin-top: auto;
}

.home-pathway-link:hover {
    gap: 0.875rem;
    color: var(--crimson);
}

/* ===== HOME CRUCIBLE SECTION ===== */






.home-crucible-image-wrap > img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    filter: grayscale(15%);
    transition: filter 0.6s ease;
}

.home-crucible-image-wrap:hover > img {
    filter: grayscale(0);
}



.home-crucible-pullout h4 {
    color: var(--gold-accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.home-crucible-pullout p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.87);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.home-crucible-text .eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.25rem;
    font-family: var(--font-primary);
}

.home-crucible-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.home-crucible-text > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}







.home-feature-item h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.home-feature-item p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
    line-height: 1.6;
}

/* ===== HOME FOUNDER QUOTE ===== */






.home-quote-card blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.93);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}





.home-quote-attribution cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.home-quote-attribution .attribution-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-primary);
}

/* ===== HOME FINAL CTA ===== */


.home-final-cta::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 184, 0, 0.04);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.home-final-cta::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.home-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.home-final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.home-final-cta .cta-buttons {
    position: relative;
    z-index: 1;
}

/* ===== MOBILE BUILDING IMAGE ===== */
/* Hidden by default — only shown on mobile below the hero */
.home-hero-mobile-img {
    display: none;
}

.home-hero-mobile-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* ===== PATHWAY CARDS ===== */
.home-pathway-card {
    display: flex;
    flex-direction: column;
}
.home-pathway-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

/* ===== CREDIBILITY STRIP ===== */
.home-cred-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.home-cred-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 1.5rem 1rem;
}
.home-cred-value {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
}
.home-cred-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.home-cred-divider {
    width: 1px;
    height: 48px;
    background: var(--border-grey);
    flex-shrink: 0;
}

/* ===== WHAT WAL IS NOT ===== */
.home-not-card {
    display: flex;
    flex-direction: column;
}
.home-not-card h4 {
    font-size: clamp(1.125rem, 1.8vw, 1.3rem);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.home-not-link {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-decoration: none;
}
.home-not-link:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE: HOMEPAGE ===== */
@media (max-width: 1100px) {


}

@media (max-width: 900px) {


}

@media (max-width: 640px) {
    .home-hero {
        padding: 8rem 1.25rem 4rem;
        min-height: auto;
    }

    /* Hide the CSS background image and overlay on mobile */
    .home-hero-bg--desktop,
    .home-hero-overlay--desktop {
        display: none;
    }

    /* Show the inline image below the hero text */
    .home-hero-mobile-img {
        display: block;
    }

    .home-final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}



/* ============================================================
   GCWAL — Remaining Page-Specific Styles
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ============================================================
   HOMEPAGE MANIFESTO & PROOF SECTIONS
   ============================================================ */

.manifesto-body p {
    font-size: 1.125rem;
    color: var(--white-60);
    line-height: 1.9;
    margin: 0;
}

.manifesto-body a.manifesto-link {
    display: inline-block;
    margin-top: 1.75rem;
    color: var(--gold-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 184, 0, 0.3);
    padding-bottom: 2px;
    transition:
        border-color 0.2s ease,
        letter-spacing 0.2s ease;
}

.manifesto-body a.manifesto-link:hover {
    border-color: var(--gold-accent);
    letter-spacing: 0.03em;
    color: var(--gold-accent);
}

/* Global proof section */

.home-proof-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 480px;
    line-height: 1.2;
}

.home-proof-header p {
    font-size: 1.125rem;
    color: var(--white-55);
    max-width: 320px;
    text-align: right;
    line-height: 1.7;
}

.home-proof-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.75);
    transition:
        filter 0.5s ease,
        transform 0.6s ease;
    display: block;
}

.home-proof-tile:hover img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .home-proof-tile:first-child {
        grid-column: 1 / -1;
    }

    .home-proof-header p {
        text-align: left;
        max-width: 100%;
    }
}

/* ============================================================
   LICENSING PAGE — EDITORIAL REDESIGN
   ============================================================ */

.lp-eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

.lp-hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: white;
    line-height: 1.02;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    max-width: 850px;
    font-weight: 700;
}

/* Hero card for licensing page matching certifications design */

.hero-licensing-content h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.hero-licensing-content .hero-lead {
    font-size: 1.125rem;
    color: #050505;
    margin-bottom: 1rem;
}

.hero-licensing-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.hero-licensing-card p {
    margin-bottom: 1rem;
    color: var(--white-85);
    line-height: 1.8;
}

.hero-licensing-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--white-75);
    line-height: 1.7;
}

/* Meaning / intro section */
.lp-meaning-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: start;
}

.lp-meaning-text p {
    font-size: 1.125rem;
    color: var(--cream);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.lp-meaning-text p:last-child {
    margin-bottom: 0;
}

.lp-criteria-panel {
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--gold-accent);
    border-radius: 10px;
    padding: 2.25rem 2.5rem;
    position: sticky;
    top: 6rem;
}

.lp-criteria-panel h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-accent);
    margin-bottom: 1.75rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.lp-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.lp-criteria-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.525rem;
}

/* Standards grid */
.lp-standards-section {
    background: var(--bg-section);
}

.lp-standards-intro {
    margin-bottom: 4rem;
    max-width: 700px;
}

.lp-standards-intro h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: white;
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.lp-standards-intro p {
    font-size: 1.125rem;
    color: var(--white-55);
    line-height: 1.7;
    margin: 0;
}

.lp-standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.lp-standard {
    background: var(--bg-card);
    padding: 3rem 3.25rem;
    transition: background 0.25s ease;
}

.lp-standard:hover {
    background: var(--bg-hover);
}

.lp-standard-n {
    display: block;
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: italic;
}

.lp-standard h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.875rem;
}

.lp-standard p {
    font-size: 1.125rem;
    color: var(--white-55);
    line-height: 1.75;
    margin: 0;
}

/* Sectors */
.lp-sectors-section {
    background: var(--bg-secondary);
}

.lp-sectors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.lp-sector-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    cursor: default;
}

.lp-sector-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.6);
    transition:
        filter 0.5s ease,
        transform 0.5s ease;
}

.lp-sector-card:hover img {
    filter: brightness(0.5) saturate(0.75);
    transform: scale(1.03);
}

.lp-sector-content {
    position: relative;
    z-index: 1;
    padding: 2.75rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.4) 55%,
        transparent 100%
    );
    width: 100%;
}

.lp-sector-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.lp-sector-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    max-width: 380px;
    margin: 0;
}

/* Process steps */
.lp-process-section {
    background: var(--bg-section);
}

.lp-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3.5rem;
}

.lp-process-steps::before {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--crimson) 0%,
        var(--crimson) 75%,
        var(--gold-accent) 100%
    );
    opacity: 0.6;
    z-index: 0;
}

.lp-step {
    text-align: center;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}

.lp-step-circle {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    border: 2px solid var(--white-10);
}

.lp-step:last-child .lp-step-circle {
    background: var(--bg-card);
    border: 2px solid var(--crimson);
    box-shadow: 0 0 0 6px rgba(139, 0, 0, 0.12);
}

.lp-step h4 {
    font-size: 0.9375rem;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.lp-step p {
    font-size: 1.125rem;
    color: var(--white-50);
    line-height: 1.6;
    margin: 0;
}

/* Licensing final CTA — editorial */
.lp-final-cta {
    background: #000000;
    padding: 6rem clamp(1.5rem, 5vw, 5rem);
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 100%;
}

.lp-final-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.lp-final-cta p {
    font-size: 1.125rem;
    color: var(--white-60);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.lp-final-cta .cta-buttons {
    justify-content: flex-start;
}

.lp-final-right {
    border-left: 1px solid var(--border-color);
    padding-left: 5rem;
}

.lp-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.lp-detail-list li .lp-detail-icon {
    color: var(--gold-accent);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Three-party relationship grid */
.lp-parties-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.lp-parties-divider {
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
    align-self: stretch;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-parties-grid {
        grid-template-columns: 1fr;
    }
    .lp-parties-divider {
        display: none;
    }
    .lp-meaning-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lp-criteria-panel {
        position: static;
    }
    .lp-standards-grid {
        grid-template-columns: 1fr;
    }
    .lp-sectors-grid {
        grid-template-columns: 1fr;
    }
    .lp-process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lp-process-steps::before {
        display: none;
    }
    .lp-step {
        display: grid;
        grid-template-columns: 4.5rem 1fr;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
    }
    .lp-step-circle {
        margin: 0;
        grid-row: 1 / 3;
        align-self: center;
    }
    .lp-step p {
        grid-column: 2;
    }
    .lp-final-cta {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lp-final-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 3rem;
    }
}

@media (max-width: 768px) {
    .lp-hero h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
        margin-bottom: 1.5rem;
    }
    .lp-eyebrow {
        margin-bottom: 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRAMMES PAGE  (pp-*)
   ══════════════════════════════════════════════════════════════════ */

/* --- Hero Statement --- */

.pp-hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.pp-hero-text h1 em {
    font-style: italic;
    color: var(--gold-accent);
}
.pp-hero-text p {
    font-size: 1.125rem;
    color: rgba(245, 240, 230, 0.75);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}

.pp-hero-link:hover {
    color: var(--white);
    border-color: var(--white);
}

.pp-hero-diagram img {
    width: 100%;
    max-width: 480px;
    filter: brightness(0.9) saturate(0.8);
    border-radius: 8px;
}

/* --- Pathways Strips Container --- */
.pp-pathways {
    padding: 5rem 0 0;
    background: var(--surface-light);
}

/* --- Individual Strip --- */
.pp-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.pp-strip--right .pp-strip-photo {
    order: 2;
}
.pp-strip--right .pp-strip-content {
    order: 1;
}
.pp-strip-photo {
    position: relative;
    overflow: hidden;
}
.pp-strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.pp-strip:hover .pp-strip-photo img {
    transform: scale(1.03);
}
.pp-strip-content {
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}
.pp-strip--dark .pp-strip-content {
    background: var(--ink);
}
.pp-strip--dark .pp-strip-content h2 {
    color: var(--cream);
}
.pp-strip--dark .pp-strip-content p {
    color: rgba(245, 240, 230, 0.75);
}
.pp-strip--dark .pp-strip-content .pp-strip-lead {
    color: rgba(245, 240, 230, 0.9);
}
.pp-stream-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    width: fit-content;
}
.pp-stream-label--wbl {
    background: rgba(196, 30, 58, 0.1);
    color: var(--crimson);
    border: 1px solid rgba(196, 30, 58, 0.2);
}
.pp-stream-label--wal {
    background: rgba(255, 184, 0, 0.12);
    color: #a07a00;
    border: 1px solid rgba(255, 184, 0, 0.3);
}
.pp-strip--dark .pp-stream-label--wbl {
    background: rgba(196, 30, 58, 0.2);
    color: #f08090;
    border-color: rgba(196, 30, 58, 0.35);
}
.pp-strip--dark .pp-stream-label--wal {
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-accent);
    border-color: rgba(255, 184, 0, 0.3);
}
.pp-strip-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.pp-strip-content h2 span {
    color: var(--crimson);
}
.pp-strip--dark .pp-strip-content h2 span {
    color: var(--gold-accent);
}
.pp-strip-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.pp-strip-content p {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.pp-strip-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.pp-strip--dark .pp-strip-meta {
    border-color: var(--white-10);
}
.pp-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}
.pp-strip--dark .pp-meta-item {
    color: rgba(245, 240, 230, 0.65);
}
.pp-meta-item .material-symbols-outlined {
    font-size: 1rem;
    color: var(--crimson);
}
.pp-strip--dark .pp-meta-item .material-symbols-outlined {
    color: var(--gold-accent);
}
.pp-strip-cta {
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--crimson);
    text-decoration: none;
    border-bottom: 2px solid var(--crimson);
    padding-bottom: 2px;
    width: fit-content;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.pp-strip--dark .pp-strip-cta {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}
.pp-strip-cta:hover {
    color: var(--ink);
    border-color: var(--ink);
}
.pp-strip--dark .pp-strip-cta:hover {
    color: var(--white);
    border-color: var(--white);
}

/* --- Framework Explainer --- */
.pp-framework {
    padding: 6rem 0;
    background: var(--surface-light);
}
.pp-framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.pp-framework-text .eyebrow {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--crimson);
    margin-bottom: 1rem;
}
.pp-framework-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 700;
    color: var(--ink);
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.pp-framework-text p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.pp-framework-diagram img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .pp-strip {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .pp-strip-photo {
        height: 280px;
    }
    .pp-strip--right .pp-strip-photo,
    .pp-strip--right .pp-strip-content {
        order: unset;
    }
    .pp-strip-content {
        padding: 2.5rem 1.5rem;
    }
    .pp-framework-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pp-framework-diagram {
        display: none;
    }
    .pp-strip-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRAMME DETAIL PAGES  (ppage-*)
   ══════════════════════════════════════════════════════════════════ */

/* --- Editorial Intro --- */
.ppage-intro {
    background: var(--ink);
    padding: 5rem 0;
}
.ppage-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.ppage-eyebrow {
    display: block;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}
.ppage-intro-lead {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.ppage-intro-text p:not(.ppage-intro-lead) {
    color: rgba(245, 240, 230, 0.65);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 0.85rem;
}
.ppage-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 3rem;
    border-left: 1px solid rgba(255, 184, 0, 0.2);
}
.ppage-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
}
.ppage-stat-num small {
    font-size: 0.45em;
    font-weight: 400;
    color: rgba(255, 184, 0, 0.55);
    margin-left: 0.15em;
}
.ppage-stat-label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 230, 0.35);
    margin-top: 0.35rem;
}

/* --- Programme Block --- */
.ppage-block {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.ppage-block--alt {
    background: var(--ink);
}

/* --- Programme Header --- */
.ppage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}
.ppage-block--alt .ppage-header {
    border-color: var(--white-08);
}
.ppage-stream-tag {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--crimson);
    margin-bottom: 0.75rem;
}
.ppage-stream-tag--wal {
    color: var(--gold-accent);
}
.ppage-block--alt .ppage-stream-tag {
    color: var(--gold-accent);
}
.ppage-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    margin: 0;
}
.ppage-header h2 span {
    color: var(--crimson);
}
.ppage-block--alt .ppage-header h2 {
    color: var(--cream);
}
.ppage-block--alt .ppage-header h2 span {
    color: var(--gold-accent);
}
.ppage-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    flex-shrink: 0;
    padding-left: 2rem;
}
.ppage-duration {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gold-accent);
    white-space: nowrap;
}
.ppage-brochure {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    text-decoration: none;
    border: 1px solid var(--charcoal);
    padding: 0.55rem 1rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.ppage-brochure .material-symbols-outlined {
    font-size: 0.95rem;
}
.ppage-brochure:hover {
    background: var(--crimson);
    color: var(--white);
    border-color: var(--crimson);
}
.ppage-block--alt .ppage-brochure {
    color: rgba(245, 240, 230, 0.85);
    border-color: var(--white-45);
}
.ppage-block--alt .ppage-brochure:hover {
    background: var(--gold-accent);
    color: var(--ink);
    border-color: var(--gold-accent);
}
.ppage-prereq {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-accent);
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.25);
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
}

/* --- Content Grid --- */
.ppage-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}
.ppage-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
}
.ppage-block--alt .ppage-desc {
    color: rgba(245, 240, 230, 0.72);
}
.ppage-section-label {
    font-family: var(--font-label);
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--crimson);
    margin-bottom: 1.25rem;
    margin-top: 0;
}
.ppage-section-label--mt {
    margin-top: 2.5rem;
}
.ppage-block--alt .ppage-section-label {
    color: var(--gold-accent);
}

/* --- For List --- */
.ppage-for-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.ppage-for-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--surface-light);
    border-left: 3px solid var(--crimson);
}
.ppage-block--alt .ppage-for-item {
    background: var(--white-04);
    border-color: var(--gold-accent);
}
.ppage-for-item .material-symbols-outlined {
    font-size: 1.15rem;
    color: var(--crimson);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.ppage-block--alt .ppage-for-item .material-symbols-outlined {
    color: var(--gold-accent);
}
.ppage-for-item p {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.65;
    margin: 0;
}
.ppage-block--alt .ppage-for-item p {
    color: rgba(245, 240, 230, 0.72);
}

/* --- Steps --- */
.ppage-steps {
    display: flex;
    flex-direction: column;
}
.ppage-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.ppage-block--alt .ppage-step {
    border-color: var(--white-07);
}
.ppage-step:first-child {
    padding-top: 0;
}
.ppage-step-n {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--crimson);
    flex-shrink: 0;
    width: 1.5rem;
    line-height: 1.65;
}
.ppage-block--alt .ppage-step-n {
    color: var(--gold-accent);
}
.ppage-step p {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.65;
    margin: 0;
}
.ppage-block--alt .ppage-step p {
    color: rgba(245, 240, 230, 0.72);
}

/* --- Deliverables --- */
.ppage-delivers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ppage-deliver {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.ppage-deliver .material-symbols-outlined {
    font-size: 1.05rem;
    color: var(--crimson);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.ppage-block--alt .ppage-deliver .material-symbols-outlined {
    color: var(--gold-accent);
}
.ppage-deliver p {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}
.ppage-block--alt .ppage-deliver p {
    color: rgba(245, 240, 230, 0.65);
}

/* --- Learning Pathway --- */
.ppage-pathway {
    padding: 5rem 0;
    background: var(--surface-light);
}
.ppage-pathway-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}
.ppage-pathway-node {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: relative;
}
.ppage-pathway-node--right {
    border-color: var(--crimson);
}

.ppage-pathway-node h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.ppage-pathway-node p {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.ppage-pathway-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.ppage-pathway-tags span {
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.65rem;
}
.ppage-pathway-connector {
    color: var(--crimson);
    opacity: 0.35;
    width: 3.5rem;
    flex-shrink: 0;
}
.ppage-pathway-connector svg {
    width: 100%;
    height: auto;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .ppage-intro {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .ppage-block,
    .ppage-pathway {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .pp-framework {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .ppage-intro-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ppage-intro-stats {
        flex-direction: row;
        padding-left: 0;
        border-left: none;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 184, 0, 0.2);
        gap: 2rem;
    }
    .ppage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .ppage-header-right {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0;
    }
    .ppage-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ppage-pathway-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ppage-pathway-connector {
        transform: rotate(90deg);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ppage-intro {
        padding: 3.5rem 1.25rem;
    }
    .ppage-intro-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .ppage-block {
        padding: 3.5rem 1.25rem;
    }

    .pp-strip-content {
        padding: 2rem 1.25rem;
    }
}

/* ============================================================
   TEAM PAGE — Read More button & Profile Modal
   ============================================================ */

.team-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-accent);
    font-family: inherit;
    cursor: pointer;
    transition:
        gap 0.2s ease,
        color 0.2s ease;
    text-decoration: none;
}

.team-read-more::after {
    content: "→";
    transition: transform 0.2s ease;
}

.team-read-more:hover {
    color: var(--crimson);
    gap: 0.55rem;
}

.team-read-more:hover::after {
    transform: translateX(3px);
}

/* Overlay */
.team-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.team-modal-overlay.is-open {
    display: flex;
}

/* Modal card */
.team-modal-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--white-08);
    border-radius: 20px;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    animation: modalIn 0.22s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close button */
.team-modal-close {
    position: sticky;
    top: 1rem;
    float: right;
    margin: 1rem 1rem -2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white-07);
    border: 1px solid var(--white-12);
    border-radius: 50%;
    color: var(--white-80);
    font-size: 1.25rem;
    font-family: inherit;
    cursor: pointer;
    line-height: 1;
    transition:
        background 0.15s,
        color 0.15s;
    z-index: 1;
}

.team-modal-close:hover {
    background: var(--crimson);
    color: white;
    border-color: var(--crimson);
}

/* Inner layout */
.team-modal-inner {
    display: flex;
    gap: 0;
}

/* Photo column */
.team-modal-photo {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 0 2rem 2rem;
}

.team-modal-photo .team-avatar {
    width: 130px;
    height: 130px;
    margin: 0;
}

/* Bio column */
.team-modal-body {
    flex: 1;
    padding: 2rem 2rem 2rem 1.75rem;
    min-width: 0;
}

.team-modal-role {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.team-modal-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.team-modal-quals {
    font-size: 0.8125rem;
    color: var(--white-45);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.team-modal-bio {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.team-modal-bio p {
    margin: 0 0 0.9rem;
}

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

/* Mobile */
@media (max-width: 600px) {
    .team-modal-card {
        border-radius: 16px;
        max-height: 85vh;
    }

    .team-modal-inner {
        flex-direction: column;
    }

    .team-modal-photo {
        width: 100%;
        padding: 1.5rem 1.5rem 0;
        justify-content: flex-start;
    }

    .team-modal-photo .team-avatar {
        width: 90px;
        height: 90px;
    }

    .team-modal-body {
        padding: 1.5rem;
    }

    .team-modal-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        float: none;
        margin: 0;
        background: rgba(0, 0, 0, 0.5);
        border-color: var(--white-20);
    }
}


/* ============================================================
   GCWAL — Global Audio Player  (full-width bottom bar)
   Part of styles.css — concatenated at build time
   ============================================================ */

/* ===== CONTAINER ===== */
#gap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    display: none;               /* hidden until gap--ready is set */
    flex-direction: column;
    align-items: stretch;
    pointer-events: none;
}

#gap.gap--ready {
    display: flex;
    pointer-events: auto;
}

/* ===== TRIGGER TAB (collapsed state) ===== */
.gap-trigger {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold-accent);
    color: var(--charcoal);
    border: none;
    border-radius: 100px;
    padding: 0.8rem 1.6rem;
    margin-right: 2rem;
    margin-bottom: 0.6rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.35);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.gap-trigger:hover {
    background: #ffd040;
    box-shadow: 0 6px 28px rgba(255, 184, 0, 0.5);
    transform: translateY(-2px);
}

.gap-trigger svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--charcoal);
}

/* Hide trigger when bar is open */
#gap.gap--open .gap-trigger {
    display: none;
}

/* ===== FULL-WIDTH BAR ===== */
.gap-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 184, 0, 0.25);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#gap.gap--open .gap-bar {
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== PLAY / PAUSE BUTTON ===== */
.gap-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-accent);
    border: none;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.15s ease, background 0.15s ease;
}

.gap-play-btn:hover {
    transform: scale(1.08);
    background: #ffd040;
}

.gap-play-btn svg {
    width: 16px;
    height: 16px;
}

.gap-play-btn .gap-icon-pause {
    display: none;
}

#gap.gap--playing .gap-play-btn .gap-icon-play {
    display: none;
}

#gap.gap--playing .gap-play-btn .gap-icon-pause {
    display: block;
}

/* ===== TRACK LABEL ===== */
.gap-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    flex-shrink: 0;
}

/* ===== DIVIDER ===== */
.gap-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ===== PROGRESS AREA ===== */
.gap-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.gap-progress {
    position: relative;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    cursor: pointer;
    /* expand clickable area without changing visual size */
    padding: 10px 0;
    margin: -10px 0;
    box-sizing: content-box;
}

.gap-progress::before {
    content: "";
    position: absolute;
    inset: 10px 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}

.gap-fill {
    position: absolute;
    left: 0;
    top: 10px;
    height: 4px;
    background: var(--gold-accent);
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* Drag thumb — shown while scrubbing or hovering */
.gap-fill::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-accent);
    transition: transform 0.15s ease;
    pointer-events: none;
}

.gap-progress:hover .gap-fill::after,
.gap-progress.gap-scrubbing .gap-fill::after {
    transform: translateY(-50%) scale(1);
}

/* Hidden range input kept for accessibility only */
.gap-scrubber {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.gap-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== SPEED BUTTON ===== */
.gap-speed-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 42px;
    text-align: center;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gap-speed-btn:hover {
    background: rgba(255, 184, 0, 0.15);
    border-color: rgba(255, 184, 0, 0.4);
    color: var(--gold-accent);
}

.gap-speed-btn.gap-speed-active {
    background: rgba(255, 184, 0, 0.15);
    border-color: rgba(255, 184, 0, 0.5);
    color: var(--gold-accent);
}

/* ===== CLOSE BUTTON ===== */
.gap-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
}

.gap-close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.gap-close-btn svg {
    width: 13px;
    height: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .gap-bar {
        padding: 0.65rem 1rem;
        gap: 0.65rem;
    }

    .gap-label {
        max-width: 100px;
        font-size: 0.75rem;
    }

    .gap-divider {
        display: none;
    }

    .gap-trigger {
        margin-right: 1rem;
    }
}

@media (max-width: 400px) {
    .gap-label {
        display: none;
    }
}
