/* Modern Newark Arts Board Retreat - Contemporary Design System */

/* CSS Custom Properties - Modern Color Palette */
:root {
    /* Primary Brand Colors */
    --primary-teal: #2A7F8B;
    --primary-teal-dark: #1F5F68;
    --warm-terracotta: #E07A5F;
    --warm-terracotta-dark: #C85A3A;
    --sage-green: #9abbb5;
    --sage-green-dark: #9abbb5;
    --sage-green-light: #9abbb5;
    --sage-green-subtle: rgba(154, 187, 181, 0.1);
    --sage-green-border: rgba(154, 187, 181, 0.3);
    --warm-beige: #f5f0eb;
    --deep-purple: #4A3A4A;
    --off-white: #F8F9FA;
    
    /* Modern Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --background: var(--white);
    --surface: var(--gray-50);
    --border: var(--gray-200);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--sage-green) 100%);
    --gradient-sage: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
    --gradient-warm: linear-gradient(135deg, var(--warm-terracotta) 0%, var(--warm-beige) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Typography Scale */
    --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;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Font Families */
    --font-display: 'GFS Didot', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Accessibility */
    --focus-ring: 0 0 0 3px rgba(42, 127, 139, 0.3);
    --focus-ring-offset: 2px;

    /* High Contrast Colors for Accessibility */
    --text-high-contrast: #000000;
    --bg-high-contrast: #FFFFFF;
    --link-high-contrast: var(--primary-teal-dark);

    /* Updated Text Colors */
    --heading-color: var(--primary-teal);
    --body-text-color: #000000;
}

/* Modern Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Focus styles for accessibility */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: var(--focus-ring-offset);
    box-shadow: var(--focus-ring);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

p {
    margin-bottom: var(--space-3);
    color: var(--body-text-color);
    font-weight: 400;
    line-height: 1.5;
    font-size: var(--text-base);
}

/* Modern Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* Modern Navigation */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.modern-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
    max-width: 1600px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity var(--transition-fast);
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-logo {
    height: 63px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-teal);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-tagline {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent-terracotta);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--heading-color);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-base);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--sage-green-dark);
    background-color: var(--sage-green-subtle);
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

.nav-link.cta-link {
    background: var(--primary-teal);
    color: white;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link.cta-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Large screens - adjust navigation spacing */
@media (max-width: 1200px) {
    .nav-menu {
        gap: var(--space-4);
    }

    .nav-link {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-base);
    }
}

/* Medium screens - tighter navigation spacing */
@media (max-width: 1024px) {
    .nav-menu {
        gap: var(--space-3);
    }

    .nav-link {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }

    .brand-logo {
        height: 56px;
    }
}

/* Small screens - very tight spacing before mobile */
@media (max-width: 900px) {
    .nav-menu {
        gap: var(--space-2);
    }

    .nav-link {
        padding: var(--space-1) var(--space-2);
        font-size: var(--text-sm);
    }

    .nav-link.cta-link {
        padding: var(--space-2) var(--space-3);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* Company Header */
.company-header {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: var(--space-2) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.company-name {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: #9abbb5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Modern Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--warm-beige);
    color: var(--primary-teal);
    position: relative;
    overflow: hidden;
    padding-top: var(--space-16);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    color: var(--heading-color);
    margin-bottom: var(--space-6);
    text-shadow: none;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-8);
    color: var(--body-text-color);
    opacity: 1;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.hero-detail {
    text-align: center;
}

.hero-detail-label {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-bottom: var(--space-1);
}

.hero-detail-value {
    font-weight: 600;
    font-size: var(--text-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.facilitator-link {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.facilitator-link:hover,
.facilitator-link:focus-visible {
    color: var(--sage-green-dark);
    text-decoration: underline;
}

.company-credit {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent-terracotta);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

.hero-image {
    margin-top: var(--space-10);
    text-align: center;
}

.hero-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-4);
    transition: all var(--transition-normal);
    object-fit: cover;
    background-color: var(--warm-beige);
}

.hero-image a:hover .hero-photo,
.hero-image a:focus-visible .hero-photo {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hero-image a:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}

/* Image loading and error handling */
.hero-photo,
.profile-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* SVG-specific styling removed - now using PNG assets */

/* Image error handling */
.hero-photo,
.profile-photo {
    min-height: 200px;
    background-color: var(--warm-beige);
    background-image: linear-gradient(45deg, var(--sage-green-subtle) 25%, transparent 25%),
                      linear-gradient(-45deg, var(--sage-green-subtle) 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, var(--sage-green-subtle) 75%),
                      linear-gradient(-45deg, transparent 75%, var(--sage-green-subtle) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.profile-photo {
    min-height: 150px;
}

.hero-image-caption {
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-caption p {
    font-size: var(--text-sm);
    color: var(--body-text-color);
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--warm-terracotta);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--warm-terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

.btn-secondary {
    background: rgba(42, 127, 139, 0.1);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--warm-terracotta);
    border-color: var(--warm-terracotta);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .company-header {
        padding: var(--space-2) 0;
    }

    .company-name {
        font-size: var(--text-xs);
    }

    .hero {
        padding-top: var(--space-16);
    }

    .hero-details {
        flex-direction: column;
        gap: var(--space-4);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-photo {
        max-width: 300px;
    }

    .hero-image-caption {
        padding: 0 var(--space-4);
    }

    .content-grid-centered {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Modern Section System */
.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-alt {
    background: var(--warm-beige);
}

.section-sage {
    background: var(--sage-green-subtle);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Modern Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.content-grid-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--sage-green-border);
}

.content-card.featured {
    background: var(--gradient-primary);
    color: white;
    grid-column: 1 / -1;
}

.content-card.featured h3 {
    color: white;
}

.content-card.featured p {
    color: white;
}

.content-card h3 {
    margin-bottom: var(--space-3);
    color: var(--heading-color);
}

.content-card p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--body-text-color);
    font-weight: 400;
}

/* Modern Intentions Grid */
.intentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.intention-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--warm-terracotta);
    position: relative;
}

.intention-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--sage-green);
}

.intention-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: var(--text-sm);
}

.intention-card h3 {
    margin-bottom: var(--space-3);
    color: var(--heading-color);
    padding-right: var(--space-12);
}

.intention-card p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--body-text-color);
    font-weight: 400;
}

