/* ================================================================
   VAC - Visi Armada Consulting
   Sophisticated Editorial CSS Stylesheet
   Magazine-Inspired Design System
   ================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
    /* Brand Colors */
    --color-primary-dark: #2d3e50;
    --color-gold: #e8a838;
    --color-gold-light: rgba(232, 168, 56, 0.12);
    --color-gold-glow: rgba(232, 168, 56, 0.25);
    --color-pink: #e91e7a;
    --color-near-black: #1a1a2e;
    --color-warm-white: #faf8f5;
    --color-soft-gray: #f0ede8;
    --color-mid-gray: #6b7280;
    --color-body-text: #374151;
    --color-dark-bg: #1a1a2e;
    --color-footer-bg: #111827;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-padding: 2rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Z-indexes */
    --z-nav: 1000;
    --z-overlay: 900;
    --z-hero-content: 10;
    --z-hero-shapes: 1;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-body-text);
    background-color: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-near-black);
}

::-moz-selection {
    background-color: var(--color-gold);
    color: var(--color-near-black);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-near-black);
}

blockquote {
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

*:focus:not(:focus-visible) {
    outline: none;
}


/* ================================================================
   3. LAYOUT - CONTAINER
   ================================================================ */
.container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}


/* ================================================================
   4. NAVIGATION
   ================================================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 1.25rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.main-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.main-nav.nav-scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.main-nav.nav-scrolled::before {
    opacity: 1;
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-v {
    color: var(--color-pink);
}

.logo-ac {
    color: var(--color-near-black);
}

.nav-scrolled .logo-ac {
    color: var(--color-near-black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links li a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-near-black);
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-links li a:hover {
    color: var(--color-gold);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-near-black) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase;
    font-size: var(--text-xs) !important;
    transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #d4962f !important;
    color: var(--color-near-black) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: calc(var(--z-nav) + 10);
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-near-black);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


/* ================================================================
   5. HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-dark-bg);
    overflow: hidden;
    padding: 8rem var(--container-padding) 4rem;
}

/* Geometric background shapes */
.hero-geometric {
    position: absolute;
    inset: 0;
    z-index: var(--z-hero-shapes);
    overflow: hidden;
}

.hero-triangle {
    position: absolute;
}

.hero-triangle--1 {
    width: 50vw;
    height: 50vw;
    top: -10%;
    right: -10%;
    background: var(--color-gold);
    opacity: 0.06;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.hero-triangle--2 {
    width: 40vw;
    height: 40vw;
    bottom: -5%;
    left: -5%;
    background: var(--color-pink);
    opacity: 0.05;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.hero-triangle--3 {
    width: 30vw;
    height: 30vw;
    top: 20%;
    right: 15%;
    background: var(--color-primary-dark);
    opacity: 0.08;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.hero-diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        165deg,
        transparent 40%,
        rgba(232, 168, 56, 0.03) 40%,
        rgba(232, 168, 56, 0.03) 60%,
        transparent 60%
    );
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: var(--z-hero-content);
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.hero-badge span {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    border: 1px solid rgba(232, 168, 56, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: var(--space-3xl);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-near-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: #d4962f;
    border-color: #d4962f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 168, 56, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.35);
}

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

/* Hero Stat */
.hero-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: var(--z-hero-content);
}

.hero-scroll-indicator span {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Hero entrance animations */
.hero .hero-badge {
    animation: heroFadeUp 0.8s ease-out 0.2s both;
}

.hero .hero-title {
    animation: heroFadeUp 0.8s ease-out 0.4s both;
}

.hero .hero-subtitle {
    animation: heroFadeUp 0.8s ease-out 0.6s both;
}

.hero .hero-actions {
    animation: heroFadeUp 0.8s ease-out 0.8s both;
}

.hero .hero-stat {
    animation: heroFadeUp 0.8s ease-out 1s both;
}

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


/* ================================================================
   6. SECTION STRUCTURE
   ================================================================ */
.section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: var(--space-2xl);
}

.section-number {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.section-name {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-mid-gray);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--color-near-black);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.section-heading--center {
    text-align: center;
}

.section-subheading {
    font-size: clamp(var(--text-lg), 1.5vw, var(--text-xl));
    color: var(--color-mid-gray);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: var(--space-3xl);
}

.section-heading--center + .section-subheading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.decorative-line {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    border: none;
    margin-bottom: var(--space-xl);
    border-radius: 2px;
}


/* ================================================================
   7. ABOUT SECTION
   ================================================================ */
.section--about {
    background: var(--color-warm-white);
}

.editorial-grid {
    display: grid;
    gap: var(--space-3xl);
}

.editorial-grid--about {
    grid-template-columns: 55fr 45fr;
    gap: clamp(var(--space-3xl), 6vw, 5rem);
    align-items: start;
}

.editorial-col--mission,
.editorial-col--about {
    /* Column styling inherits from grid placement */
}

.body-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-body-text);
}

