/* ===== GCWAL - Premium Corporate Design ===== */
/* Modern sans-serif typography with refined crimson accents */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    /* Primary Colors */
    --charcoal: #0f0f0f;
    --dark-grey: #1a1a1a;
    --medium-dark: #2a2a2a;

    /* Brand Crimson Palette */
    --crimson: #c41e3a;
    --crimson-light: #e8354f;
    --crimson-dark: #9a1830;
    --crimson-glow: rgba(196, 30, 58, 0.15);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-grey: #f5f5f5;
    --border-grey: #e5e5e5;
    --text-grey: #737373;
    --text-light: #a3a3a3;

    /* Accent */
    --gold: #d4a574;

    /* Typography */
    --font-primary:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Plus Jakarta Sans", var(--font-primary);

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(196, 30, 58, 0.2);
}

/* ===== 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: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-grey);
    line-height: 1.7;
}
a {
    color: var(--crimson);
}

ul {
    padding-left: 1.25rem;
}

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

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

/* ===== 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.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.nav.transparent {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
}

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

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

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

.nav.transparent .logo img {
    height: 50px;
}

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

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

.nav-links > li > a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    display: block;
    transition: var(--transition-fast);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-grey);
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-smooth);
}

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

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

.dropdown-menu a:hover {
    background: var(--light-grey);
    color: var(--crimson);
}

/* Nav CTA */
.nav-cta {
    background: var(--charcoal);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--crimson);
    transform: translateY(-1px);
}

/* 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(--charcoal);
    transition: var(--transition-smooth);
    border-radius: 1px;
    display: block;
}

/* 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;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 9rem clamp(1.25rem, 4vw, 4rem) 4rem;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.85) 0%,
        rgba(240, 242, 245, 0.85) 100%
    );
    /* background-image: url("../assets/banners/banner_aboutgcwal.jpg"); */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.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: var(--charcoal);
}

.page-header h1 span {
    color: var(--crimson);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-grey);
    max-width: 600px;
}

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

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

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

.breadcrumb span {
    color: var(--text-grey);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    min-height: 100svh; /* mobile viewport fix */
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem clamp(1.5rem, 4vw, 4rem);
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        hsl(0 0% 98%) 0%,
        hsl(220 14% 96%) 100%
    );
}

/* Desktop: right-side image panel — the skew/shape is on the wrapper */
.hero-image-wrap {
    position: absolute;
    top: -30%;
    right: 0;
    width: 50%;
    height: 140%;
    z-index: 1;
    transform: skewY(-4deg);
    border-radius: 0 0 0 40%;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/gcwal-photo-1.jpg");
    background-size: cover;
    background-position: center;
}

.hero-accent-shape {
    position: absolute;
    bottom: 15%;
    right: 20%;
    width: 350px;
    height: 350px;
    background: var(--crimson);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 2;
    filter: blur(80px);
}

.hero-content {
    width: 50%;
    max-width: none;
    padding-right: 6rem;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

@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: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--crimson);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

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

@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;
}

.hero-content p {
    margin-bottom: 1.25rem;
}

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

.hero-visual {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--crimson);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--crimson);
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid var(--crimson);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--crimson);
    color: var(--white);
}

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

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

/* ===== 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-white {
    background: var(--white);
}

.section-light {
    background: var(--off-white);
}

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

.section-sand {
    background: linear-gradient(
        180deg,
        var(--off-white) 0%,
        var(--light-grey) 100%
    );
}

.section-warm {
    background: #f8f6f1;
}

.section-warm-dark {
    background: #f2eee9;
}

.section-dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-image: url("../assets/banners/banner_aboutgcwal.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
}

.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.03em;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-grey);
}

/* ===== 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.8125rem;
    color: var(--text-light);
    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;
}

/* ===== CARDS ===== */
.card {
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-white {
    background: var(--white);
}

.card-warm {
    background: #f8f6f1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.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);
}

.cert-badge {
    width: 60px;
    height: 60px;
    background: radial-gradient(
        circle at 25% 20%,
        rgb(255 250 236 / 95%) 0%,
        rgb(240 229 202 / 66%) 5%,
        rgb(207 16 48) 55%
    );
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.card p {
    color: var(--text-grey);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.card-dark h3 {
    color: var(--white);
}

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

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--crimson);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 1rem;
    transition: var(--transition-fast);
}

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

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

.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 {
    color: var(--crimson);
}

.content-section p {
    color: var(--text-grey);
    font-size: 1.0625rem;
    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(--text-grey);
    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 {
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem;
    color: var(--charcoal);
}

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--charcoal);
}