/* Modern Objectives Timeline */
.objectives-timeline {
    position: relative;
    margin-top: var(--space-12);
}

.objectives-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-teal);
    border-radius: 1px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    position: relative;
}

.objective-marker {
    width: 40px;
    height: 40px;
    background: var(--warm-terracotta);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.objective-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    flex: 1;
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.objective-content:hover {
    border-color: var(--sage-green-border);
    box-shadow: var(--shadow-lg);
}

.objective-content h3 {
    margin-bottom: var(--space-3);
    color: var(--heading-color);
}

.objective-content p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--body-text-color);
    font-weight: 400;
}

/* Modern Agenda Flow */
.agenda-flow {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.flow-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
}

.flow-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-green-border);
}

.flow-number {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.flow-content h3 {
    margin-bottom: var(--space-2);
    color: var(--heading-color);
}

.flow-content p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--body-text-color);
    font-weight: 400;
}

.agenda-notes {
    margin-top: var(--space-16);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.agenda-notes h3 {
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--heading-color);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.note-item {
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--warm-terracotta);
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Footer Attribution */
.footer-attribution {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-8) 0;
    border-top: 1px solid var(--border);
}

.attribution-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.crafted-by-text {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    color: var(--primary-teal);
    font-weight: 500;
}

.attribution-text {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.attribution-link {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.attribution-link:hover,
.attribution-link:focus-visible {
    color: var(--primary-teal-light);
    text-decoration: underline;
}

.attribution-tagline {
    font-size: var(--text-sm);
    color: var(--gray-400);
    font-style: italic;
    margin-top: var(--space-2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

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

    .objectives-timeline::before {
        left: 15px;
    }

    .objective-marker {
        width: 30px;
        height: 30px;
    }

    .flow-item {
        flex-direction: column;
        text-align: center;
    }

    .flow-number {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }

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

/* Modern Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-12);
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
    border-left: 4px solid var(--warm-terracotta);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--sage-green);
}

.approach-card h3 {
    margin-bottom: var(--space-3);
    color: var(--heading-color);
}

.approach-card p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--body-text-color);
    font-weight: 400;
}

/* Modern Deliverables List */
.deliverables-list {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.deliverable-item {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
    border-left: 4px solid var(--warm-terracotta);
}

.deliverable-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--sage-green);
}

.deliverable-content h3 {
    margin-bottom: var(--space-3);
    color: var(--heading-color);
}

.deliverable-content p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--body-text-color);
}

/* Modern Investment Section */
.investment-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.investment-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.investment-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--gray-100);
}

.investment-header h3 {
    margin-bottom: var(--space-4);
    color: var(--heading-color);
}

.investment-amount {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--warm-terracotta);
    background: var(--warm-beige);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
}

.investment-includes {
    margin-bottom: var(--space-8);
}

.investment-includes h4 {
    margin-bottom: var(--space-4);
    color: var(--heading-color);
}

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

.include-item {
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--warm-terracotta);
    color: var(--body-text-color);
    font-size: var(--text-sm);
}