.body-text--lead {
    font-size: clamp(var(--text-lg), 1.5vw, var(--text-xl));
    line-height: 1.8;
    color: var(--color-body-text);
}

.subheading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: var(--space-md);
}

.about-accent-block {
    border-left: 3px solid var(--color-gold);
    padding-left: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.about-stats-row {
    display: flex;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.about-stat-text {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    max-width: 140px;
    line-height: 1.4;
}


/* ================================================================
   8. DIRECTOR SECTION
   ================================================================ */
.section--director {
    background: var(--color-dark-bg);
    overflow: hidden;
}

.director-layout {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.director-quote-mark {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 15vw, 14rem);
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
}

.director-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-2xl);
}

.director-attribution {
    position: relative;
    z-index: 2;
}

.director-line {
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto var(--space-lg);
}

.director-name {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.director-title {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    font-weight: 400;
}


/* ================================================================
   9. SERVICES SECTION
   ================================================================ */
.section--services {
    background: var(--color-soft-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background: var(--color-white);
    padding: clamp(var(--space-2xl), 4vw, 3.5rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.service-card-line {
    width: 40px;
    height: 3px;
    background: var(--color-gold);
    margin-bottom: var(--space-lg);
    border-radius: 2px;
}

.service-card-text {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-body-text);
    margin-bottom: var(--space-xl);
}

.service-card-badge {
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.service-card-badge span {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-near-black);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
}

.service-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.service-card-list li {
    font-size: var(--text-sm);
    color: var(--color-body-text);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.service-card-list--numbered {
    counter-reset: service-list;
}

.service-card-list--numbered li {
    counter-increment: service-list;
    padding-left: 2rem;
}

.service-card-list--numbered li::before {
    content: counter(service-list, decimal-leading-zero);
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-gold);
    top: 0;
    left: 0;
}


/* ================================================================
   10. PROCESS SECTION
   ================================================================ */
.section--process {
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.process-step {
    border-left: 3px solid var(--color-gold);
    padding-left: var(--space-xl);
    padding-top: var(--space-sm);
}

.process-step:nth-child(even) {
    margin-top: var(--space-2xl);
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.process-step-content {
    /* content wrapper */
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-lg), 1.5vw, var(--text-xl));
    font-weight: 600;
    color: var(--color-near-black);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.process-step-text {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    line-height: 1.7;
}


/* ================================================================
   11. TEAM SECTION
   ================================================================ */
.section--team {
    background: var(--color-warm-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.team-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    display: flex;
    gap: var(--space-xl);
    transition: box-shadow var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
}

.team-card-avatar {
    flex-shrink: 0;
}

.team-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-near-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.team-card-body {
    flex: 1;
    min-width: 0;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.team-card-role {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.team-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: var(--space-md);
}

.team-card-bio {
    font-size: var(--text-sm);
    color: var(--color-body-text);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background: var(--color-gold-light);
    color: var(--color-near-black);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    line-height: 1.4;
}


/* ================================================================
   12. COURSES SECTION
   ================================================================ */
.section--courses {
    background: var(--color-dark-bg);
}

.section--courses .section-label .section-name {
    color: rgba(255, 255, 255, 0.5);
}

.section--courses .section-heading {
    color: var(--color-white);
}

.section--courses .section-subheading {
    color: rgba(255, 255, 255, 0.5);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.course-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.course-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.08);
    transform: translateY(-2px);
}

.course-card--wide {
    grid-column: span 2;
}

.course-card-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.course-card-icon svg {
    width: 100%;
    height: 100%;
}

.course-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.course-card-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}


/* ================================================================
   13. PROJECTS SECTION
   ================================================================ */
.section--projects {
    background: var(--color-white);
}

.projects-table-wrapper {
    overflow-x: auto;
    margin-top: var(--space-xl);
    -webkit-overflow-scrolling: touch;
}

.projects-table {
    width: 100%;
    min-width: 600px;
}

.projects-table thead th {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-mid-gray);
    text-align: left;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 2px solid var(--color-gold);
    white-space: nowrap;
}

.projects-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color var(--transition-fast);
}

.projects-table tbody tr:hover {
    background-color: var(--color-soft-gray);
}

.projects-table tbody td {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-body-text);
    vertical-align: middle;
}

.projects-table tbody td strong {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-near-black);
}

