 :root {
        --bg: #f4f1ea;
        --text: #0e0e0e;
        --muted: #6a6862;
        --card: #ffffff;
      }

      body {
        background: var(--bg);
        color: var(--text);
        font-family: Inter, sans-serif;
        overflow-x: hidden;
      }

      .container-lg {
        max-width: 1300px;
      }
      .hero-wrapper {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .hero-image img {
        width: 100%;
        border-radius: 35px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
        transform: translateY(0);
        transition: 0.5s ease;
      }

      .hero-image img:hover {
        transform: translateY(-10px) scale(1.02);
      }

      @media (max-width: 992px) {
        .hero-wrapper {
          grid-template-columns: 1fr;
          text-align: center;
        }
      }

      /* ANIMATION */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
      }

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

      /* HERO */
      .project-hero {
        padding: 40px 0 60px;
      }

      .project-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 999px;
        background: white;
        font-size: 14px;
        margin-bottom: 30px;
      }

      .project-hero h1 {
        font-size: 90px;
        line-height: 1;
        font-weight: 700;
        max-width: 900px;
        margin-bottom: 25px;
      }

      .project-hero p {
        font-size: 22px;
        color: var(--muted);
        max-width: 800px;
        line-height: 1.8;
      }

      .hero-image {
        margin-top: 70px;
      }

      .hero-image img {
        width: 100%;
        border-radius: 35px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
      }

      /* SECTIONS */
      .section {
        padding: 120px 0;
      }

      .section-header span {
        letter-spacing: 2px;
        font-size: 13px;
        text-transform: uppercase;
        color: var(--muted);
      }

      .section-header h2 {
        font-size: 55px;
        margin-top: 10px;
      }

      /* SUMMARY */
      .summary-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
      }

      .summary-text p {
        font-size: 20px;
        line-height: 1.9;
        color: var(--muted);
      }

      .stat-card {
        background: white;
        padding: 35px;
        border-radius: 30px;
        margin-bottom: 20px;
      }

      .stat-card h3 {
        font-size: 48px;
      }

      .stat-card span {
        color: var(--muted);
      }

      /* GALLERY */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }

      .gallery-grid img {
        width: 100%;
        border-radius: 25px;
        transition: 0.4s;
      }

      .gallery-grid img:hover {
        transform: scale(1.03);
      }

      /* TIMELINE */
      .timeline {
        max-width: 900px;
        margin: auto;
        position: relative;
      }

      .timeline::before {
        content: "";
        position: absolute;
        left: 40px;
        top: 0;
        width: 2px;
        height: 100%;
        background: #ddd;
      }

      .timeline-item {
        display: flex;
        gap: 30px;
        margin-bottom: 50px;
      }

      .timeline-number {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
      }

      .timeline-content {
        background: white;
        padding: 30px;
        border-radius: 25px;
        flex: 1;
      }

      /* CTA */
      .cta {
        padding: 120px 0;
        text-align: center;
      }

      .cta h2 {
        font-size: 60px;
      }

      .cta p {
        color: var(--muted);
        font-size: 20px;
        margin-top: 20px;
      }

      .cta-btn {
        display: inline-block;
        margin-top: 35px;
        padding: 16px 38px;
        background: #111;
        color: white;
        border-radius: 999px;
        text-decoration: none;
      }

      /* ====================================
   PROJECT SUMMARY
==================================== */

      .project-summary-section {
        padding: 140px 0;
        background: #f4f1ea;
      }

      .project-summary-content {
        max-width: 1280px;
      }

      .project-summary-title {
        font-size: 60px;
        font-weight: 700;
        color: #6a6862;
        margin-bottom: 45px;
        line-height: 1;
      }

      .project-summary-description {
        font-size: 24px;
        line-height: 1.45;
        color: #111;
        margin-bottom: 80px;
        max-width: 1200px;
      }

      .project-summary-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
      }

      .summary-box {
        background: #6a6862;
        border-radius: 40px;
        padding: 55px 45px;
        min-height: 260px;
        transition: 0.4s;
      }

      .summary-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      }

      .summary-box h3 {
        font-size: 48px;
        font-weight: 700;
        color: #f4f1ea;
        margin-bottom: 40px;
      }

      .summary-box span {
        display: block;
        font-size: 22px;
        color: #f4f1ea;
        line-height: 1.3;
      }

      .gallery-grid img{
    width:100%;
    border-radius:12px;
    transition:0.3s;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    transition: 0.4s ease;
    display: block;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 320px;
    }
}

/* Telefon */
@media (max-width: 576px) {
    .gallery-grid img {
        height: 240px;
        border-radius: 18px;
    }
}

      /* Tablet */

      @media (max-width: 1200px) {
        .project-summary-title {
          font-size: 65px;
        }

        .project-summary-description {
          font-size: 26px;
        }

        .summary-box h3 {
          font-size: 50px;
        }

        .summary-box span {
          font-size: 24px;
        }
      }

      /* Mobile */

      @media (max-width: 992px) {
        .project-summary-section {
          padding: 100px 0;
        }

        .project-summary-title {
          font-size: 50px;
        }

        .project-summary-description {
          font-size: 20px;
          margin-bottom: 50px;
        }

        .project-summary-grid {
          grid-template-columns: 1fr;
        }

        .summary-box {
          min-height: auto;
          padding: 40px;
        }

        .summary-box h3 {
          font-size: 42px;
          margin-bottom: 20px;
        }

        .summary-box span {
          font-size: 22px;
        }
      }

      /* MOBILE */
      @media (max-width: 992px) {
        .project-hero h1 {
          font-size: 50px;
        }

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

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

        .section-header h2 {
          font-size: 35px;
        }
      }