.content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--charcoal);
}

.content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-grey);
    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(--text-grey);
    margin-bottom: 0.625rem;
}

.content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal);
    padding: 1.5rem 2rem;
    background: var(--light-grey);
    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: var(--charcoal);
    line-height: 1.6;
    padding: 2rem;
    background: var(--light-grey);
    border-radius: 16px;
    border-left: 4px solid var(--crimson);
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.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: var(--charcoal);
    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: var(--charcoal);
}

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

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

/* ===== 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(--border-grey);
    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: 160px;
}

.book-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.book-info {
    flex: 1;
}

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

.book-info .book-author {
    font-size: 0.9375rem;
    color: var(--text-grey);
    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(--text-grey);
}

.book-info .book-meta span strong {
    color: var(--charcoal);
    font-weight: 600;
}

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

.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: var(--white);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.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.8125rem;
    font-weight: 600;
    border: 1px solid var(--charcoal);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.book-info .btn-book-outline:hover {
    background: var(--charcoal);
    color: var(--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: var(--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.6875rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== 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.7rem 0;
    border-bottom: 1px solid var(--border-grey);
    color: var(--text-dark);
    font-size: 0.95rem;
    padding-left: 1.1rem;
    position: relative;
}

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

.client-list .client-location {
    color: var(--text-grey);
    font-size: 0.85rem;
    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: #ffffff;
    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(227, 225, 220, 0.95),
            rgba(218, 216, 210, 0.9),
            rgba(204, 210, 203, 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: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section h2 span {
    color: var(--crimson);
}

.cta-section p {
    color: #1f2937;
    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;
}

.cta-section .btn-primary {
    border-radius: 100px;
}

.cta-section .btn-secondary {
    border-color: var(--dark-grey);
    color: var(--charcoal);
    border-radius: 100px;
}

.cta-section .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--charcoal);
    border-color: var(--dark-grey);
}

/* ===== FOOTER ===== */
.footer {
    background: #f8f6f1;
    color: var(--charcoal);
    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;
    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: var(--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(--text-grey);
    font-size: 0.9375rem;
    max-width: 320px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    font-size: 0.9375rem;
    color: var(--text-grey);
    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(--text-grey);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

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

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

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

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

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

.footer-bottom p {
    color: var(--text-grey);
    font-size: 0.8125rem;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--crimson);
    color: var(--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-address-card {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 10;
}

/* ===== HERO CARD DETAILS ===== */
.hero-card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.375rem;
}

.hero-card-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-card-suffix {
    font-size: 1.375rem;
    color: var(--crimson);
    font-weight: 600;
}

.hero-card-label {
    color: var(--text-grey);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.hero-card-clients {
    display: flex;
    gap: 0.375rem;
}

.client-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(196, 30, 58, 0.2),
        rgba(196, 30, 58, 0.08)
    );
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
}

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

/* ===== WAL INTERACTIVE DIAGRAM ===== */
.wal-diagram-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.wal-diagram-svg-wrap {
    width: 100%;
    max-width: 420px;
}

#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;
}

.wal-node-label {
    fill: white;
    font-size: 11px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    pointer-events: none;
    letter-spacing: 0.01em;
}

/* 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;
}

.wal-centre-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em;
}

/* Info Panel */
.wal-info-panel {
    background: var(--light-grey);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 4px solid var(--crimson);
    min-height: 340px;
    display: flex;
    align-items: flex-start;
}

.wal-panel-content {
    width: 100%;
    animation: walFadeIn 0.25s ease;
}

@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.7rem;
    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: 0.95rem;
    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.8rem !important;
    color: var(--text-light) !important;
    margin: 0 !important;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .wal-diagram-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .wal-diagram-svg-wrap {
        max-width: 340px;
        margin: 0 auto;
    }
}

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

.video-container iframe {
    width: 100%;
    /* height: 500px; */
}

/* ===== VIDEO THUMBNAIL / MODAL ===== */
.video-thumb:hover > div {
    background: rgba(0, 0, 0, 0.3) !important;
}