.projects-table tbody td em {
    font-style: italic;
    color: var(--color-mid-gray);
    font-size: var(--text-xs);
}

.projects-summary {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.projects-summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.projects-summary-num {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.projects-summary-text {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}


/* ================================================================
   14. PROGRAMS SECTION
   ================================================================ */
.section--programs {
    background: var(--color-soft-gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.program-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.program-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.program-card-accent {
    height: 4px;
    background: var(--color-gold);
}

.program-card-content {
    padding: var(--space-2xl);
}

.program-card-year {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.program-card-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.program-card-text {
    font-size: var(--text-sm);
    color: var(--color-body-text);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.program-card-stat {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
}

.program-card-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.program-card-stat-label {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    font-weight: 500;
}


/* ================================================================
   15. CLIENTS SECTION
   ================================================================ */
.section--clients {
    background: var(--color-white);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.client-logo-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    padding: var(--space-lg) var(--space-xl);
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-base), color var(--transition-base);
}

.client-logo-item span {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-mid-gray);
    white-space: nowrap;
    transition: color var(--transition-base);
}

.client-logo-item:hover {
    border-color: var(--color-gold);
}

.client-logo-item:hover span {
    color: var(--color-gold);
}


/* ================================================================
   16. TESTIMONIALS SECTION
   ================================================================ */
.section--testimonials {
    background: var(--color-warm-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    border-left: 3px solid var(--color-gold);
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.4;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(var(--text-base), 1.2vw, var(--text-lg));
    font-weight: 400;
    color: var(--color-near-black);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.testimonial-attribution {
    /* wrapper */
}

.testimonial-line {
    width: 32px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: var(--space-md);
}

.testimonial-source {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: 0.125rem;
}

.testimonial-detail {
    font-size: var(--text-xs);
    color: var(--color-mid-gray);
    font-weight: 400;
}


/* ================================================================
   17. CERTIFICATIONS SECTION
   ================================================================ */
.section--certifications {
    background: var(--color-soft-gray);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.cert-badge {
    text-align: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl) var(--space-xl);
    transition: box-shadow var(--transition-base);
}

.cert-badge:hover {
    box-shadow: var(--shadow-md);
}

.cert-badge-icon {
    width: 64px;
    height: 64px;
    color: var(--color-gold);
    margin: 0 auto var(--space-lg);
}

.cert-badge-icon svg {
    width: 100%;
    height: 100%;
}

.cert-badge-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: var(--space-sm);
}

.cert-badge-text {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    line-height: 1.6;
}


/* ================================================================
   18. CONTACT SECTION
   ================================================================ */
.section--contact {
    background: var(--color-dark-bg);
}

.section--contact .section-label .section-name {
    color: rgba(255, 255, 255, 0.5);
}

.section--contact .section-heading {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-3xl), 6vw, 5rem);
    margin-top: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-block {
    /* wrapper */
}

.contact-info-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.375rem;
}

.contact-info-value {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.contact-info-value a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.contact-info-value a:hover {
    color: var(--color-gold);
}

.contact-hrdc-badge {
    margin-top: var(--space-lg);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.hrdc-badge-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hrdc-badge-icon {
    color: var(--color-gold);
    font-size: var(--text-xl);
    font-weight: 700;
    flex-shrink: 0;
}

.hrdc-badge-text {
    font-size: var(--text-sm);
    color: var(--color-gold);
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    /* wrapper */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    color: var(--color-white);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    width: 100%;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.btn-submit {
    width: 100%;
    margin-top: var(--space-sm);
}


/* ================================================================
   19. FOOTER
   ================================================================ */
.footer {
    background: var(--color-footer-bg);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    /* wrapper */
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer .logo-v {
    color: var(--color-pink);
}

.footer .logo-ac {
    color: var(--color-white);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 320px;
}

.footer-hrdc {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gold);
}

.footer-links-col {
    /* wrapper */
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links li {
    font-size: var(--text-sm);
    color: var(--color-mid-gray);
    line-height: 1.5;
}

.footer-links a {
    color: var(--color-mid-gray);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: var(--color-mid-gray);
}

.footer-reg {
    font-size: var(--text-xs);
    color: var(--color-mid-gray);
}

.footer-admin-link {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.15);
    transition: color var(--transition-fast);
    font-weight: 400;
}

.footer-admin-link:hover {
    color: var(--color-mid-gray);
}


/* ================================================================
   20. SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children - applied via nth-child for grid items */
.services-grid .reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.process-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.process-grid .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.process-grid .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.team-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.team-grid .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.team-grid .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.courses-grid .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.courses-grid .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.courses-grid .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.courses-grid .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.courses-grid .reveal:nth-child(6) {
    transition-delay: 0.4s;
}

.courses-grid .reveal:nth-child(7) {
    transition-delay: 0.48s;
}

.programs-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.programs-grid .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.programs-grid .reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.testimonials-grid .reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.testimonials-grid .reveal:nth-child(3) {
    transition-delay: 0.24s;
}


/* ================================================================
   21. RESPONSIVE DESIGN
   ================================================================ */

/* Large Tablets / Small Desktops */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .process-step:nth-child(even) {
        margin-top: 0;
    }

    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        margin-top: 0;
    }

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

    .course-card--wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--color-warm-white);
        z-index: var(--z-overlay);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-base), visibility var(--transition-base);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-size: var(--text-2xl);
        font-family: var(--font-heading);
        font-weight: 600;
        color: var(--color-near-black);
    }

    .nav-links li a::after {
        bottom: -4px;
        height: 3px;
    }

    .nav-cta {
        font-size: var(--text-sm) !important;
        padding: 0.875rem 2rem !important;
    }

    .hero {
        padding: 7rem var(--container-padding) 4rem;
        min-height: 100svh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }

    .hero-scroll-indicator {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card--wide {
        grid-column: span 1;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Reduce stagger delays on mobile for faster perceived load */
    .services-grid .reveal:nth-child(2),
    .process-grid .reveal:nth-child(2),
    .process-grid .reveal:nth-child(3),
    .process-grid .reveal:nth-child(4),
    .team-grid .reveal:nth-child(2),
    .team-grid .reveal:nth-child(3),
    .team-grid .reveal:nth-child(4),
    .courses-grid .reveal:nth-child(n),
    .programs-grid .reveal:nth-child(n),
    .testimonials-grid .reveal:nth-child(n) {
        transition-delay: 0s;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    :root {
        --container-padding: 1.25rem;
    }

    .section {
        padding: clamp(3.5rem, 8vw, 5rem) 0;
    }

    .hero {
        padding: 6rem var(--container-padding) 3rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stat {
        flex-direction: column;
        gap: 0.25rem;
    }

    .section-heading {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .about-stats-row {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .director-quote {
        font-size: var(--text-lg);
    }

    .service-card {
        padding: var(--space-xl);
    }

    .clients-grid {
        gap: var(--space-md);
    }

    .client-logo-item {
        min-width: 120px;
        padding: var(--space-md) var(--space-lg);
    }

    .client-logo-item span {
        font-size: var(--text-xs);
    }

    .nav-logo {
        font-size: 1.75rem;
    }
}


/* ================================================================
   22. REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-line::after {
        animation: none;
    }

    .hero .hero-badge,
    .hero .hero-title,
    .hero .hero-subtitle,
    .hero .hero-actions,
    .hero .hero-stat {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


/* ================================================================
   23. PRINT STYLES
   ================================================================ */
@media print {
    .main-nav,
    .hero-scroll-indicator,
    .hero-geometric,
    .footer,
    .hamburger {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: #fff;
    }

    .hero-title {
        color: #000;
        font-size: 2.5rem;
    }

    .hero-title em {
        color: #000;
    }

    .hero-subtitle {
        color: #333;
    }

    .hero-badge span {
        color: #000;
        border-color: #000;
    }

    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }

    .section--director,
    .section--courses,
    .section--contact {
        background: #fff;
        color: #000;
    }

    .section--director .director-quote,
    .section--courses .course-card-title,
    .section--contact .section-heading {
        color: #000;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    a {
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #000;
    }
}
