  #page-hero {
        width: 100%;
        display: grid;
        grid-template-columns: 42% 58%;
        min-height: 760px;
        overflow: hidden;
        background: #ffffff;
      }

      #page-hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 3rem 5rem 2rem;
        position: relative;
        z-index: 10;
        background: #ffffff;
      }

      #page-hero-eyebrow {
        display: block;
        font-size: 1.25rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #c89b3c;
        margin-bottom: 1rem;
      }

      #page-hero-divider {
        width: 42px;
        height: 2px;
        background: #c89b3c;
        margin-bottom: 2.5rem;
      }

      #page-hero-title {
        font-size: clamp(4rem, 5vw, 5.5rem);
        font-weight: 500;
        line-height: 0.9;
        letter-spacing: -0.04em;
        color: #111111;
        margin: 0 0 3rem;
        max-width: 620px;
        overflow-wrap: anywhere;
      }

      #page-hero-description-primary,
      #page-hero-description-secondary {
        max-width: 520px;
        font-size: 1.4rem;
        line-height: 1.95;
        color: #3f3f3f;
      }

      #page-hero-description-primary {
        margin-bottom: 2rem;
      }

      #page-hero-media {
        position: relative;
        overflow: hidden;
      }

      #page-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      #page-hero-fade {
        position: absolute;
        top: 0;
        left: 0;
        width: 35%;
        height: 100%;
        pointer-events: none;

        background: linear-gradient(
          to right,
          rgba(255, 255, 255, 1) 0%,
          rgba(255, 255, 255, 0.98) 10%,
          rgba(255, 255, 255, 0.92) 25%,
          rgba(255, 255, 255, 0.75) 45%,
          rgba(255, 255, 255, 0.4) 65%,
          rgba(255, 255, 255, 0.1) 85%,
          rgba(255, 255, 255, 0) 100%
        );

        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(1px);
      }

      @media screen and (max-width: 1200px) {
        #page-hero {
          grid-template-columns: 45% 55%;
        }

        #page-hero-content {
          padding: 4rem 2rem;
        }

        #page-hero-title {
          font-size: 4.25rem;
        }

        #page-hero-description-primary,
        #page-hero-description-secondary {
          font-size: 1.15rem;
        }
      }

      @media screen and (max-width: 991px) {
        #page-hero {
          display: flex;
          flex-direction: column;
          min-height: auto;
        }

        #page-hero-content {
          width: 100%;
          order: 1;
          padding: 3rem 1.5rem 2rem;
        }

        #page-hero-media {
          width: 100%;
          order: 2;
        }

        #page-hero-title {
          max-width: 100%;
          font-size: clamp(2.8rem, 10vw, 4rem);
          line-height: 0.95;
          margin-bottom: 2rem;
        }

        #page-hero-description-primary,
        #page-hero-description-secondary {
          max-width: 100%;
          font-size: 1.05rem;
          line-height: 1.8;
        }

        #page-hero-image {
          width: 100%;
          height: auto;
          aspect-ratio: 4 / 3;
          object-fit: cover;
        }

        #page-hero-fade {
          display: none;
        }
      }
/*============================ Our Approach Second Section ==============*/

    #approach-overview {
  width: 100%;
  height: 40vh;

  display: grid;
  grid-template-columns: 38% 62%;

  gap: 3rem;

  padding: 0 2rem;

  align-items: center;

  overflow: hidden;
}

#approach-overview-left {
  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 100%;

  padding-left: 5%;
}

#approach-overview-header {
  display: flex;
  align-items: center;

  gap: 0.75rem;

  margin-bottom: 0.5rem;
}

#approach-overview-icon {
  width: 52px;
  height: 52px;

  flex-shrink: 0;
}

#approach-overview-icon img {
  width: 100%;
  display: block;
}

#approach-overview-label {
  font-size: 1.25rem;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #c89b3c;
}

#approach-overview-divider {
  width: 42px;
  height: 2px;

  background: #c89b3c;

  margin: 0.5rem 0;
}

#approach-overview-title {
  font-size: clamp(2.5rem,2vw,4.5rem);
  line-height: 1.15;

  color: #111111;

  margin: 0;

  max-width: 90%;
}

#approach-overview-right {
  display: grid;

  grid-template-columns: repeat(2, minmax(280px, 1fr));

  column-gap: 4rem;
  row-gap: 1rem;

  align-items: center;

  width: 100%;

  padding-right: 5%;
  padding-top: 0;
}

.approach-cell {
  display: flex;
  align-items: flex-start;

  gap: 1rem;

  width: 100%;

  font-size: 1.2rem;
  line-height: 1.25;

  color: #222222;
}

.approach-cell::before {
  content: "";

  width: 18px;
  height: 2px;

  margin-top: 0.7em;

  background: #c89b3c;

  flex-shrink: 0;
}

