/* ============================= */
/* WORK PAGE STYLES */
/* ============================= */


/* ============================= */
/* HERO */
/* ============================= */

.work-hero{
  position: relative;
  padding: 130px 0 110px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 20, 32, 0.62), rgba(10, 20, 32, 0.72)),
    url("../assets/images/mountain.jpg") center/cover no-repeat;
}

.work-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,179,124,0.14), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08), transparent 24%);
  pointer-events: none;
}

.work-hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.work-hero .section-tag,
.work-hero h1,
.work-hero .hero-text{
  color: #fff;
}

.work-hero h1{
  text-shadow: 0 8px 24px rgba(0,0,0,0.35);
  max-width: 12ch;
}

.work-hero .hero-text{
  max-width: 60ch;
  color: rgba(255,255,255,0.88);
}

.work-hero-content .hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}


/* ============================= */
/* INTRO */
/* ============================= */

.work-intro-section{
  text-align: center;
}

.work-intro-section .section-text{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================= */
/* PROJECTS SECTION */
/* ============================= */

.projects-section{
  padding: 90px 0;
  background:
    linear-gradient(
      135deg,
      rgba(15,31,47,0.03) 0%,
      rgba(20,41,63,0.08) 100%
    );
}

.featured-work-card{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.featured-work-card .card-image{
  width: calc(100% + 60px);
  height: 210px;
  overflow: hidden;
  margin: -30px -30px 20px;
  background:
    linear-gradient(135deg, rgba(201,179,124,0.12), rgba(255,255,255,0.04));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.featured-work-card .card-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px;
  transition: transform 0.45s ease;
}

.featured-work-card:hover .card-image img{
  transform: scale(1.045);
}

.project-meta{
  margin-bottom: 12px;
}

.project-type{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201,179,124,0.1);
  border: 1px solid rgba(201,179,124,0.18);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}

.featured-work-card h3{
  margin-bottom: 12px;
}

.featured-work-card .description{
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.project-highlights{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.project-highlights li{
  position: relative;
  padding-left: 20px;
  color: var(--color-text-muted);
}

.project-highlights li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.featured-work-card .text-link{
  margin-top: auto;
}


/* ============================= */
/* IMPACT BAND */
/* ============================= */

.impact-band-section{
  padding-top: 0;
}

.impact-band{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.impact-band-item{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.impact-band-label{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.impact-band-item strong{
  color: var(--color-text);
  font-size: 16px;
}


/* ============================= */
/* REQUEST SECTION */
/* ============================= */

.request-section{
  padding: 90px 0;
  background:
    linear-gradient(
      135deg,
      rgba(20,41,63,0.03) 0%,
      rgba(15,31,47,0.07) 100%
    );
}

.request-layout{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.request-copy p + p{
  margin-top: 14px;
}

.request-points{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.request-point{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.request-point-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(201,179,124,0.12);
  border: 1px solid rgba(201,179,124,0.22);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.google-form-container{
  position: relative;
  width: 100%;
  min-height: 820px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.google-form-container:hover{
  border-color: rgba(201,179,124,0.28);
  box-shadow: 0 14px 36px rgba(201,179,124,0.10);
}

.google-form-container iframe{
  width: 100%;
  height: 100%;
  min-height: 820px;
  border: none;
  display: block;
  background: #fff;
}


/* ============================= */
/* CTA */
/* ============================= */

.cta-section{
  padding-top: 40px;
}

.cta-box{
  background:
    linear-gradient(180deg, rgba(20,41,63,0.96), rgba(15,31,47,0.96)),
    radial-gradient(circle at top right, rgba(201,179,124,0.12), transparent 35%);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1000px){
  .work-hero-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .request-layout{
    grid-template-columns: 1fr;
  }

  .impact-band{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px){
  .projects-section .card-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .work-hero{
    padding: 100px 0 80px;
  }

  .work-hero-content .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .work-hero-content .hero-actions .btn{
    width: 100%;
    text-align: center;
  }

  .featured-work-card .card-image{
    width: calc(100% + 44px);
    margin: -22px -22px 18px;
    height: 190px;
  }

  .google-form-container{
    min-height: 700px;
  }

  .google-form-container iframe{
    min-height: 700px;
  }
}