/* ==========================================================================
   Action Valley Campus - Editorial & Executive Design System
   Faithfully inspired by official brand PDFs with colorful, high-impact UI/UX
   ========================================================================== */

:root {
    --ed-site-width: 1440px;
    /* Brand Core Palette */
    --ed-navy-dark: #051921;
    --ed-teal-deep: #082832;
    --ed-teal: #0b3440;
    --ed-teal-light: #134e5e;
    --ed-teal-muted: #1e6275;
    
    /* Vibrant Gold & Amber Accents */
    --ed-gold: #f5af19;
    --ed-gold-dark: #d97706;
    --ed-gold-light: #fcd34d;
    --ed-gold-pale: #fffbeb;
    --ed-gold-glow: rgba(245, 175, 25, 0.28);

    /* Colorful Semantic & Dimension Accents */
    --ed-blue: #0284c7;
    --ed-blue-light: #f0f9ff;
    --ed-blue-border: #bae6fd;
    --ed-emerald: #059669;
    --ed-emerald-light: #ecfdf5;
    --ed-emerald-border: #a7f3d0;
    --ed-purple: #7c3aed;
    --ed-purple-light: #f5f3ff;
    --ed-purple-border: #ddd6fe;
    --ed-amber: #d97706;
    --ed-amber-light: #fffbeb;
    --ed-coral: #ea580c;
    --ed-coral-light: #fff7ed;

    /* Light Surfaces & Inks */
    --ed-ink: #0d2830;
    --ed-ink-light: #375560;
    --ed-muted: #5e7a85;
    --ed-surface-bg: #f8fafb;
    --ed-surface-card: #ffffff;
    --ed-surface-soft: #f0f5f6;
    --ed-border-subtle: #e2ebee;
    --ed-border-card: rgba(11, 52, 64, 0.08);

    /* Typography */
    --ed-font-heading: 'Playfair Display', Georgia, serif;
    --ed-font-display: 'Cinzel', serif;
    --ed-font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Shadows */
    --ed-radius-sm: 8px;
    --ed-radius-md: 14px;
    --ed-radius-lg: 20px;
    --ed-shadow-subtle: 0 4px 18px -2px rgba(8, 40, 50, 0.05);
    --ed-shadow-card: 0 10px 30px -4px rgba(8, 40, 50, 0.08), 0 2px 8px -2px rgba(8, 40, 50, 0.04);
    --ed-shadow-hover: 0 20px 40px -8px rgba(8, 40, 50, 0.16), 0 4px 14px -3px rgba(8, 40, 50, 0.08);
}

/* Base Body Styles */
body.editorial-site {
    color: var(--ed-ink);
    background-color: var(--ed-surface-bg);
    font-family: var(--ed-font-body);
    font-size: 1.05rem;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1200px) {
    .editorial-site .container-xl {
        max-width: var(--ed-site-width);
    }
}

/* Color Helper Utility Classes */
.text-gold { color: var(--ed-gold) !important; }
.text-gold-dark { color: var(--ed-gold-dark) !important; }
.text-gold-light { color: var(--ed-gold-light) !important; }
.text-teal { color: var(--ed-teal) !important; }
.text-teal-deep { color: var(--ed-teal-deep) !important; }
.text-purple { color: var(--ed-purple) !important; }
.text-emerald { color: var(--ed-emerald) !important; }
.text-coral { color: var(--ed-coral) !important; }
.bg-gold { background-color: var(--ed-gold) !important; }
.bg-teal { background-color: var(--ed-teal) !important; }
.bg-teal-deep { background-color: var(--ed-teal-deep) !important; }

/* Global Topbar */
.editorial-site .topbar {
    background: linear-gradient(90deg, #05171e 0%, #092c37 100%);
    color: #e5eff2;
    padding: 0.55rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(245, 175, 25, 0.2);
}
.editorial-site .topbar a {
    color: #e5eff2;
    text-decoration: none;
    transition: color 0.2s;
}
.editorial-site .topbar a:hover {
    color: var(--ed-gold);
}
.editorial-site .topbar-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 175, 25, 0.16);
    color: var(--ed-gold);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(245, 175, 25, 0.35);
}