@media (max-width: 991px) {
  #approach-overview {
    height: auto;

    display: flex;
    flex-direction: column;

    gap: 2rem;

    padding: 4rem 1.5rem;

    overflow: visible;
  }

  #approach-overview-left {
    width: 100%;
    height: auto;

    padding-left: 0;
  }

  #approach-overview-right {
    display: flex;
    flex-direction: column;

    gap: 1rem;

    width: 100%;

    padding-right: 0;
    padding-top: 0;
  }

  #approach-overview-title {
    font-size: 1.8rem;
    line-height: 1.25;

    max-width: 100%;
  }

  .approach-cell {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .approach-cell::before {
    width: 16px;

    margin-top: 0.7em;
  }
}
/*===========================         THIRD SECTION   ===============================*/

    #approach-statement {
        position: relative;
        width: 100%;
        min-height: 320px;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        height: 320px;
        background-image: url("https://images.squarespace-cdn.com/content/670b4a4d9840f810d0879250/f37e6407-d2d5-4c66-9212-de0a52719580/ArchitecturalDrawing.png?content-type=image%2Fpng");
        background-position: right center;
        background-repeat: no-repeat;
        background-size: contain;
      }

      #approach-statement-inner {
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 4rem;
        position: relative;
        background-color: rgba(245, 245, 220, 0.45);
        height: 80%;
      }

      #approach-statement-left {
        flex: 0 0 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      #approach-statement-title {
        margin: 0;
        font-size: clamp(2.5rem, 2vw, 4.5rem);
        font-weight: 500;
        line-height: 1.15;
        color: #111111;
      }

      #approach-statement-title + #approach-statement-title {
        margin-top: 0.35rem;
      }

      #approach-statement-title span {
        color: #c89b3c;
      }

      #approach-statement-divider {
        width: 2px;
        height: 220px;
        background: #c89b3c;
        opacity: 1.7;
        flex-shrink: 0;
      }

      #approach-statement-right {
        flex: 0 0 30%;
      }

      #approach-statement-right p {
        margin: 0;
        font-size: 1.15rem;
        line-height: 2;
        color: #444444;
      }

      #approach-statement-blueprint {
        position: absolute;
        top: 0;
        right: 0;
        width: 42%;
        height: 100%;
        opacity: 0.35;
        pointer-events: none;
      }
      @media (max-width: 991px) {
        #approach-statement {
          min-height: auto;
          height: auto;
          padding: 4rem 1.5rem;
          align-items: stretch;
        }

        #approach-statement-inner {
          width: 100%;
          height: auto;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          gap: 2rem;
          background: transparent;
          background-color: rgba(245, 245, 220, 0.5);
          padding: 1rem;
        }

        #approach-statement-left {
          flex: none;
          width: 100%;
        }

        #approach-statement-title {
          font-size: clamp(2rem, 7vw, 3rem);
          line-height: 1.15;
        }

        #approach-statement-title + #approach-statement-title {
          margin-top: 0.25rem;
        }

        #approach-statement-divider {
          width: 56px;
          height: 2px;
          background: #c89b3c;
        }

        #approach-statement-right {
          flex: none;
          width: 100%;
          max-width: 420px;
        }

        #approach-statement-right p {
          font-size: 1rem;
          line-height: 1.8;
        }

        #approach-statement-blueprint {
          width: 55%;
          background-position: right center;
        }
      }

/*=====================     SECTION FOUR    ===============================================*/

 
      #approach-methods {
        width: 100%;
        max-width: none;

        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

        gap: 0;

        min-height: 70vh;

        border-top: 1px solid #efefef;
        border-bottom: 1px solid #efefef;
      }

      #approach-methods > .approach-method {
        width: auto !important;
        max-width: none !important;
      }

      .approach-method {
        padding: 3rem;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        border-right: 1px solid #efefef;
      }

      .approach-method:last-child {
        border-right: none;
      }

      .approach-method-number {
        font-family: "Cormorant Garamond", serif;
        font-size: 5rem;
        line-height: 1;
        color: #c89b3c;
      }

      .approach-method-line {
        width: 34px;
        height: 2px;

        background: #c89b3c;

        margin: 1rem 0 2rem;
      }

      .approach-method-title {
        margin: 0 0 2rem;

        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;

        color: #111;
      }

      .approach-method-description {
        margin: 0;

        font-size: 1.15rem;
        line-height: 2;

        color: #444;
      }

      @media (max-width: 991px) {
        #approach-methods {
          display: flex !important;
          flex-direction: column;

          min-height: 120vh;
        }

        .approach-method {
          border-right: none;
          border-bottom: 1px solid #efefef;

          min-height: 30vh;

          padding: 2.5rem 1.5rem;
        }

        .approach-method:last-child {
          border-bottom: none;
        }

        .approach-method-number {
          font-size: 4rem;
        }

        .approach-method-title {
          font-size: 1.9rem;
        }

        .approach-method-description {
          font-size: 1rem;
          line-height: 1.8;
        }
      }

/* =================OUR APPROACH LEAN DELIVERY CYCLE  ==================== */
html,
body {
  overflow-x: hidden;
}

#delivery-cycle {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  box-sizing: border-box;
}

#delivery-cycle-label {
  padding-left: 3%;
  margin: 0 0 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8924a;
}

