 /* --- HERO (Realizations) --- */
    .page-realizations .hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-realizations .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,26,26,1), rgba(249, 248, 246, 1)),
    url("/assets/realizations-hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  z-index: -1;
}

.page-realizations .hero-content {
  padding: 0 20px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards 0.15s;
}

.page-realizations .hero h1 {
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.1;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.page-realizations .hero h1 span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 6px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.page-realizations .hero p {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
  opacity: 0.95;
  font-weight: 300;
}

    /* --- SECTION BASE --- */
    .page-realizations .section-padding{ padding: 6rem var(--container-padding); }
    .page-realizations .section-header{ text-align:center; margin-bottom: 3.5rem; }
    .page-realizations .section-header h2{ font-size: 3rem; letter-spacing: 1px; margin-bottom: 1rem; font-weight: 400; }
    .page-realizations .section-header .divider{ width: 60px; height: 1px; background: var(--accent-gold); margin: 0 auto; }

    /* --- REALIZATIONS GRID --- */
    .page-realizations .real-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .page-realizations .real-card{
      cursor: pointer;
      background: transparent;
    }
    .page-realizations .real-img{
      position: relative;
      height: 320px;
      overflow: hidden;
      background: #e9e9e9;
    }
    .page-realizations .real-img img{
      width:100%; height:100%;
      object-fit: cover;
      transition: transform 0.8s ease;
      filter: brightness(0.92);
    }
    .page-realizations .real-card:hover .real-img img{ transform: scale(1.06); }

    .page-realizations .real-overlay{
      position:absolute; inset:0;
      background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.05));
      display:flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
      color:#fff;
      pointer-events:none;
    }
    .page-realizations .real-location{
      font-family: var(--font-body);
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 6px;
      font-weight: 600;
      opacity: 0.95;
    }
    .page-realizations .real-title{
      font-family: var(--font-head);
      font-size: 1.6rem;
      line-height: 1.2;
      font-style: italic;
    }
    .page-realizations .real-meta{
      margin-top: 6px;
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: 0.85;
    }

    /* --- CASE STUDY MODAL (same idea as your file) --- */
    .page-realizations .case-modal{
      position: fixed; top:0; left:0; width:100%; height:100%;
      z-index: 5500;
      background:#fff;
      display:flex;
      opacity:0;
      pointer-events:none;
      transition: opacity 0.5s ease;
    }
    .page-realizations .case-modal.active{
      opacity:1;
      pointer-events: all;
    }
    .page-realizations .case-carousel{
      flex: 2;
      background: #000;
      position: relative;
      overflow: hidden;
    }
    .page-realizations .case-slide{
      position:absolute; top:0; left:0;
      width:100%; height:100%;
      opacity:0;
      transition: opacity 0.8s ease;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .page-realizations .case-slide.active{ opacity:1; z-index:1; }
    .page-realizations .case-slide img{
      width:100%; height:100%;
      object-fit: cover;
      opacity: 0.96;
    }
    .page-realizations .case-slide iframe{
      width:100%; height:100%;
      border: none;
    }

    .page-realizations .case-nav-btn{
      position:absolute; top:50%;
      transform: translateY(-50%);
      width:50px; height:50px;
      background: rgba(255,255,255,0.1);
      color:#fff;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size: 1.5rem;
      transition: 0.3s;
      user-select:none;
    }
    .page-realizations .case-nav-btn:hover{ background:#fff; color:#000; }
    .page-realizations .case-prev{ left: 20px; }
    .page-realizations .case-next{ right: 20px; }

    .page-realizations .case-info{
      flex: 1;
      padding: 4rem;
      display:flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      background:#fff;
      border-left: 1px solid #eee;
    }
    .page-realizations .case-close{
      position:absolute; top: 28px; right: 28px;
      font-size: 2rem;
      background:none;
      border:none;
      cursor:pointer;
      color: var(--primary-dark);
    }
    .page-realizations .case-heading{
      font-size: 2.4rem;
      margin-bottom: 1.2rem;
      font-style: italic;
      line-height: 1.1;
    }
    .page-realizations .case-text{
      font-size: 0.95rem;
      color:#555;
      line-height: 1.85;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    .page-realizations .case-meta{
      padding-top: 2rem;
      border-top: 1px solid #eee;
    }
    .page-realizations .case-meta-item{ margin-bottom: 1rem; }
    .page-realizations .meta-label{
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent-gold);
      display:block;
      margin-bottom: 0.3rem;
      font-weight: 600;
    }
    .page-realizations .meta-val{
      font-size: 1rem;
      color: var(--primary-dark);
      font-weight: 400;
    }

    .page-realizations .gallery { position: relative; }
.page-realizations .slide { display: none; }
.page-realizations .slide.is-active { display: block; }

    .page-realizations .slide img {
      width: 100%;
      height: min(70vh, 560px);
      object-fit: cover;
  border-radius: 16px;
}

.page-realizations .video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.page-realizations .video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-realizations .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: white;
  cursor: pointer;
}
.page-realizations .nav.prev { left: 12px; }
.page-realizations .nav.next { right: 12px; }

 /* --- UTILITIES / ANIMATIONS --- */
    @keyframes fadeUp{
      to{ opacity:1; transform: translateY(0); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px){
      .page-realizations .real-grid{ grid-template-columns: repeat(2, 1fr); }
      .page-realizations .hero h1{ font-size: 3.2rem; }
      .page-realizations .case-modal{ flex-direction: column; overflow-y: auto; }
      .page-realizations .case-carousel{ flex: 1; min-height: 420px; }
      .page-realizations .case-info{ flex: 1; padding: 2rem; border-left: none; border-top: 1px solid #eee; }
    }