/* Modern Sticky Header */
.editorial-site .main-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ed-border-subtle);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(8, 40, 50, 0.04);
}
.editorial-site .brand-mark img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.editorial-site .brand-mark:hover img {
    transform: scale(1.03);
}
.editorial-site .brand-text {
    line-height: 1.2;
}
.editorial-site .brand-title {
    font-family: var(--ed-font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ed-teal-deep);
    letter-spacing: 0.06em;
}
.editorial-site .brand-motto {
    font-size: 0.7rem;
    color: var(--ed-gold-dark);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.editorial-site .navbar .nav-link {
    color: var(--ed-ink);
    font-weight: 600;
    font-size: 0.94rem;
    padding: 0.6rem 0.9rem !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.editorial-site .navbar .nav-link:hover,
.editorial-site .navbar .nav-link.active {
    color: var(--ed-teal);
    background-color: var(--ed-surface-soft);
}
.editorial-site .navbar-toggler {
    border: 1px solid var(--ed-border-subtle);
    padding: 0.4rem 0.6rem;
}

/* Call to Action Navigation Button */
.editorial-site .btn-primary-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f5af19 0%, #e2990a 100%);
    color: #061f28 !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(245, 175, 25, 0.35);
    transition: all 0.25s ease;
    text-decoration: none;
}
.editorial-site .btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 175, 25, 0.5);
    color: #031319 !important;
}

/* Typography Defaults in Container */
.ed-page {
    max-width: var(--ed-site-width);
    margin-inline: auto;
    padding: 1.5rem 24px 4.5rem;
}
.ed-page h1, .ed-page h2, .ed-page h3, .ed-page h4 {
    font-family: var(--ed-font-heading);
    color: var(--ed-ink);
    line-height: 1.22;
    letter-spacing: -0.018em;
}
.ed-page h1 { font-size: clamp(2.5rem, 4.4vw, 3.8rem); font-weight: 700; margin-bottom: 1.25rem; }
.ed-page h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 600; margin-bottom: 1.15rem; }
.ed-page h3 { font-size: clamp(1.4rem, 2vw, 1.95rem); font-weight: 600; margin-bottom: 0.85rem; }
.ed-page h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.65rem; }
.ed-page p { margin-bottom: 1.15rem; color: var(--ed-ink-light); }
.ed-page p.lead { font-size: 1.2rem; line-height: 1.6; }

/* Kicker Badge */
.ed-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ed-gold-dark);
    font-family: var(--ed-font-body);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
.ed-kicker::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}
.ed-kicker-no-dot::before {
    display: none;
}

/* Hero Section (Commanding Midnight & Teal Gradient with Gold Glow) */
.ed-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #051820 0%, #0a2f3a 55%, #07232c 100%);
    color: #ffffff;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.75rem, 4.5vw, 3.75rem);
    border-radius: var(--ed-radius-lg);
    box-shadow: 0 16px 40px -10px rgba(5, 25, 33, 0.4);
    margin-bottom: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.ed-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 175, 25, 0.14) 0%, rgba(13, 148, 136, 0.06) 50%, transparent 70%);
    pointer-events: none;
}
.ed-hero h1 {
    color: #ffffff;
    max-width: 22ch;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.ed-hero .ed-kicker {
    color: var(--ed-gold-light);
}
.ed-hero .ed-hero-tagline {
    font-family: var(--ed-font-heading);
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.85rem);
    line-height: 1.35;
    color: var(--ed-gold);
    margin-bottom: 1.35rem;
}
.ed-hero .ed-award {
    color: #c9e0e6;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.ed-home-intro {
    max-width: 68ch;
    font-size: 1.12rem;
    line-height: 1.7;
    color: #e2eff3 !important;
    margin-bottom: 2rem;
}