.video-thumb:hover div > div {
    transform: scale(1.08);
    transition: transform 0.2s ease;
}

#videoModal {
    display: none;
}

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

/* ===== 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);
    }
}

/* ── 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;
    }
}

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

    /* Nav */
    .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;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        /* explicit height — never rely on bottom:0 which breaks when body/html have overflow set */
        height: 100vh;
        height: 100dvh;
        width: min(300px, 82vw);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        padding-top: 64px; /* clear the nav bar */
        margin: 0;
        z-index: 1001; /* above overlay (998) and nav bar (1000) */
        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; /* always in DOM; visibility toggled via transform */
    }
    .nav-links.active {
        transform: translateX(0);
    }
    /* Top-level nav items */
    .nav-links > li {
        border-bottom: 1px solid var(--border-grey);
        position: relative;
    }
    .nav-links > li > a {
        font-size: 0.9375rem;
        font-weight: 600;
        padding: 1rem 3.5rem 1rem 1.25rem; /* right padding for toggle btn */
        border-radius: 0;
        display: block;
        color: var(--charcoal);
        background: none;
        text-decoration: none;
    }
    /* Mobile dropdowns: collapsed by default, expanded on .open */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-grey);
        border-radius: 0;
        padding: 0;
        background: var(--light-grey);
        min-width: 0;
        display: none; /* collapsed by default */
    }
    .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(--border-grey);
        color: var(--charcoal);
        display: block;
        text-decoration: none;
    }
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    .dropdown-menu a:active {
        background: var(--border-grey);
        color: var(--crimson);
    }
    /* Show and style toggle button on mobile */
    .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(--text-grey);
        transition:
            background 0.2s,
            color 0.2s;
    }
    .dropdown-toggle-btn:active {
        background: var(--light-grey);
        color: var(--crimson);
    }
    .dropdown.open .dropdown-toggle-btn {
        color: var(--crimson);
    }
    .dropdown.open .dropdown-toggle-btn svg {
        transform: rotate(180deg);
    }
    .dropdown-toggle-btn svg {
        transition: transform 0.25s ease;
    }
    /* Contact Us link shown inside mobile drawer */
    .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(--crimson);
        color: var(--white) !important;
        text-align: center;
        padding: 0.875rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9375rem;
        text-decoration: none;
    }

    /* 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: 7rem 1.25rem 3rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .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: 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: 140px;
        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: 3rem;
    }
    .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.75rem;
    }
    .team-card {
        padding: 1.75rem;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        gap: 1.25rem;
    }
    .page-header h1 {
        font-size: 1.75rem;
    }
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .footer-grid {
        gap: 1.5rem;
    }
}

/* ===== 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(--crimson);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--crimson);
    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(--crimson);
    margin-bottom: 0.375rem;
}

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

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-grey);
    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(--charcoal);
    font-size: 1.0625rem;
    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: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
    background: linear-gradient(135deg, #e8e6e1 0%, #d9d5ce 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
}

/* ===== 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: var(--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: var(--white);
    font-size: 0.8125rem;
    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;
    }
}

/* ===== JOURNAL PAGE ===== */
.journal-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.journal-cover {
    flex-shrink: 0;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    display: block;
    object-fit: cover;
}
.journal-meta {
    display: flex;
    gap: 2rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}
.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;
    background: var(--white);
    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(--charcoal);
    margin: 0;
}
.volume-header .volume-year {
    font-size: 0.875rem;
    color: var(--text-grey);
    font-weight: 400;
    margin-left: 0.75rem;
}
.volume-header .toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--text-grey);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.volume-header.open .toggle-icon {
    transform: rotate(180deg);
}
.volume-articles {
    display: none;
    padding: 0.75rem 0 0;
}
.volume-articles.open {
    display: block;
}
.article-item {
    padding: 1rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
    border-radius: 0 8px 8px 0;
}
.article-item:hover {
    background: rgba(0, 0, 0, 0.02);
    border-left-color: var(--crimson);
}
.article-item .article-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}
.article-item .article-authors {
    font-size: 0.8125rem;
    color: var(--text-grey);
}
.article-item .article-tag {
    display: inline-block;
    background: rgba(196, 30, 58, 0.08);
    color: var(--crimson);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}
