.about-hero{
 width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8% 80px; /* extra top so it's under header */
  gap: 60px;
}

.ahero-content h1{
  font-size: 50px;
  font-weight: 700;
  padding-top: 20px;
  line-height: 1;
  margin-bottom: 30px;
  color: #d9ac47;
}

.about-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  min-height:85vh;
}

/* LEFT VIDEO */
.ahero-video{
  position:relative;
  width:100%;
  height:680px;
  overflow:hidden;
}

.ahero-video video{
  width:100%;
  height:100%;
  object-fit:contain;   /* important */
  display:block;
  filter:
    contrast(1.35)
    brightness(1.15)
    saturate(1.05)
    drop-shadow(0 0 30px rgba(212,175,55,.08));
}


/* RIGHT CONTENT */
.ahero-content{
  max-width:720px;
}

.mini-label{
  color:#d4af37;
  font-size:13px;
  letter-spacing:4px;
  display:block;
  margin-bottom:18px;
}

.ahero-content h2{
  color:#fff;
  font-size:52px;
  line-height:1.1;
  font-weight:700;
  letter-spacing:-2px;
  margin-bottom:28px;
}

.ahero-content p{
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.7;
  margin-bottom:22px;
  max-width:650px;
}

/* RESPONSIVE */
@media(max-width:1200px){

.ahero-content h1{
  font-size:50px;
}

.ahero-video{
  height:620px;
}

}

@media(max-width:992px){

.about-wrap{
  grid-template-columns:1fr;
  gap:45px;
}

.ahero-video{
  height:520px;
}

}

@media(max-width:768px){

.about-hero{
  padding:70px 5%;
}

.ahero-content h2{
  font-size:46px;
}

.ahero-content p{
  font-size:16px;
  line-height:1.9;
}

.ahero-video{
  height:420px;
}

}




.origami-section{
  background:#000;
  padding:50px 6%;
  font-family:Inter,sans-serif;
  overflow:hidden;
}

.origami-wrap{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:55px;
  align-items:center;
}

/* LEFT SIDE */
.origami-content{
  position:relative;
}

.mini-tag{
  color:#d9ac47;
  font-size:13px;
  letter-spacing:4px;
  display:block;
  margin-bottom:18px;
}

.origami-content h2{
  color:#d9ac47;
  font-size:36px;
  line-height:1;
  font-weight:700;
  margin-bottom:22px;
}

.origami-content h2 span{
  color:#d9ac47;
}

.lead-text{
  color:rgba(255,255,255,.76);
  font-size:18px;
  line-height:1.9;
  margin-bottom:34px;
  max-width:680px;
}

/* POINTS */
.points-group{
  display:grid;
  gap:16px;
  margin-bottom:30px;
}

.point-item{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  border-radius:18px;
  background:linear-gradient(145deg,#111,#080808);
  border:1px solid rgba(255,255,255,.05);
  transition:.35s ease;
}

.point-item:hover{
  transform:translateX(8px);
  border-color:rgba(212,175,55,.18);
}

.point-item span{
  min-width:42px;
  height:42px;
  border-radius:50%;
  
  color:#d9ac47;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
}

.point-item p{
  color:#fff;
  opacity:.88;
  font-size:20px;
  font-family: 600;
  margin:0;
}

/* RIGHT SIDE VIDEO */
/* RIGHT SIDE VIDEO FIXED */
.video-box{
  position:relative;
  height:560px;
  border-radius:34px;
  overflow:hidden;
  background:#000;
  box-shadow:
  0 30px 80px rgba(0,0,0,.45);
}

/* VIDEO SHARP + FULL FIT */
.video-box video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;   /* no crop */
  object-position:center;
  filter:
    contrast(1.18)
    brightness(1.08)
    saturate(1.02);
  transform:none;       /* remove zoom blur */
}

/* OVERLAY LIGHTER */
.video-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top,
  rgba(0,0,0,.38),
  rgba(0,0,0,.02));
}



/*==== quote box======*/

.quote-card-wrap{
  position:relative;
  width:100%;
  max-width:1000px;
  margin:80px auto;
}