/* Button & Action Link Styling */
.ed-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}
.ed-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f5af19 0%, #e2990a 100%);
    color: #051a22 !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 175, 25, 0.35);
    transition: all 0.25s ease;
}
.ed-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 175, 25, 0.5);
    color: #03131a !important;
}
.ed-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.72rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}
.ed-btn-outline:hover {
    border-color: var(--ed-gold);
    color: var(--ed-gold) !important;
    background: rgba(245, 175, 25, 0.1);
    transform: translateY(-2px);
}
.ed-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ed-teal);
    text-decoration: none;
    transition: all 0.2s ease;
}
.ed-link-arrow:hover {
    color: var(--ed-gold-dark);
    transform: translateX(3px);
}
.ed-link-arrow i {
    transition: transform 0.2s;
}
.ed-link-arrow:hover i {
    transform: translateX(4px);
}

/* The Brand Promise Banner */
.ed-promise {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf6 100%);
    border: 2px solid rgba(245, 175, 25, 0.4);
    border-radius: var(--ed-radius-md);
    padding: 1.75rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px -4px rgba(245, 175, 25, 0.12);
    margin-bottom: 3.5rem;
}
.ed-promise-kicker {
    color: var(--ed-gold-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.ed-promise-quote {
    font-family: var(--ed-font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 600;
    color: var(--ed-teal-deep);
    margin-bottom: 0.5rem;
}
.ed-promise-motto {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ed-gold-dark);
    letter-spacing: 0.03em;
}

/* Sections */
.ed-section {
    margin-top: 3.5rem;
    scroll-margin-top: 110px;
}
.ed-section-header {
    margin-bottom: 2rem;
}
.ed-section-header.text-center {
    max-width: 780px;
    margin-inline: auto;
}

/* Commemorative 10 Years Header & Badge */
.ed-pathway-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.25rem;
    border-bottom: 2px solid var(--ed-border-subtle);
    padding-bottom: 1.75rem;
}
.ed-ambition {
    font-family: var(--ed-font-heading);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--ed-gold-dark);
    margin-bottom: 0.4rem;
}
.ed-anniversary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: linear-gradient(135deg, #092c37 0%, #051b22 100%);
    color: #ffffff;
    border: 2px solid var(--ed-gold);
    padding: 0.85rem 1.4rem;
    border-radius: var(--ed-radius-md);
    box-shadow: 0 6px 20px rgba(245, 175, 25, 0.2);
    flex-shrink: 0;
}
.ed-anniversary-badge i {
    font-size: 2rem;
    color: var(--ed-gold);
}
.ed-anniversary-badge .badge-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbdbe0;
    display: block;
}
.ed-anniversary-badge .badge-title {
    font-family: var(--ed-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ed-gold);
    letter-spacing: 0.02em;
}