.archive-link {
    display: block;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.archive-link:hover {
    border-color: var(--crimson);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.08);
}
.archive-link .archive-vol {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9375rem;
}
.archive-link .archive-year {
    color: var(--text-grey);
    font-size: 0.8125rem;
}
@media (max-width: 768px) {
    .journal-hero {
        flex-direction: column;
        text-align: center;
    }
    .journal-cover {
        width: 180px;
    }
    .journal-meta {
        justify-content: center;
    }
    .volume-header h3 {
        font-size: 1rem;
    }
}

/* ===== CONFERENCES & EVENTS ===== */
.event-card {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.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(--charcoal);
}
.event-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--crimson);
    margin-bottom: 0.75rem;
}
.event-location {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
}
.event-card-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-grey);
}

/* Photo Gallery Grid */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.photo-gallery .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    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: rgba(255, 255, 255, 0.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: rgba(255, 255, 255, 0.3);
}
.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;
    }
}

/* ===== INTERACTIVE WAL LEARNING JOURNEY ===== */
.wal-journey {
    position: relative;
}

/* Progress bar at top */
.wal-journey-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
}
.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-progress-track {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--crimson);
    z-index: 1;
    transition: width 0.5s ease;
    width: 0%;
    max-width: calc(100% - 80px);
}
.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-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-grey);
    transition: all 0.3s ease;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.wal-step-dot.active .wal-step-dot-circle {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.15);
}
.wal-step-dot.completed .wal-step-dot-circle {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
}
.wal-step-dot-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-grey);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    max-width: 90px;
}
.wal-step-dot.active .wal-step-dot-label {
    color: var(--crimson);
}
.wal-step-dot.completed .wal-step-dot-label {
    color: var(--charcoal);
}

/* Step content panel */
.wal-journey-panel {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-grey);
    min-height: 420px;
    position: relative;
}
.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 {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wal-slide-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(196, 30, 58, 0.08);
    color: var(--crimson);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    width: fit-content;
}
.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: 0.975rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.wal-key-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.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;
}
.wal-quote-block {
    border-left: 3px solid var(--crimson);
    padding: 0.75rem 1rem;
    background: rgba(196, 30, 58, 0.04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-top: 0.5rem;
}

/* Right side of each slide */
.wal-slide-right {
    background: var(--cream);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    border-left: 1px solid var(--border-grey);
}

/* Visual elements within right panels */
.wal-visual-formula {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.wal-formula-display {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.wal-formula-display span {
    color: var(--crimson);
}
.wal-formula-sub {
    font-size: 0.8rem;
    color: var(--text-grey);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wal-phase-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.wal-phase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}
.wal-phase-item:hover {
    transform: translateX(4px);
}
.wal-phase-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--crimson);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.wal-phase-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.1rem;
}
.wal-phase-text span {
    font-size: 0.78rem;
    color: var(--text-grey);
}

.wal-methodology-pills {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.wal-method-card {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--crimson);
}
.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: 0.8rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.5;
}

.wal-wbl-compare {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.wal-compare-row {
    display: flex;
    gap: 0.5rem;
}
.wal-compare-cell {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 0.78rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.wal-compare-cell.header {
    font-weight: 700;
    font-size: 0.72rem;
    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-outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.wal-outcome-chip {
    background: white;
    border-radius: 10px;
    padding: 0.85rem;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
}
.wal-outcome-chip svg {
    display: block;
    margin: 0 auto 0.4rem;
    color: var(--crimson);
}

/* Journey navigation */
.wal-journey-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.75rem;
}
.wal-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid var(--border-grey);
    background: white;
    color: var(--charcoal);
}
.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: #a8162e;
    border-color: #a8162e;
    color: white;
}
.wal-nav-counter {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-grey);
}
.wal-nav-counter span {
    color: var(--crimson);
}

@media (max-width: 900px) {
    .wal-slide.active {
        grid-template-columns: 1fr;
    }
    .wal-slide-right {
        border-left: none;
        border-top: 1px solid var(--border-grey);
        padding: 2rem;
    }
    .wal-slide-left {
        padding: 2rem;
    }
    .wal-journey-progress {
        gap: 0;
    }
    .wal-step-dot-label {
        display: none;
    }
    .wal-journey-progress::before {
        width: calc(100% - 40px);
    }
    .wal-progress-track {
        max-width: calc(100% - 40px);
    }
}

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

