/* ============================================
   Pickett Family Foundation
   Dynamic, Bold 2025 Design
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #6495ED;
    --dark-blue: #1E3A8A;
    --light-blue: #E0EAFF;
    --accent-blue: #4169E1;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --white: #ffffff;
    --off-white: #fafbfc;
    --border-light: rgba(100, 149, 237, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    padding-top: 120px;
    max-width: 100vw;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    width: 100%;
}

/* Header */
header {
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 51, 204, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 51, 204, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo-placeholder {
    background: transparent;
    padding: 12px 16px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    text-align: left;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder .logo-pickett {
    color: #0033CC;
    display: block;
    font-size: 28px;
    letter-spacing: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder .logo-family {
    color: #0033CC;
    display: block;
    font-size: 28px;
    letter-spacing: 9.6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder .logo-bar {
    display: block;
    width: 95%;
    height: 5px;
    background: #0033CC;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder .logo-bottom {
    color: #6B6B6B;
    display: block;
    font-size: 22px;
    letter-spacing: 0.6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state - smaller logo and nav */
header.scrolled .logo-placeholder {
    padding: 6px 8px;
}

header.scrolled .logo-placeholder h1 {
    font-size: 13px;
}

header.scrolled .logo-placeholder .logo-pickett {
    font-size: 14px;
    letter-spacing: 3px;
}

header.scrolled .logo-placeholder .logo-family {
    font-size: 14px;
    letter-spacing: 4.8px;
}

header.scrolled .logo-placeholder .logo-bar {
    height: 2.5px;
}

header.scrolled .logo-placeholder .logo-bottom {
    font-size: 11px;
    letter-spacing: 0.3px;
}

header.scrolled .header-nav a {
    font-size: 16px;
}

.header-nav {
    display: flex;
    gap: 48px;
    align-items: center;
}

.header-nav a {
    color: #0033CC;
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0033CC, var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.header-nav a:hover::after {
    transform: scaleX(1);
}

.header-nav a:hover {
    color: var(--primary-blue);
}

/* Hero Section - Side by Side Layout */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 50%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(100, 149, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 10vw, 120px);
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    margin: 0;
}

.hero-title {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.hero-title strong {
    font-weight: 800;
    background: linear-gradient(135deg, #0033CC 0%, var(--primary-blue) 50%, #4169E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(19px, 2.5vw, 26px);
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.015em;
    max-width: 600px;
    margin: 0;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(0, 51, 204, 0.15), rgba(100, 149, 237, 0.1));
    border-radius: 24px;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 51, 204, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 100px rgba(0, 51, 204, 0.25);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero {
        padding: 160px 0 80px;
    }

    .hero::before {
        display: none;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hero-subtitle {
        margin: 0 auto;
    }
}

/* Welcome Section - Enhanced Layout */
.welcome {
    padding: 100px 0 80px;
    background: var(--white);
    position: relative;
}

.welcome-content {
    max-width: 1080px;
    margin: 0 auto;
}

.welcome-header {
    position: relative;
    margin-bottom: 48px;
}

.welcome-accent-line {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #0033CC, var(--primary-blue), #4169E1);
    margin-bottom: 40px;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 51, 204, 0.2);
}

.welcome-content h2 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: -0.035em;
    line-height: 1.15;
    max-width: 900px;
    position: relative;
}

.welcome-text {
    max-width: 950px;
    margin-bottom: 32px;
}

.welcome-intro {
    font-size: 24px;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 36px;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.welcome-mission {
    font-size: 20px;
    line-height: 1.75;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.welcome-mission:last-child {
    margin-bottom: 0;
}

.welcome-text strong {
    font-weight: 600;
    color: var(--text-dark);
}

.welcome-callout {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(224, 234, 255, 0.4) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 12px;
    padding: 40px 48px;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(100, 149, 237, 0.08);
    position: relative;
    overflow: hidden;
}

.welcome-callout::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 140px;
    font-family: Georgia, serif;
    color: rgba(100, 149, 237, 0.1);
    line-height: 1;
    pointer-events: none;
}

.welcome-emphasis {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for welcome */
@media (max-width: 640px) {
    .welcome-callout {
        padding: 32px 28px;
    }

    .welcome-callout::before {
        font-size: 100px;
        top: -15px;
        left: 10px;
    }
}

/* Family Photo Section */
.family-photo {
    padding: 80px 0;
    background: var(--white);
}

.family-photo-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.family-photo-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Section Headers */
.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: -0.015em;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section - Dynamic Grid */
.about {
    padding: 80px 0;
    background: var(--off-white);
}

.about-content {
    max-width: 1180px;
    margin: 0 auto;
}

.about-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 900px;
    letter-spacing: -0.01em;
}

.family-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.family-intro-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.family-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.family-intro-card:hover::before {
    height: 100%;
}

.family-intro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(100, 149, 237, 0.3);
}

.family-intro-card h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.family-intro-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-closing {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 900px;
    letter-spacing: -0.01em;
}

/* Mission & Vision - Bold Split */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1f4d 0%, #1a2f5f 50%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 149, 237, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Mission card - more muted, representing current work */
.mission-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.mission-card h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.025em;
}

.mission-card p {
    font-size: 21px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Vision card - more vibrant blue, representing the ideal */
.vision-card {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(0, 51, 204, 0.25), rgba(100, 149, 237, 0.2));
    border-radius: 24px;
    border: 1px solid rgba(100, 149, 237, 0.4);
    box-shadow: 0 12px 40px rgba(0, 51, 204, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.vision-card:hover {
    background: linear-gradient(135deg, rgba(0, 51, 204, 0.3), rgba(100, 149, 237, 0.25));
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 51, 204, 0.35);
}

.vision-card h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.025em;
}

.vision-card p {
    font-size: 21px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Story Section - Engaging Layout */
.story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.story-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.story-highlights {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(224, 234, 255, 0.5) 100%);
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 8px 32px rgba(100, 149, 237, 0.15);
}

.story-highlights p {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

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

.story-closing {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-top: 32px;
    letter-spacing: -0.01em;
}

/* Gallery Section - Swiper Carousel */
.gallery {
    padding: 80px 0;
    background: var(--off-white);
}

.gallery-swiper {
    width: 100%;
    padding: 40px 0;
    overflow: visible;
}

.gallery-swiper .swiper-slide {
    width: 600px;
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: block;
    transition: box-shadow 0.5s ease;
}

.gallery-swiper .swiper-slide-active img {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Our Family Section */
.our-family {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.our-family-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.our-family-text h2 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 24px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.our-family-intro {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(135deg, #0033CC, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 36px;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.our-family-text p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.our-family-text p:last-child {
    margin-bottom: 0;
}

.our-family-photo {
    position: relative;
}

.our-family-photo::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, rgba(0, 51, 204, 0.1), rgba(100, 149, 237, 0.05));
    border-radius: 24px;
    z-index: -1;
}

.our-family-photo img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 51, 204, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-family-photo img:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 100px rgba(0, 51, 204, 0.25);
}

/* Leadership Section - Prominent */
.leadership {
    padding: 100px 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.leader-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 44px 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 51, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.leader-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0033CC, var(--primary-blue), #4169E1);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 22px 22px;
}

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

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0, 51, 204, 0.15);
    border-color: rgba(0, 51, 204, 0.2);
    background: var(--white);
}

.leader-card h3 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.leader-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Focus Areas - Bold & Dynamic */
.focus-areas {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 28px;
}

.focus-card {
    padding: 48px 40px;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid rgba(0, 51, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0033CC, var(--primary-blue), #4169E1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 204, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.focus-card:hover::after {
    opacity: 1;
}

.focus-card:hover {
    border-color: rgba(0, 51, 204, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 51, 204, 0.15);
}

.focus-number {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, #0033CC 0%, var(--primary-blue) 50%, #4169E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -0.05em;
    opacity: 0.9;
}

.focus-content h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.focus-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* How We Give - Clean & Clear */
.how-we-give {
    padding: 100px 0;
    background: var(--white);
}

.how-we-give-content {
    max-width: 950px;
    margin: 0 auto;
}

.how-we-give-content h2 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 28px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.how-intro {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 40px;
    letter-spacing: -0.015em;
}

.criteria-list {
    list-style: none;
    margin-bottom: 32px;
}

.criteria-list li {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-dark);
    padding-left: 0;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.criteria-list li:last-child {
    margin-bottom: 0;
}

.criteria-list li input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    cursor: default;
    flex-shrink: 0;
    position: relative;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.criteria-list li input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-color: var(--primary-blue);
}

.criteria-list li input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.criteria-list li span {
    flex: 1;
}

.how-closing {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Grantees - Elegant List */
.grantees {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.grantees-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-gray);
    letter-spacing: -0.01em;
}

.grantees-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 56px) clamp(24px, 6vw, 72px);
    box-shadow: 0 8px 40px rgba(0, 51, 204, 0.08);
    border: 2px solid rgba(0, 51, 204, 0.06);
    width: calc(100% - 40px);
}

.grantees-grid {
    column-count: 3;
    column-gap: clamp(28px, 5vw, 56px);
    list-style: none;
}

.grantee-item {
    break-inside: avoid;
    margin-bottom: 20px;
    padding-left: 0;
    padding-bottom: 2px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.grantee-item:hover {
    color: #0033CC;
    border-bottom-color: #0033CC;
}

/* Partnering - Engaging */
.partnering {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.partnering-content {
    max-width: 950px;
    margin: 0 auto;
}

.partnering-content h2 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 28px;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.partnering-intro {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 40px;
    letter-spacing: -0.015em;
}

.partnering-list {
    list-style: none;
    margin-bottom: 32px;
}

.partnering-list li {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-dark);
    padding-left: 0;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.partnering-list li:last-child {
    margin-bottom: 0;
}

.partnering-list li::before {
    content: '→';
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.partnering-closing {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Contact - Bold CTA */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1f4d 0%, var(--dark-blue) 100%);
    color: var(--white);
}

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

.contact-text h2 {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.contact-text p {
    font-size: 23px;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.95;
    letter-spacing: -0.015em;
}

.contact-item a {
    color: var(--white);
    font-size: 26px;
    text-decoration: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: -0.015em;
    font-weight: 600;
    position: relative;
}

.contact-item a:hover {
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 100px 0 56px;
    background: #0f1f4d;
    color: var(--white);
    border-top: 1px solid rgba(100, 149, 237, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
    align-items: start;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.5;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--white);
    padding-left: 6px;
    transform: translateX(2px);
}

.footer-section p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-logo .logo-placeholder {
    background: transparent;
    margin-bottom: 32px;
}

.footer-logo .logo-placeholder .logo-pickett,
.footer-logo .logo-placeholder .logo-family {
    color: var(--white);
}

.footer-logo .logo-placeholder .logo-bar {
    background: var(--white);
}

.footer-logo .logo-placeholder .logo-bottom {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: -0.015em;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 48px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-nav {
        gap: 32px;
    }

    .container {
        padding: 0 32px;
    }
}

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

    .our-family-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .focus-grid,
    .leadership-grid,
    .family-intro-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision::before {
        display: none;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grantees-grid {
        column-count: 2;
        column-gap: 40px;
    }

    .grantees-container {
        padding: 40px 36px;
    }

    .gallery-swiper .swiper-slide {
        width: 500px;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 100px;
    }

    .container {
        padding: 0 24px;
    }

    .hero {
        min-height: 70vh;
        padding: 140px 0 60px;
    }

    .welcome,
    .about,
    .mission-vision,
    .story,
    .gallery,
    .leadership,
    .focus-areas,
    .how-we-give,
    .grantees,
    .partnering,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }

    .grantees-grid {
        column-count: 1;
    }

    .grantees-container {
        padding: 32px 24px;
    }

    .gallery-swiper {
        padding: 40px 0;
    }

    .gallery-swiper .swiper-slide {
        width: 85%;
    }

    .gallery-swiper .swiper-slide img {
        border-radius: 12px;
    }
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

/* Fix selection for gradient text */
.hero-title strong::selection,
.focus-number::selection {
    -webkit-text-fill-color: var(--white);
    background: var(--primary-blue);
}

/* Smooth scroll */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

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