/* Pathway / Programme Cards */
.ed-course {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.25rem 2rem;
    border-radius: var(--ed-radius-md);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ed-course:hover {
    transform: translateY(-6px);
    box-shadow: var(--ed-shadow-hover);
}
.ed-course.ed-dark {
    background: linear-gradient(145deg, #082832 0%, #0d3b48 100%);
    color: #ffffff;
    border: 1.5px solid rgba(245, 175, 25, 0.35);
    box-shadow: 0 12px 30px -4px rgba(8, 40, 50, 0.3);
}
.ed-course.ed-dark h3 {
    color: #ffffff;
}
.ed-course.ed-dark p {
    color: #d1e4e8;
}
.ed-course.ed-dark .ed-kicker {
    color: var(--ed-gold);
}
.ed-course.ed-dark .ed-strong {
    color: var(--ed-gold-light);
    font-size: 1.15rem;
    font-weight: 600;
}
.ed-course.ed-dark .ed-badge-featured {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(245, 175, 25, 0.2);
    border: 1px solid var(--ed-gold);
    color: var(--ed-gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.ed-course.ed-soft {
    background: #ffffff;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-card);
}
.ed-course.ed-soft:hover {
    border-color: var(--ed-teal-light);
}
.ed-course.ed-soft .ed-strong {
    color: var(--ed-teal);
    font-size: 1.15rem;
    font-weight: 600;
}
.ed-course .ed-actions {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* 4 Connected Dimensions Grid */
.ed-dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.dimension-card {
    background: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 1.75rem 1.4rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    position: relative;
    transition: all 0.25s ease;
    overflow: hidden;
}
.dimension-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.dimension-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ed-shadow-card);
}
.dimension-card.dim-knowing::before { background: var(--ed-blue); }
.dimension-card.dim-knowing .dim-num { color: var(--ed-blue); }
.dimension-card.dim-doing::before { background: var(--ed-emerald); }
.dimension-card.dim-doing .dim-num { color: var(--ed-emerald); }
.dimension-card.dim-being::before { background: var(--ed-purple); }
.dimension-card.dim-being .dim-num { color: var(--ed-purple); }
.dimension-card.dim-becoming::before { background: var(--ed-gold-dark); }
.dimension-card.dim-becoming .dim-num { color: var(--ed-gold-dark); }

.dimension-card .dim-num {
    font-family: var(--ed-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}
.dimension-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.dimension-card p {
    font-size: 0.94rem;
    margin-bottom: 0;
    line-height: 1.55;
}

/* The Gap We Address Card */
.ed-gap-card {
    background: linear-gradient(135deg, #07232d 0%, #0d3844 100%);
    color: #ffffff;
    padding: 2.25rem 2.5rem;
    border-radius: var(--ed-radius-md);
    margin: 2.5rem 0;
    border-left: 6px solid var(--ed-gold);
    box-shadow: var(--ed-shadow-card);
}
.ed-gap-card h3 {
    color: var(--ed-gold-light);
    font-size: 1.55rem;
    margin-bottom: 0.75rem;
}
.ed-gap-card p {
    color: #d8e9ed;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Reasons to Choose Action Valley Grid */
.ed-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.ed-reason-card {
    background: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 1.75rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    transition: all 0.25s ease;
    display: flex;
    gap: 1.25rem;
}
.ed-reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ed-shadow-card);
    border-color: rgba(245, 175, 25, 0.4);
}
.ed-reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.ed-reason-icon.c-gold { background: var(--ed-gold-pale); color: var(--ed-gold-dark); }
.ed-reason-icon.c-teal { background: var(--ed-blue-light); color: var(--ed-blue); }
.ed-reason-icon.c-emerald { background: var(--ed-emerald-light); color: var(--ed-emerald); }
.ed-reason-icon.c-purple { background: var(--ed-purple-light); color: var(--ed-purple); }
.ed-reason-icon.c-coral { background: var(--ed-coral-light); color: var(--ed-coral); }

.ed-reason-content h4 {
    font-family: var(--ed-font-heading);
    font-size: 1.18rem;
    color: var(--ed-teal-deep);
    margin-bottom: 0.45rem;
}
.ed-reason-content p {
    font-size: 0.95rem;
    color: var(--ed-ink-light);
    margin-bottom: 0;
    line-height: 1.58;
}

/* Who Benefits Grid */
.ed-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.ed-benefit-card {
    background: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 1.75rem 1.4rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    transition: all 0.25s ease;
}
.ed-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ed-shadow-card);
}
.ed-benefit-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.ed-benefit-card h4 {
    font-family: var(--ed-font-heading);
    font-size: 1.22rem;
    color: var(--ed-teal);
    margin-bottom: 0.6rem;
}
.ed-benefit-card p {
    font-size: 0.92rem;
    color: var(--ed-ink-light);
    margin-bottom: 0;
    line-height: 1.55;
}

/* 5-Stage Transformation Journey */
.ed-journey-wrapper {
    background: #ffffff;
    border-radius: var(--ed-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-card);
    margin: 2rem 0;
}
.ed-journey {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    position: relative;
}
.ed-journey-item {
    background: var(--ed-surface-bg);
    border-radius: var(--ed-radius-md);
    padding: 1.5rem 1.2rem;
    border: 1px solid var(--ed-border-subtle);
    transition: all 0.3s ease;
    position: relative;
}
.ed-journey-item:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: var(--ed-shadow-card);
    border-color: var(--ed-gold);
}
.ed-stage-num {
    font-family: var(--ed-font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}
.ed-stage-1 .ed-stage-num { color: var(--ed-blue); }
.ed-stage-2 .ed-stage-num { color: var(--ed-teal); }
.ed-stage-3 .ed-stage-num { color: var(--ed-emerald); }
.ed-stage-4 .ed-stage-num { color: var(--ed-gold-dark); }
.ed-stage-5 .ed-stage-num { color: var(--ed-purple); }

.ed-journey-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--ed-teal-deep);
}
.ed-journey-item p {
    font-size: 0.88rem;
    color: var(--ed-ink-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Core Values Grid */
.ed-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.ed-value-card {
    background: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 1.75rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    transition: all 0.25s ease;
    border-top: 4px solid var(--ed-gold);
}
.ed-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ed-shadow-card);
    border-top-color: var(--ed-teal);
}
.ed-value-title {
    font-family: var(--ed-font-display);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ed-gold-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.ed-value-card p {
    font-size: 0.98rem;
    margin-bottom: 0;
    color: var(--ed-ink);
}

/* Who We're Proud to Serve Cards */
.ed-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.ed-serve-card {
    background: linear-gradient(135deg, #f0f6f8 0%, #ffffff 100%);
    border-radius: var(--ed-radius-md);
    padding: 2rem 1.75rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    transition: all 0.25s ease;
}
.ed-serve-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ed-shadow-card);
}
.ed-serve-card h3 {
    font-size: 1.45rem;
    color: var(--ed-teal-deep);
    margin-bottom: 0.75rem;
}
.ed-serve-card p {
    font-size: 0.98rem;
    color: var(--ed-ink-light);
    margin-bottom: 0;
}