/* Diagram reference */
.clp-diagram-wrap {
    margin: 0 0 2.75rem;
    text-align: center;
}
.clp-diagram-inner {
    display: inline-block;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem 2rem 1.25rem;
    max-width: 820px;
    width: 100%;
}
.clp-diagram-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.clp-diagram-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: var(--text-grey);
    font-style: italic;
}
.clp-diagram-caption svg {
    flex-shrink: 0;
    color: var(--crimson);
}

@media (max-width: 768px) {
    .clp-diagram-inner {
        padding: 1.25rem 1.25rem 1rem;
    }
}

/* Tab navigation */
.tscript-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-grey);
    margin-bottom: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.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-stages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-grey);
}
.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-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-grey);
    color: var(--text-grey);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.creative-stage.active .creative-stage-num {
    background: var(--crimson);
    color: white;
}
.creative-stage-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}
.creative-stage-hint {
    font-size: 0.7rem;
    color: var(--text-grey);
    margin-top: 0.25rem;
    line-height: 1.3;
}

.creative-detail {
    margin-top: 1.25rem;
    background: white;
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    min-height: 140px;
    animation: walSlideIn 0.25s ease;
}
.creative-detail-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--crimson);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.creative-detail-body strong {
    display: block;
    font-size: 0.7rem;
    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: 0.9rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
}

/* ---- AWARENESS JOURNEY ---- */
.awareness-journey {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
}
.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-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.awareness-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--border-grey);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-grey);
    font-family: "Plus Jakarta Sans", sans-serif;
}
.awareness-step.active .awareness-dot {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.12);
}
.awareness-line {
    width: 2px;
    height: 28px;
    background: var(--border-grey);
    margin: 4px 0;
    transition: background 0.25s;
}
.awareness-step.active .awareness-line,
.awareness-step.done .awareness-line {
    background: var(--crimson);
}
.awareness-step.done .awareness-dot {
    background: var(--crimson);
    border-color: var(--crimson);
    color: white;
}
.awareness-step:last-child .awareness-line {
    display: none;
}
.awareness-body {
    flex: 1;
    padding-top: 0.35rem;
}
.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: 0.87rem;
    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-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}
.arc-ring {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}
.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.65rem;
    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 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}
.arc-centre span {
    display: block;
    font-size: 0.65rem;
    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 {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-grey);
    padding: 2rem 2.25rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.arc-info-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.5rem;
}
.arc-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}
.arc-info p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin: 0;
}
.arc-hint {
    font-size: 0.78rem;
    color: var(--text-grey);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .creative-stages {
        grid-template-columns: repeat(3, 1fr);
    }
    .creative-stage:nth-child(3) {
        border-right: none;
    }
    .arc-wrapper {
        grid-template-columns: 1fr;
    }
    .arc-ring {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }
    .arc-step-btn {
        width: 56px;
        height: 56px;
        font-size: 0.6rem;
    }
    .tscript-tab {
        padding: 0.7rem 1rem;
        font-size: 0.82rem;
    }
}

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

/* Play card positioned top-left of hero */
.hero-play-card {
    position: absolute;
    right: 0;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-play-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 0.9rem 1.4rem 0.9rem 0.9rem;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    text-align: left;
}

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

/* Play icon circle */
.hero-play-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Text beside play button */
.hero-play-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hero-play-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
}

.hero-play-title {
    font-size: 1.05rem;
    color: #ffffff;

    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

/* ── Video Modal ── */
.gcwal-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.gcwal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.gcwal-modal-box {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 960px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.94) translateY(16px);
    transition: transform 0.3s ease;
}

.gcwal-video-modal.open .gcwal-modal-box {
    transform: scale(1) translateY(0);
}

.gcwal-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gcwal-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 16:9 responsive iframe wrapper */
.gcwal-modal-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-play-card {
        width: 100%;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .hero-play-btn {
        padding: 0.75rem 1.1rem 0.75rem 0.75rem;
        gap: 0.75rem;
    }
    .hero-play-icon {
        width: 42px;
        height: 42px;
    }
    .hero-play-title {
        font-size: 0.9rem;
    }
    .gcwal-modal-box {
        width: 96vw;
        border-radius: 10px;
    }
}