.investment-notes h4 {
    margin-bottom: var(--space-4);
    color: var(--heading-color);
}

.investment-notes ul {
    list-style: none;
    padding: 0;
}

.investment-notes li {
    padding: var(--space-2) 0;
    color: var(--body-text-color);
    position: relative;
    padding-left: var(--space-6);
}

.investment-notes li::before {
    content: '•';
    color: var(--warm-terracotta);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.next-steps-card {
    background: var(--primary-teal);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    color: white;
    box-shadow: var(--shadow-lg);
}

.next-steps-card h3 {
    color: white;
    text-align: center;
    margin-bottom: var(--space-6);
}

.steps-list {
    margin-bottom: var(--space-8);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.step-number {
    width: 30px;
    height: 30px;
    background: white;
    color: var(--primary-teal);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    margin-bottom: var(--space-1);
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: var(--text-sm);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Modern Contact & Footer Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.facilitator-profile {
    background: var(--primary-teal);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    color: white;
    box-shadow: var(--shadow-xl);
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    margin: 0 auto var(--space-6);
    display: block;
    transition: all var(--transition-normal);
    background-color: var(--warm-beige);
    aspect-ratio: 1;
}

.profile-image a:hover .profile-photo,
.profile-image a:focus-visible .profile-photo {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.profile-image a:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
    border-radius: var(--radius-full);
}

.contact-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
}

.form-input, .form-textarea {
    padding: var(--space-4);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(42, 127, 139, 0.1);
}

.modern-footer {
    background: var(--gray-900);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
    .investment-container { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }

    .profile-info {
        text-align: left;
        padding: 0 var(--space-2);
    }
}

/* Modern Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.facilitator-profile {
    background: var(--primary-teal);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    color: white;
    box-shadow: var(--shadow-xl);
}

.profile-image {
    text-align: center;
    margin-bottom: var(--space-6);
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    background-color: var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    color: var(--deep-purple);
    text-align: center;
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    color: white;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.profile-name-link {
    color: white;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.profile-name-link:hover,
.profile-name-link:focus-visible {
    color: var(--cream);
    text-decoration: underline;
}

.profile-title {
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-5);
    color: white;
    opacity: 0.98;
    letter-spacing: 0.01em;
}

.company-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.company-link:hover,
.company-link:focus-visible {
    color: white;
    text-decoration: underline;
}

.profile-description {
    color: white;
    font-size: var(--text-base);
    font-weight: 400;
    margin-bottom: var(--space-6);
    opacity: 0.98;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-align: left;
    max-width: none;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: white;
    text-decoration: none;
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(154, 187, 181, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateX(4px);
}

.method-label {
    font-weight: 600;
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Modern Form */
.contact-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--heading-color);
}

.modern-form {
    display: grid;
    gap: var(--space-6);
}

.form-group {
    display: grid;
    gap: var(--space-2);
}

.form-label {
    font-weight: 500;
    color: var(--heading-color);
    font-size: var(--text-sm);
}

.form-input,
.form-textarea {
    padding: var(--space-4);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(42, 127, 139, 0.1);
}

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

/* Form Validation Styles */
.form-input.error,
.form-textarea.error {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-error {
    color: #DC2626;
    font-size: var(--text-sm);
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.form-error::before {
    content: '⚠';
    font-size: var(--text-sm);
}

/* Modern Footer */
.modern-footer {
    background: var(--gray-900);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo-container {
    margin-bottom: var(--space-4);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: var(--gray-300);
    margin-bottom: 0;
}

.footer-actions {
    display: flex;
    gap: var(--space-4);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    color: var(--gray-400);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

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

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .investment-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .brand-text {
        display: none;
    }

    .brand-logo {
        height: 50px;
    }

    .attribution-content {
        padding: 0 var(--space-4);
    }

    .attribution-text {
        font-size: var(--text-sm);
    }

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

    .deliverable-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-6);
        text-align: center;
    }

    .footer-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-16) 0;
    }

    .container {
        padding: 0 var(--space-3);
    }

    .modern-nav .container {
        padding-top: var(--space-3);
        padding-bottom: var(--space-3);
    }

    .facilitator-profile,
    .contact-form {
        padding: var(--space-6);
    }

    .profile-title {
        font-size: var(--text-lg);
        margin-bottom: var(--space-4);
    }

    .profile-description {
        font-size: var(--text-sm);
        line-height: 1.6;
    }

    .investment-card,
    .next-steps-card {
        padding: var(--space-6);
    }
}

/* Accessibility Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.high-contrast {
    color: var(--text-high-contrast) !important;
    background-color: var(--bg-high-contrast) !important;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-teal);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: var(--text-high-contrast);
        --text-secondary: var(--text-high-contrast);
        --border: #000000;
    }
}