/* BACK LAYER (offset shadow card) */
.quote-card-back{
  position:absolute;
  top:18px;
  left:18px;
  width:100%;
  height:100%;
  background:#111;
  border:2px solid #222;
  z-index:1;
}

/* FRONT CARD */
.quote-card-front{
  position:relative;
  background:#0a0a0a;
  border:2px solid #d9ac47;
  padding:50px 60px;
  z-index:2;

  display:flex;
  align-items:center;
  gap:30px;
}

/* QUOTE ICON BLOCK */
.quote-icon{
  position:absolute;
  top:-20px;
  left:-20px;

  background:#d9ac47;
  color:#000;

  width:60px;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;
  font-weight:bold;
}

/* CONTENT */
.quote-content h3{
  color:#d9ac47;
  font-size:48px;
  margin-bottom:12px;
}

.quote-content p{
  color:#fff;
  opacity:.85;
  font-size:32px;
  line-height:1.7;
}

/* subtle hover */
.quote-card-wrap:hover .quote-card-front{
  transform:translate(-6px,-6px);
  transition:.3s ease;
}

.quote-card-wrap:hover .quote-card-back{
  transform:translate(6px,6px);
  transition:.3s ease;
}

/* RESPONSIVE */
@media(max-width:1100px){

.origami-wrap{
  grid-template-columns:1fr;
}

}

@media(max-width:768px){

.origami-section{
  padding:80px 5%;
}

.origami-content h2{
  font-size:42px;
}

.lead-text{
  font-size:17px;
}

.point-item{
  padding:16px 18px;
}

.point-item p{
  font-size:15px;
}

.closing-box p{
  font-size:16px;
}

.video-box{
  height:420px;
  border-radius:24px;
}

.video-badge{
  left:18px;
  bottom:18px;
  font-size:11px;
  padding:10px 14px;
}

}




/* =========================
   CTA – PREMIUM BUTTON
========================= */
.philo-action-wrap{
  margin-top:70px;
  display:flex;
  justify-content:center;
}

.philo_action{
  position:relative;
  padding:16px 46px;
  border-radius:999px;
  border:1px solid rgba(215,172,71,.6);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:14px;
  font-weight:700;
  color:#d9ac47;
  text-decoration:none;
  overflow:hidden;
  transition:all .6s cubic-bezier(.16,1,.3,1);
}

.philo_action::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(215,172,71,.4),transparent);
  transform:translateX(-120%);
  transition:transform .8s cubic-bezier(.16,1,.3,1);
}

.philo_action:hover{
  background:#d7ac47;
  color:#111;
  box-shadow:0 25px 60px rgba(215,172,71,.4);
}

.philo_action:hover::before{
  transform:translateX(120%);
}

.philo_action:focus-visible{
  outline:2px solid #d7ac47;
  outline-offset:6px;
}

/* MOBILE */
@media(max-width:992px){
  .df-why-inner{
    text-align:left;
  }
}

/* Prevent blur & shaking on mobile */
*{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  backface-visibility:hidden;
}

@media(max-width:768px){

  /* Titles */
  .df-title{
    font-size:36px;
    line-height:1.2;
    margin-bottom:50px;
  }

  .about-hero h2{
    font-size:32px;
  }

  /* Layout stack */
  .df-row{
    grid-template-columns:1fr;
    gap:50px;
  }

  /* Video */
  .df-video video{
    height:auto;
    max-height:280px;
    object-fit:contain;
  }

  /* Content text */
  .df-content h2{
    font-size:26px;
  }

  .df-content p{
    font-size:15px;
    line-height:1.7;
  }

  /* Divider spacing */
  .df-divider{
    margin:60px 0 70px;
  }

  /* CTA */
  .philo_action{
    padding:14px 36px;
    font-size:12px;
    letter-spacing:.18em;
  }

  /* Timeline */
  .timeline::before{
    left:6px;
  }

  .timeline-item{
    width:100%;
    left:0;
    padding-left:25px;
    text-align:left;
  }

  .dot{
    left:-2px;
  }
}

/*===================================*/
/*==========About Contact CTA========*/

/* ================================
   QUESTION CTA – CONTAINER IMAGE
================================ */