#delivery-cycle-desktop {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#delivery-cycle-desktop .cycle-step {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#delivery-cycle-desktop .cycle-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#delivery-cycle-desktop .cycle-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#delivery-cycle-desktop .cycle-title {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

#delivery-cycle-desktop .cycle-arrow {
  width: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8924a;
  font-size: 2rem;
  line-height: 1;
}

#delivery-cycle-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  #delivery-cycle-desktop {
    display: none;
  }

  #delivery-cycle-label {
    padding-left: 5%;
    margin-bottom: 2.5rem;
  }

  #delivery-cycle-mobile {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .cycle-mobile-row {
    display: contents;
  }

  #delivery-cycle-mobile .cycle-step {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #delivery-cycle-mobile .cycle-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #delivery-cycle-mobile .cycle-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
  }

  #delivery-cycle-mobile .cycle-title {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  #delivery-cycle-mobile .cycle-arrow {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b8924a;
    font-size: 2.25rem;
    line-height: 1;
    margin: 0.15rem 0;
  }
}
/*======================Our Approach 6th Section==================*/
 #outcomes-section {
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3%;
  }

  #outcomes-header {
    width: 100%;
    margin-bottom: 4rem;
  }

  #outcomes-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c89b3c;
  }

  #outcomes-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .outcome-item {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 2rem;

    padding: 0 2rem;
  }

  .outcome-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    line-height: 1;
    color: #c89b3c;
  }

  .outcome-divider {
    width: 1px;
    height: 80px;
    background: #ececec;
    flex-shrink: 0;
  }

  .outcome-text {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.25;
    color: #111111;
  }

  @media (max-width: 991px) {
    #outcomes-section {
      min-height: 70vh;
      padding: 3rem 1.5rem;
    }

    #outcomes-header {
      margin-bottom: 2rem;
    }

    #outcomes-grid {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .outcome-item {
      width: 100%;

      display: flex;
      align-items: center;

      gap: 1.5rem;

      padding: 1.75rem 0;

      border-bottom: 1px solid #efefef;
    }

    .outcome-item:last-child {
      border-bottom: none;
    }

    .outcome-number {
      font-size: 4rem;
      flex-shrink: 0;
    }

    .outcome-divider {
      width: 1px;
      height: 60px;
      background: #ececec;
      flex-shrink: 0;
    }

    .outcome-text {
      font-size: 1.15rem;
      line-height: 1.3;
    }
  }

/* ========================= SEVENTH SECTION OUR APPROACH============================*/
#lean-cta {
    width: 100%;
    min-height: 40vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 5%;
    background: rgba(245, 245, 220, 0.45);
  }

  #lean-cta-heading {
    flex: 0 0 40%;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #lean-cta-title {
    margin: 0;
  font-size: clamp(2.5rem,2vw,4.5rem);
    font-weight: 500;
    line-height: 1.1;

    color: #111111;
  }

  #lean-cta-title span {
    color: #c89b3c;
  }

  #lean-cta-divider {
    width: 64px;
    height: 2px;

    margin-top: 2rem;

    background: #c89b3c;
  }

  #lean-cta-copy {
    flex: 0 0 30%;

    padding-left: 3rem;

    border-left: 1px solid #e4e4e4;
  }

  #lean-cta-copy p {
    margin: 0;

    font-size: 1.25rem;
    line-height: 2;

    color: #333333;
  }

  #lean-cta-action {
    flex: 0 0 30%;

    display: flex;
    flex-direction: column;
    gap: 2rem;

    padding-left: 3rem;

    border-left: 1px solid #e4e4e4;
  }

  #lean-cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1.5rem 2rem;

    background: #c89b3c;

    color: #111111;

    text-decoration: none;

    font-weight: 700;
    letter-spacing: 0.05em;

    transition: all 0.3s ease;
  }

  #lean-cta-button:hover {
    opacity: 0.9;
  }

  #lean-cta-button span:last-child {
    font-size: 2rem;
    line-height: 1;
  }

  #lean-cta-note {
    margin: 0;

    font-size: 1.1rem;
    color: #333333;
  }

  @media (max-width: 991px) {
    #lean-cta {
      min-height: 50vh;

      flex-direction: column;

      align-items: flex-start;
      justify-content: center;

      gap: 2rem;

      padding: 3rem 1.5rem;
    }

    #lean-cta-heading,
    #lean-cta-copy,
    #lean-cta-action {
      width: 100%;
      flex: none;
    }

    #lean-cta-copy {
      padding-left: 0;
      border-left: none;
    }

    #lean-cta-action {
      padding-left: 0;
      border-left: none;
    }

    #lean-cta-title {
      font-size: clamp(2.5rem, 8vw, 4rem);
    }

    #lean-cta-divider {
      margin-top: 1.5rem;
    }

    #lean-cta-copy p {
      font-size: 1.05rem;
      line-height: 1.9;
    }

    #lean-cta-button {
      width: 100%;
    }

    #lean-cta-note {
      font-size: 1rem;
    }
  }