/* Human Drive -> Higher Expression Matrix */
.ed-drive-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.ed-drive-row {
    background: #ffffff;
    border-radius: var(--ed-radius-sm);
    padding: 1rem 1.35rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}
.ed-drive-row:hover {
    transform: translateX(4px);
    border-color: var(--ed-gold);
    box-shadow: 0 4px 14px rgba(245, 175, 25, 0.15);
}
.ed-drive-from {
    font-weight: 600;
    color: var(--ed-coral);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.98rem;
}
.ed-drive-arrow {
    color: var(--ed-gold-dark);
    font-size: 1.25rem;
    font-weight: 700;
}
.ed-drive-to {
    font-weight: 700;
    color: var(--ed-emerald);
    font-size: 1.05rem;
    font-family: var(--ed-font-heading);
}

/* Logos & Partner Accreditations */
.ed-logo-card {
    background: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 1.5rem 1.25rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 140px;
    transition: all 0.25s ease;
}
.ed-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ed-shadow-card);
    border-color: var(--ed-gold);
}
.ed-logo-card img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
    transition: transform 0.2s;
}
.ed-logo-card:hover img {
    transform: scale(1.04);
}
.ed-logo-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ed-ink-light);
    margin-top: 0.75rem;
}

/* Partner Grids */
.ed-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.ed-partners-grid .ed-logo-card {
    min-height: 170px;
    padding: 2rem 1.5rem;
}
.ed-partners-grid img {
    max-height: 100px;
}
.ed-recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

