    :root {
      --sky-deep: #1a2d42;
      --sky-medium: #2d4a6a;
      --rust-accent: #c45c3e;
      --rust-hover: #d96c4e;
      --cream: #f5f1e8;
      --cream-dark: #e8e2d5;
      --gold-accent: #d4a84b;
      --text-dark: #1a1a1a;
      --text-muted: #5a5a5a;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Source Serif 4', Georgia, serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Noise texture overlay */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
      z-index: 1000;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(26, 45, 66, 0.95), rgba(26, 45, 66, 0.85));
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(212, 168, 75, 0.2);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--cream);
    }

    .logo-icon {
      width: 45px;
      height: 45px;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      line-height: 1;
    }

    .logo-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.7;
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      color: var(--cream);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold-accent);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      opacity: 1;
      color: var(--gold-accent);
    }

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

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-btn span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--cream);
      margin: 6px 0;
      transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky-medium) 50%, #3d5a7a 100%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at 30% 20%, rgba(212, 168, 75, 0.1) 0%, transparent 50%),
                  radial-gradient(ellipse at 70% 80%, rgba(196, 92, 62, 0.08) 0%, transparent 50%);
    }

    .hero-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-20deg);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(6rem, 20vw, 16rem);
      letter-spacing: 0.3em;
      color: rgba(255, 255, 255, 0.06);
      white-space: nowrap;
      pointer-events: none;
      z-index: 2;
      user-select: none;
      text-transform: uppercase;
      font-weight: 400;
      width: 200%;
      text-align: center;
    }

    /* Animated clouds */
    .cloud {
      position: absolute;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
      filter: blur(40px);
    }

    .cloud-1 {
      width: 400px;
      height: 150px;
      top: 20%;
      left: -10%;
      animation: float-cloud 60s linear infinite;
    }

    .cloud-2 {
      width: 300px;
      height: 100px;
      top: 60%;
      left: -15%;
      animation: float-cloud 80s linear infinite;
      animation-delay: -20s;
    }

    .cloud-3 {
      width: 500px;
      height: 180px;
      top: 40%;
      left: -20%;
      animation: float-cloud 90s linear infinite;
      animation-delay: -40s;
    }

    @keyframes float-cloud {
      from { transform: translateX(0); }
      to { transform: translateX(calc(100vw + 500px)); }
    }

    .hero-content {
      text-align: center;
      color: var(--cream);
      position: relative;
      z-index: 2;
      padding: 2rem;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(212, 168, 75, 0.15);
      border: 1px solid rgba(212, 168, 75, 0.3);
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fade-in-up 1s ease-out;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 10vw, 7rem);
      letter-spacing: 0.05em;
      line-height: 0.95;
      margin-bottom: 1.5rem;
      animation: fade-in-up 1s ease-out 0.2s both;
    }

    .hero h1 span {
      display: block;
      color: var(--gold-accent);
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      max-width: 650px;
      margin: 0 auto 2.5rem;
      opacity: 0.9;
      font-weight: 400;
      animation: fade-in-up 1s ease-out 0.4s both;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fade-in-up 1s ease-out 0.6s both;
    }

    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-primary {
      background: var(--rust-accent);
      color: var(--cream);
    }

    .btn-primary:hover {
      background: var(--rust-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(196, 92, 62, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--cream);
      border: 2px solid var(--cream);
    }

    .btn-secondary:hover {
      background: var(--cream);
      color: var(--sky-deep);
      transform: translateY(-2px);
    }

    /* Secondary button on light backgrounds */
    .program-cta .btn-secondary,
    #programs .btn-secondary {
      color: var(--rust-accent);
      border: 2px solid var(--rust-accent);
    }

    .program-cta .btn-secondary:hover,
    #programs .btn-secondary:hover {
      background: var(--rust-accent);
      color: white;
    }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 2px solid rgba(245, 241, 232, 0.4);
    }

    .btn-outline:hover {
      background: rgba(245, 241, 232, 0.1);
      border-color: var(--cream);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: var(--cream);
      opacity: 0.6;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-10px); }
      60% { transform: translateX(-50%) translateY(-5px); }
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      right: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--cream);
      opacity: 0.7;
      animation: fade-in-up 1s ease-out 1s both;
    }

    .hero-scroll span {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }

    .hero-scroll svg {
      animation: bounce-down 2s infinite;
    }

    @keyframes bounce-down {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(5px); }
      60% { transform: translateY(3px); }
    }

    /* Sections */
    section {
      padding: 6rem 2rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rust-accent);
      margin-bottom: 1rem;
      display: block;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 0.03em;
      color: var(--sky-deep);
      line-height: 1.1;
    }

    /* Mission Section */
    #mission {
      background: var(--cream);
      position: relative;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .mission-content h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--sky-deep);
      margin-bottom: 1.5rem;
      letter-spacing: 0.02em;
    }

    .mission-content p {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .mission-visual {
      position: relative;
    }

    .mission-card {
      background: white;
      padding: 3rem;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(26, 45, 66, 0.1);
      position: relative;
      overflow: hidden;
    }

    .mission-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--rust-accent), var(--gold-accent));
    }

    .mission-statement {
      font-size: 1.3rem;
      font-style: italic;
      color: var(--sky-deep);
      line-height: 1.8;
    }

    .mission-statement::before {
      content: '"';
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      color: var(--rust-accent);
      opacity: 0.2;
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      line-height: 1;
    }

    /* Values Grid */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      align-items: start;
    }

    .value-item {
      background: white;
      padding: 1.25rem;
      border-radius: 6px;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .value-item:hover {
      border-color: var(--gold-accent);
      box-shadow: 0 10px 30px rgba(26, 45, 66, 0.1);
    }

    .value-item.expanded {
      border-color: var(--rust-accent);
    }

    .value-header {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .value-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--sky-deep), var(--sky-medium));
      border-radius: 50%;
      color: var(--cream);
    }

    .value-item h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--sky-deep);
      letter-spacing: 0.02em;
      margin-bottom: 0.5rem;
    }

    .value-toggle {
      width: 20px;
      height: 20px;
      color: var(--rust-accent);
      transition: transform 0.3s ease;
    }

    .value-item.expanded .value-toggle {
      transform: rotate(180deg);
    }

    .value-description {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.3s ease;
      text-align: left;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }

    .value-item.expanded .value-description {
      max-height: 500px;
      padding-top: 1rem;
      padding-bottom: 0.5rem;
      margin-top: 0.75rem;
      border-top: 1px solid var(--cream-dark);
    }

    .value-description p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    /* About Section */
    #about {
      background: var(--sky-deep);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 75, 0.05) 0%, transparent 50%);
    }

    #about .section-label {
      color: var(--gold-accent);
    }

    #about .section-title {
      color: var(--cream);
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .pillar-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--gold-accent);
      transform: scaleY(0);
      transition: transform 0.4s ease;
      transform-origin: bottom;
    }

    .pillar-card:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateX(10px);
    }

    .pillar-card:hover::before {
      transform: scaleY(1);
    }

    .pillar-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--gold-accent);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .pillar-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
      color: var(--cream);
    }

    .pillar-card p {
      font-size: 1rem;
      opacity: 0.8;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }

    .pillar-learn-more {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gold-accent);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .pillar-learn-more:hover {
      gap: 0.75rem;
      color: var(--cream);
    }

    .pillar-learn-more svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }

    .pillar-learn-more:hover svg {
      transform: translateX(3px);
    }

    /* Programs Section */
    #programs {
      background: var(--cream);
    }

    .programs-intro {
      max-width: 800px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .programs-intro p {
      font-size: 1.1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .program-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .program-tab {
      padding: 0.75rem 1.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      background: white;
      border: 2px solid var(--cream-dark);
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .program-tab:hover {
      border-color: var(--sky-medium);
    }

    .program-tab.active {
      background: var(--sky-deep);
      border-color: var(--sky-deep);
      color: white;
    }

    .program-content {
      display: none;
      background: white;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(26, 45, 66, 0.08);
    }

    .program-content.active {
      display: block;
    }

    .program-header {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--cream-dark);
    }

    .program-icon {
      width: 80px;
      height: 80px;
      min-width: 80px;
      background: linear-gradient(135deg, var(--sky-deep), var(--sky-medium));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .program-icon svg {
      width: 40px;
      height: 40px;
    }

    .program-title-block h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--sky-deep);
      margin-bottom: 0.5rem;
    }

    .program-title-block .program-tagline {
      font-size: 1.1rem;
      color: var(--rust-accent);
      font-weight: 500;
    }

    .program-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .program-section h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--sky-deep);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .program-section h4 svg {
      width: 18px;
      height: 18px;
      color: var(--rust-accent);
    }

    .program-section ul {
      list-style: none;
      padding: 0;
    }

    .program-section li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .program-section li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.9rem;
      width: 6px;
      height: 6px;
      background: var(--gold-accent);
      border-radius: 50%;
    }

    .program-cta {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--cream-dark);
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .program-cta .btn {
      font-size: 0.9rem;
    }

    .pathway-note {
      background: linear-gradient(135deg, var(--cream) 0%, #e8e4da 100%);
      padding: 1.5rem;
      border-radius: 8px;
      margin-top: 1.5rem;
      border-left: 4px solid var(--gold-accent);
    }

    .pathway-note h5 {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--sky-deep);
      margin-bottom: 0.5rem;
    }

    .pathway-note p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Projects Section */
    #projects {
      background: var(--cream-dark);
      position: relative;
    }

    .carousel-container {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: white;
      box-shadow: 0 30px 80px rgba(26, 45, 66, 0.15);
    }

    .carousel {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .project-image {
      height: 500px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: opacity 0.4s ease;
    }

    .project-image img.before {
      position: relative;
      z-index: 1;
    }

    .project-image img.after {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .project-image:hover img.before {
      opacity: 0;
    }

    .project-image .hover-hint {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: rgba(26, 45, 66, 0.8);
      color: var(--cream);
      padding: 0.4rem 0.8rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 3px;
      z-index: 2;
      transition: opacity 0.3s ease;
    }

    .project-image:hover .hover-hint {
      opacity: 0;
    }

    .project-image .photo-credit {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      background: rgba(26, 45, 66, 0.85);
      color: var(--cream);
      padding: 0.5rem 0.75rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      border-radius: 3px;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .project-image:hover .photo-credit {
      opacity: 1;
    }

    .project-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 50%, rgba(26, 45, 66, 0.1) 100%);
    }

    /* Placeholder images with aviation theme */
    .project-image.fairchild {
      background: linear-gradient(135deg, #3d5a7a 0%, #2d4a6a 50%, #1a2d42 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .project-image.fairchild::before {
      content: '';
      width: 200px;
      height: 200px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4a84b' opacity='0.3' d='M50 20 L80 50 L50 45 L20 50 Z M45 45 L45 75 L50 80 L55 75 L55 45 Z M25 48 L10 55 L25 52 Z M75 48 L90 55 L75 52 Z'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity: 0.5;
    }

    .project-image.future {
      background: linear-gradient(135deg, #4a6b8a 0%, #3d5a7a 50%, #2d4a6a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .project-image.future::before {
      content: '?';
      font-family: 'Bebas Neue', sans-serif;
      font-size: 8rem;
      color: var(--gold-accent);
      opacity: 0.2;
    }

    .project-image.stampe {
      background: linear-gradient(135deg, #4a3d2d 0%, #5c4d3a 50%, #6e5d48 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .project-image.stampe::before {
      content: '';
      width: 180px;
      height: 180px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4a84b' opacity='0.3' d='M20 45 L80 45 L80 48 L20 48 Z M20 55 L80 55 L80 58 L20 58 Z M45 30 L55 30 L55 70 L45 70 Z M30 40 L25 35 L25 65 L30 60 Z M70 40 L75 35 L75 65 L70 60 Z'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity: 0.5;
    }

    .project-image.champ {
      background: linear-gradient(135deg, #2d4a3a 0%, #3d5a4a 50%, #4a6b5a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .project-image.champ::before {
      content: '';
      width: 180px;
      height: 180px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4a84b' opacity='0.3' d='M50 20 L70 50 L50 45 L30 50 Z M47 45 L47 75 L50 80 L53 75 L53 45 Z M15 35 L20 40 L85 40 L90 35 Z'/%3E%3C/svg%3E") center/contain no-repeat;
      opacity: 0.5;
    }

    .project-info {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow-y: auto;
      max-height: 500px;
    }

    .project-status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .status-active .status-dot {
      background: #22c55e;
    }

    .status-planned .status-dot {
      background: var(--gold-accent);
      animation: none;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .project-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--sky-deep);
      letter-spacing: 0.03em;
      margin-bottom: 0.25rem;
      line-height: 1;
    }

    .project-year {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: var(--rust-accent);
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .project-info > p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .project-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
      padding-top: 1rem;
      border-top: 1px solid var(--cream-dark);
    }

    .stat {
      text-align: center;
    }

    .stat-value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--sky-deep);
      line-height: 1;
    }

    .stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-top: 0.15rem;
    }

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.20rem 1rem;
      margin-top: 1rem;
      padding: 0.75rem;
      background: var(--cream);
      border-radius: 6px;
    }

    .spec-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 0.12rem 0;
      border-bottom: 1px dotted var(--cream-dark);
    }

    .spec-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text-muted);
    }

    .spec-value {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--sky-deep);
    }

    .carousel-nav {
      position: absolute;
      top: 1rem;
      right: 1rem;
      display: flex;
      gap: 0.5rem;
      z-index: 10;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--sky-deep);
      background: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .carousel-btn:hover {
      background: var(--sky-deep);
      color: white;
    }

    .carousel-btn svg {
      width: 18px;
      height: 18px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      padding: 1.5rem;
      background: var(--cream-dark);
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--sky-medium);
      opacity: 0.3;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dot.active {
      opacity: 1;
      background: var(--rust-accent);
      transform: scale(1.2);
    }

    /* Donate Section */
    #donate {
      background: linear-gradient(135deg, var(--rust-accent) 0%, #a84832 100%);
      color: var(--cream);
      position: relative;
      overflow: hidden;
      padding: 5rem 2rem;
    }

    #donate::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .donate-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
      position: relative;
      z-index: 1;
    }

    #donate .section-label {
      color: var(--gold-accent);
    }

    #donate .section-title {
      color: var(--cream);
    }

    .donate-intro {
      font-size: 1.1rem;
      opacity: 0.9;
      line-height: 1.7;
    }

    .sponsorship-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .sponsorship-tab {
      padding: 0.75rem 1.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      color: var(--cream);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .sponsorship-tab:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .sponsorship-tab.active {
      background: var(--cream);
      color: var(--rust-accent);
      border-color: var(--cream);
    }

    .sponsorship-content {
      display: none;
      position: relative;
      z-index: 1;
    }

    .sponsorship-content.active {
      display: block;
    }

    .sponsorship-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .sponsorship-card {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      color: var(--text-color);
      position: relative;
      transition: all 0.3s ease;
    }

    .sponsorship-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .sponsorship-card.featured {
      border: 2px solid var(--gold-accent);
    }

    .sponsorship-card.highlight {
      background: linear-gradient(135deg, #fff9e6 0%, white 100%);
    }

    .sponsorship-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--rust-accent);
      margin-bottom: 0.5rem;
    }

    .sponsorship-card h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--sky-deep);
      margin-bottom: 0.75rem;
    }

    .sponsorship-card > p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .sponsorship-details {
      background: var(--cream);
      padding: 1rem;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .sponsorship-details h5 {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--sky-deep);
      margin-bottom: 0.5rem;
    }

    .sponsorship-details ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .sponsorship-details li {
      font-size: 0.85rem;
      color: var(--text-muted);
      padding: 0.25rem 0;
      padding-left: 1.25rem;
      position: relative;
    }

    .sponsorship-details li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--rust-accent);
      font-weight: bold;
    }

    .sponsorship-note {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-style: italic;
      margin-bottom: 1rem;
    }

    .btn-sponsor {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: var(--sky-deep);
      color: white;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      justify-content: center;
    }

    .btn-sponsor:hover {
      background: var(--rust-accent);
    }

    .general-donate-content {
      background: white;
      border-radius: 12px;
      padding: 3rem;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      color: var(--text-color);
    }

    .general-donate-content h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--sky-deep);
      margin-bottom: 1rem;
    }

    .general-donate-content > p {
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .donate-options {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .donate-amount {
      padding: 0.75rem 1.5rem;
      background: var(--cream);
      border: 2px solid var(--cream-dark);
      border-radius: 4px;
      color: var(--sky-deep);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .donate-amount:hover,
    .donate-amount.selected {
      background: var(--sky-deep);
      color: white;
      border-color: var(--sky-deep);
    }

    .btn-donate {
      background: var(--rust-accent);
      color: white;
      font-size: 1rem;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-donate:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    #donate > .donate-note {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      opacity: 0.8;
      margin-top: 3rem;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* Contact Section */
    #contact {
      background: var(--cream);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;
    }

    .contact-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--sky-deep);
      margin-bottom: 1.5rem;
    }

    .contact-info p {
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .contact-icon {
      width: 45px;
      height: 45px;
      background: var(--sky-deep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream);
      flex-shrink: 0;
    }

    .contact-item-content h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--sky-deep);
      margin-bottom: 0.25rem;
    }

    .contact-item-content p {
      color: var(--text-muted);
      margin: 0;
    }

    .contact-form {
      background: white;
      padding: 3rem;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(26, 45, 66, 0.1);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--sky-deep);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--cream-dark);
      border-radius: 4px;
      font-family: 'Source Serif 4', serif;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--sky-medium);
    }

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

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

    /* Footer */
    footer {
      background: var(--sky-deep);
      color: var(--cream);
      padding: 4rem 2rem 2rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      opacity: 0.7;
      margin-top: 1rem;
      font-size: 0.95rem;
    }

    .footer-links h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.5rem;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: var(--cream);
      opacity: 0.7;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: opacity 0.3s ease;
    }

    .footer-links a:hover {
      opacity: 1;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      opacity: 0.6;
    }

    /* Mobile Styles */
    @media (max-width: 1024px) {
      .mission-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

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

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

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

    @media (max-width: 768px) {
      nav {
        padding: 1rem;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--sky-deep);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .mobile-menu-btn {
        display: block;
      }

      .carousel-slide {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
      }

      .project-image {
        height: 250px;
        min-height: 250px;
        flex-shrink: 0;
      }

      /* On touch devices, completely disable hover effect and only show before image */
      .project-image img.before {
        position: relative;
        opacity: 1 !important;
      }

      .project-image:hover img.before {
        opacity: 1 !important;
      }

      .project-image img.after {
        display: none !important;
      }

      .project-image .hover-hint {
        display: none !important;
      }

      .project-image .photo-credit {
        display: none !important;
      }

      .carousel-nav {
        top: auto;
        bottom: 1rem;
        right: 1rem;
      }

      .carousel-btn {
        width: 36px;
        height: 36px;
      }

      .project-info {
        max-height: none;
        overflow-y: visible;
        padding: 1rem;
      }

      .project-info h3 {
        font-size: 1.5rem;
      }

      .project-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

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

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

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

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

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .donate-options {
        flex-direction: column;
        align-items: stretch;
      }

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

      .sponsorship-tabs {
        gap: 0.5rem;
      }

      .sponsorship-tab {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
      }

      .sponsorship-card {
        padding: 1.5rem;
      }

      .sponsorship-amount {
        font-size: 2rem;
      }

      .program-tabs {
        flex-direction: column;
      }

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

      .hero-scroll {
        display: none;
      }
    }