.elegans-question-section{
  width:100%;
  padding:80px 50px;
  background:#000;
}

.elegans-question-wrapper{
  max-width:1200px;
  margin:0 auto;
}

/* IMAGE CONTAINER */
.elegans-question-image{
  position:relative;
  width:100%;
  height:460px;
  border-radius:12px;
  overflow:hidden;
}

/* IMAGE */
.elegans-question-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* GLASS CARD */
.elegans-question-card{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
  max-width:620px;
  padding:55px 60px;
  text-align:center;

  background:rgba(255,255,255,.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* TEXT */
.elegans-question-card h2{
  font-size:36px;
  font-weight:700;
  line-height:1.3;
  color:#111;
  margin-bottom:28px;
}

.elegans-question-card p{
  font-size:18px;
 
  margin-bottom:34px;
  color:rgba(0,0,0,.75);
}

/* BUTTON */
.elegans-question-btn{
  display:inline-block;
  padding:14px 36px;
  background:#d9ac47;
  color:#fff;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  text-decoration:none;
  border-radius:4px;
  transition:all .3s ease;
  
}

.elegans-question-btn:hover{
  background:#d9ac47;
  transform:translateY(-2px);

}

/* ================================
   MOBILE
================================ */

@media(max-width:768px){

  .elegans-question-image{
    height:360px;
  }

  .elegans-question-card{
    padding:38px 26px;
  }

  .elegans-question-card h2{
    font-size:24px;
  }
}














/* ================= SECTION ================= */
.philosophy-values{
  padding:50px 40px;
  text-align:center;
}

.philosophy-subheading{
  font-size:36px;
  color:#d7ac47;
  margin-bottom:20px;
}

.philosophy-values-intro{
  max-width:1200px;
  margin:0 auto 30px;
  font-size:18px;
  color:#ddd;
  line-height:1.5;
  text-align: left;
}

/* ================= GRID ================= */
.philosophy-values-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:50px;
  max-width:1200px;
  margin:0 auto;
}

/* ================= CARD ================= */
.philosophy-value{
  position:relative;
  height:320px;
  border-radius:28px;
  overflow:hidden;
  cursor:pointer;
  background:#000;
  transition:transform .6s ease, box-shadow .6s ease;
}

/* Glow border */

/* PREMIUM BORDER FOR IMAGE BOX */
.value-image{
  width:100%;
  height:280px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  background:#111;

  border:1px solid rgba(212,175,55,.18);

  box-shadow:
    0 20px 45px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.03);
}

/* OPTIONAL GOLD INNER GLOW */
.value-image::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  pointer-events:none;
  box-shadow:inset 0 0 40px rgba(212,175,55,.06);
}

/* IMAGE */
.value-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .6s ease;
}

.philosophy-value:hover .value-image{
  border-color:rgba(212,175,55,.32);
}

.philosophy-value:hover .value-image img{
  transform:scale(1.08);
}

/* MOBILE */
@media(max-width:768px){

.value-image{
  height:220px;
  border-radius:18px;
}

.value-image::after{
  border-radius:18px;
}

}

.philosophy-value:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 20px 60px rgba(215,172,71,.35);
}

.philosophy-value:hover::before{
  opacity:.7;
}

/* Dark overlay */
.philosophy-value::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2));
  opacity:0;
  transition:opacity .6s ease;
  z-index:1;
}

/* Text */
.value-content{
  position:absolute;
  bottom:40px;
  left:40px;
  right:40px;
  z-index:2;
  opacity:0;
  transform:translateY(40px);
  transition:all .7s cubic-bezier(.16,1,.3,1);
  text-align:left;
}

.value-content h4{
  font-size:24px;
  margin-bottom:14px;
  color:#d7ac47;
}

.value-content p{
  font-size:16px;
  line-height:1.6;
  color:#eee;
}

/* Hover Effects */
.philosophy-value:hover video{
  transform:scale(1.08);
  filter:brightness(.6);
}

.philosophy-value:hover::after{
  opacity:1;
}

.philosophy-value:hover .value-content{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media(max-width:900px){
  .philosophy-values-grid{
    grid-template-columns:1fr;
  }
}