/* Next Chapter CTA Banner */
.ed-cta-panel {
    background: linear-gradient(145deg, #07232d 0%, #0a3340 50%, #061d25 100%);
    color: #ffffff;
    border-radius: var(--ed-radius-lg);
    padding: clamp(2.5rem, 4.5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 16px 40px -10px rgba(5, 25, 33, 0.4);
    border: 1px solid rgba(245, 175, 25, 0.3);
    margin-top: 3.5rem;
    position: relative;
    overflow: hidden;
}
.ed-cta-panel::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(245, 175, 25, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ed-cta-panel h2 {
    color: #ffffff;
    max-width: 20ch;
}
.ed-cta-panel p {
    color: #d1e4e8;
    font-size: 1.15rem;
    max-width: 55ch;
}

/* Founder Perspective Quote Box */
.ed-founder-quote-box {
    background: linear-gradient(145deg, #072530 0%, #0c3645 100%);
    color: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 2.25rem 2rem;
    border: 1px solid rgba(245, 175, 25, 0.3);
    box-shadow: var(--ed-shadow-card);
    position: relative;
}
.ed-founder-quote-box blockquote {
    font-family: var(--ed-font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.42;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.75rem;
}
.ed-founder-bio {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.35rem;
}
.ed-founder-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--ed-gold);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.ed-founder-name {
    font-family: var(--ed-font-heading);
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}
.ed-founder-creds {
    font-size: 0.8rem;
    color: var(--ed-gold-light);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Key Stats Bar */
.ed-stats-bar {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border: 1px solid var(--ed-border-subtle);
    border-radius: var(--ed-radius-md);
    padding: 1.75rem 2rem;
    box-shadow: var(--ed-shadow-card);
    gap: 1.5rem;
    margin: 2rem 0;
}
.ed-stat-item {
    flex: 1 1 150px;
    border-left: 4px solid var(--ed-gold);
    padding-left: 1.25rem;
}
.ed-stat-item .stat-num {
    font-family: var(--ed-font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--ed-teal-deep);
    line-height: 1;
    margin-bottom: 0.35rem;
    display: block;
}
.ed-stat-item .stat-lbl {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--ed-muted);
}

/* Studio Series Cards */
.ed-studio-card {
    background: #ffffff;
    border-radius: var(--ed-radius-md);
    padding: 1.75rem;
    border: 1px solid var(--ed-border-subtle);
    box-shadow: var(--ed-shadow-subtle);
    margin-bottom: 1.25rem;
    transition: all 0.25s ease;
    border-left: 5px solid var(--ed-teal);
}
.ed-studio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ed-shadow-card);
    border-left-color: var(--ed-gold);
}
.ed-studio-sem {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ed-gold-dark);
    margin-bottom: 0.4rem;
}
.ed-studio-title {
    font-family: var(--ed-font-heading);
    font-size: 1.45rem;
    color: var(--ed-teal-deep);
    margin-bottom: 0.5rem;
}
.ed-studio-subtitle {
    font-weight: 600;
    color: var(--ed-teal);
    font-size: 0.98rem;
    margin-bottom: 0.6rem;
}
.ed-studio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}
.ed-tag-pill {
    background: var(--ed-surface-soft);
    color: var(--ed-teal);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Editorial Footer Styling */
.editorial-footer {
    background: linear-gradient(180deg, #071f28 0%, #04141a 100%);
    color: #e5eff2;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--ed-gold);
    font-size: 0.92rem;
}
.editorial-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 1.1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-tagline {
    font-size: 0.92rem;
    color: #b2c9d1;
    line-height: 1.6;
    max-width: 38ch;
}
.footer-promise-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 175, 25, 0.1);
    color: var(--ed-gold-light);
    border: 1px solid rgba(245, 175, 25, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.75rem;
}
.footer-heading {
    font-family: var(--ed-font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ed-gold);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-links-nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-links-nav a {
    color: #cbdbe0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.footer-links-nav a:hover {
    color: var(--ed-gold);
    transform: translateX(4px);
}
.footer-contact-col a {
    color: #e5eff2;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-col a:hover {
    color: var(--ed-gold);
}
.editorial-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: #8da9b3;
}

/* Responsive Media Queries */
@media (max-width: 1199.98px) {
    .editorial-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .footer-contact-col {
        grid-column: span 3;
    }
    .ed-dimensions-grid,
    .ed-benefits-grid,
    .ed-recognition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .ed-journey {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .ed-values-grid,
    .ed-serve-grid,
    .ed-partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ed-drive-matrix {
        grid-template-columns: 1fr;
    }
    .ed-pathway-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .ed-page {
        padding: 1rem 16px 3rem;
    }
    .ed-dimensions-grid,
    .ed-benefits-grid,
    .ed-values-grid,
    .ed-serve-grid,
    .ed-partners-grid,
    .ed-recognition-grid,
    .ed-journey {
        grid-template-columns: 1fr;
    }
    .editorial-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-contact-col {
        grid-column: span 1;
    }
    .ed-founder-bio {
        flex-direction: column;
        text-align: center;
    }
    .ed-anniversary-badge {
        width: 100%;
    }
}
