   ISTIKA — PROJECTS PAGE


.projects-body {
  background: var(--cream);
}

.projects-page {
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  color: var(--green);
}

/* =========================================================
   01 — PROJECT HERO
========================================================= */

.projects-hero {
  position: relative;

  min-height: 92vh;

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

  padding: 150px 5vw 80px;

  overflow: hidden;
  isolation: isolate;
}

/* HERO CONTENT */

.projects-hero-content {
  position: relative;
  z-index: 5;

  width: min(1150px, 100%);
}

.projects-hero-label {
  display: block;

  margin-bottom: 34px;

  color: var(--orange);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

/* HERO HEADING */

.projects-hero-content h1 {
  max-width: 1000px;

  margin: 0;

  font-size: clamp(70px, 8.5vw, 145px);
  font-weight: 500;

  line-height: 0.84;

  letter-spacing: -0.065em;
}

.projects-hero-content h1 em {
  color: var(--orange);

  font-family: Georgia, serif;

  font-weight: 400;
  font-style: italic;
}

/* HERO DESCRIPTION */

.projects-hero-content>p {
  max-width: 470px;

  margin: 48px 0 0 auto;

  color: rgba(10, 68, 57, 0.65);

  font-size: 14px;
  line-height: 1.8;
}

/* SCROLL HINT */

.projects-scroll-hint {
  position: absolute;

  z-index: 5;

  left: 5vw;
  bottom: 40px;

  display: flex;
  align-items: center;

  gap: 18px;
}

.projects-scroll-hint>span:first-child {
  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.18em;
}

.projects-scroll-line {
  position: relative;

  width: 70px;
  height: 1px;

  overflow: hidden;

  background: rgba(10, 68, 57, 0.2);
}

.projects-scroll-line::after {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: var(--orange);

  animation: projectScrollLine 2.3s ease-in-out infinite;
}

@keyframes projectScrollLine {
  0% {
    transform: translateX(0);
  }

  50%,
  100% {
    transform: translateX(200%);
  }
}

/* =========================================================
   02 — SELECTED WORK
========================================================= */

.featured-projects {
  position: relative;
  z-index: 2;

  padding: 115px 5vw 170px;

  background: var(--cream);
}

/* SECTION HEADING */

.projects-section-head {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;

  margin-bottom: 100px;

  padding-bottom: 25px;

  border-bottom: 1px solid rgba(10, 68, 57, 0.17);
}

.projects-section-head>div {
  display: flex;
  align-items: center;

  gap: 20px;
}

.projects-number {
  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.15em;
}

.projects-label {
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.18em;
}

.projects-section-head>p {
  max-width: 310px;

  margin: 0;

  color: rgba(10, 68, 57, 0.58);

  font-size: 11px;
  line-height: 1.7;
}

/* =========================================================
   PROJECT LIST
========================================================= */

.project-list {
  display: flex;
  flex-direction: column;

  gap: 170px;
}

/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1.65fr) minmax(280px, 0.65fr);

  gap: clamp(45px, 6vw, 95px);

  align-items: center;

  width: 100%;
}

/* REVERSE EVERY SECOND PROJECT */

.project-card-reverse {
  grid-template-columns:
    minmax(300px, 0.55fr) minmax(0, 1.45fr);
}

.project-card-reverse .project-image {
  grid-column: 2;
  grid-row: 1;
}

.project-card-reverse .project-info {
  grid-column: 1;
  grid-row: 1;
}

/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-image {
  position: relative;

  width: 100%;
  height: clamp(480px, 52vw, 720px);

  overflow: hidden;

  background: #ded5c7;

  border-radius: 4px;

  transform: translateZ(0);
}

/* REAL PROJECT IMAGE */

.project-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.02);

  transition:
    transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.7s ease;
}

/* IMAGE HOVER */

.project-card:hover .project-image img {
  transform: scale(1.065);
}

/* SUBTLE OVERLAY */

.project-image::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(180deg,
      transparent 55%,
      rgba(0, 0, 0, 0.22) 100%);
}

/* LARGE PROJECT NUMBER */

.project-index {
  position: absolute;

  z-index: 3;

  right: 25px;
  bottom: 15px;

  color: rgba(255, 255, 255, 0.85);

  font-size: clamp(75px, 9vw, 145px);
  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.07em;

  pointer-events: none;

  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-index {
  transform: translateY(-8px);
}

/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
  width: 100%;
  max-width: 430px;
}

.project-type {
  display: block;

  margin-bottom: 18px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.19em;
}

.project-info h2 {
  margin: 0 0 clamp(45px, 6vw, 80px);

  font-size: clamp(40px, 4vw, 67px);
  font-weight: 500;

  line-height: 0.95;

  letter-spacing: -0.05em;
}

/* PROJECT META */

.project-meta {
  display: grid;

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

  gap: 25px;

  padding-top: 22px;

  border-top: 1px solid rgba(10, 68, 57, 0.17);
}

.project-meta span {
  display: block;

  margin-bottom: 9px;

  color: rgba(10, 68, 57, 0.45);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.17em;
}

.project-meta p {
  margin: 0;

  color: rgba(10, 68, 57, 0.8);

  font-size: 11px;
  line-height: 1.55;
}

/* =========================================================
   03 — PROJECT STATEMENT
========================================================= */

.projects-statement {
  position: relative;

  padding: 150px 5vw 160px;

  overflow: hidden;

  background: var(--green);

  color: var(--cream);
}

.projects-statement::before {
  content: "EARTH";

  position: absolute;

  right: -3vw;
  top: 50%;

  transform: translateY(-50%);

  color: rgba(255, 255, 255, 0.025);

  font-size: clamp(180px, 29vw, 500px);
  font-weight: 600;

  line-height: 0.8;

  letter-spacing: -0.08em;

  pointer-events: none;
}

.projects-statement-label {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 45px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

.projects-statement h2 {
  position: relative;
  z-index: 2;

  max-width: 1000px;

  margin: 0;

  font-size: clamp(60px, 7.5vw, 125px);
  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.06em;
}

.projects-statement h2 em {
  color: var(--orange);

  font-family: Georgia, serif;

  font-weight: 400;
  font-style: italic;
}

.projects-statement>p {
  position: relative;
  z-index: 2;

  max-width: 450px;

  margin: 65px 0 0 auto;

  color: rgba(244, 240, 230, 0.62);

  font-size: 12px;
  line-height: 1.8;
}

/* =========================================================
   04 — PROJECT CTA
========================================================= */

.projects-cta {
  padding: 150px 5vw 160px;

  background: var(--cream);
}

.projects-cta-inner {
  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}

.projects-cta-label {
  display: block;

  margin-bottom: 30px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

.projects-cta h2 {
  margin: 0;

  font-size: clamp(58px, 7vw, 110px);
  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.055em;
}

.projects-cta h2 em {
  color: var(--orange);

  font-family: Georgia, serif;

  font-weight: 400;
  font-style: italic;
}

.projects-cta p {
  max-width: 450px;

  margin: 35px auto 40px;

  color: rgba(10, 68, 57, 0.58);

  font-size: 12px;
  line-height: 1.8;
}

.projects-cta-button {
  display: inline-flex;

  align-items: center;

  gap: 30px;

  padding: 16px 22px;

  border: 1px solid var(--green);

  color: var(--green);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.08em;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease;
}

.projects-cta-button:hover {
  gap: 42px;

  background: var(--green);

  color: var(--cream);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {
  .projects-hero {
    min-height: 82vh;

    padding: 130px 25px 75px;
  }

  .projects-hero-content h1 {
    font-size: clamp(65px, 12vw, 105px);
  }

  .projects-hero-content>p {
    margin: 45px 0 0;

    max-width: 500px;
  }

  .projects-scroll-hint {
    left: 25px;
  }

  .featured-projects {
    padding: 95px 25px 120px;
  }

  .project-list {
    gap: 115px;
  }

  .project-card,
  .project-card-reverse {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .project-card-reverse .project-image,
  .project-card-reverse .project-info {
    grid-column: 1;
    grid-row: auto;
  }

  .project-card-reverse .project-image {
    order: 1;
  }

  .project-card-reverse .project-info {
    order: 2;
  }

  .project-image {
    height: 65vw;

    min-height: 420px;
  }

  .project-info {
    max-width: 650px;
  }

  .project-info h2 {
    margin-bottom: 35px;
  }

  .projects-statement,
  .projects-cta {
    padding: 110px 25px 120px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .projects-hero {
    min-height: 78vh;

    padding: 110px 18px 70px;
  }

  .projects-hero-label {
    margin-bottom: 25px;
  }

  .projects-hero-content h1 {
    font-size: clamp(53px, 15vw, 72px);
  }

  .projects-hero-content>p {
    margin-top: 35px;

    font-size: 12px;
  }

  .projects-scroll-hint {
    left: 18px;
    bottom: 25px;
  }

  .featured-projects {
    padding: 75px 18px 95px;
  }

  .projects-section-head {
    flex-direction: column;
    align-items: flex-start;

    gap: 25px;

    margin-bottom: 60px;
  }

  .project-list {
    gap: 90px;
  }

  .project-card,
  .project-card-reverse {
    gap: 27px;
  }

  .project-image {
    height: 115vw;

    min-height: 390px;
    max-height: 540px;
  }

  .project-index {
    right: 17px;
    bottom: 12px;
  }

  .project-info h2 {
    margin-bottom: 30px;

    font-size: 43px;
  }

  .project-meta {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .projects-statement {
    padding: 95px 18px 105px;
  }

  .projects-statement h2 {
    font-size: clamp(53px, 14vw, 75px);
  }

  .projects-statement>p {
    margin: 45px 0 0;
  }

  .projects-cta {
    padding: 95px 18px 105px;
  }

  .projects-cta h2 {
    font-size: clamp(52px, 14vw, 75px);
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .projects-scroll-line::after {
    animation: none;
  }

}

/* =========================================================
   PROJECT CARDS — VISIBILITY + FINAL SIZE TEST
========================================================= */

.project-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;

  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 55px;

  align-items: center;
  width: 100%;
}

/* IMAGE — SLIGHTLY SMALLER */

.project-card .project-image {
  width: 100% !important;

  height: clamp(420px, 45vw, 610px) !important;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;

  overflow: hidden;
}

/* ACTUAL IMAGE */

.project-card .project-image img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* PROJECT TEXT — FORCE VISIBLE */

.project-card .project-info {
  display: block !important;

  width: 100% !important;
  max-width: 400px;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.project-card .project-type,
.project-card .project-info h2,
.project-card .project-meta,
.project-card .project-meta div,
.project-card .project-meta span,
.project-card .project-meta p {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* REVERSE CARDS */

.project-card-reverse {
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
}

.project-card-reverse .project-info {
  grid-column: 1;
  grid-row: 1;
}

.project-card-reverse .project-image {
  grid-column: 2;
  grid-row: 1;
}

/* MOBILE */

@media (max-width: 900px) {

  .project-card,
  .project-card-reverse {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .project-card-reverse .project-image,
  .project-card-reverse .project-info {
    grid-column: 1;
    grid-row: auto;
  }

  .project-card .project-image {
    height: 60vw !important;
    min-height: 320px;
  }

  .project-card .project-info {
    max-width: none;
  }
}

/* =========================================================
   FAQ — CONTACT / PRICE LIST BUTTON
========================================================= */

.faq-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;

  margin-top: 22px;
  padding: 15px 20px;

  min-width: 210px;

  border: 1px solid rgba(6, 70, 59, 0.3);

  color: #06463b;

  font-size: 10px;
  font-weight: 600;

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

  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}


.faq-contact-button span {
  font-size: 17px;

  transition:
    transform 0.35s ease;
}


.faq-contact-button:hover {
  background: #06463b;
  color: #f4f0e6;

  border-color: #06463b;

  transform: translateY(-2px);
}


.faq-contact-button:hover span {
  transform: translateX(5px);
}


/* =========================================================
   WATER ABSORPTION TEST
========================================================= */

.water-test {
  display: grid;
  grid-template-columns: 1fr 1fr;

  margin-top: 90px;

  border-top: 1px solid rgba(244, 240, 230, 0.18);
  border-bottom: 1px solid rgba(244, 240, 230, 0.18);
}


/* =========================================================
   LEFT SIDE
========================================================= */

.water-test-left {
  padding: 55px 70px 65px 0;

  border-right: 1px solid rgba(244, 240, 230, 0.18);
}


.water-test-left .performance-eyebrow {
  display: block;

  margin-bottom: 38px;

  color: #e7643b;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}


.water-test-left h3 {
  margin: 0 0 28px;

  color: #f4f0e6;

  font-size: clamp(38px, 4vw, 66px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}


.water-test-left h3 em {
  color: #e7643b;

  font-family: Georgia, serif;
  font-weight: 400;
}


.water-test-left p {
  max-width: 520px;

  margin: 0;

  color: rgba(244, 240, 230, 0.58);

  font-size: 12px;
  line-height: 1.8;
}


/* =========================================================
   RESULT SIDE
========================================================= */

.water-test-result {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px 0 65px 70px;
}


.water-result-label {
  display: block;

  margin-bottom: 20px;

  color: rgba(244, 240, 230, 0.48);

  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}


.water-result-number {
  display: flex;
  align-items: flex-end;

  gap: 12px;

  margin-bottom: 25px;
}


.water-result-number strong {
  color: #e7643b;

  font-size: clamp(85px, 9vw, 145px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.07em;
}


.water-result-number span {
  margin-bottom: 8px;

  color: #f4f0e6;

  font-size: 18px;
  font-weight: 500;
}


.water-test-result p {
  max-width: 390px;

  margin: 0;

  color: rgba(244, 240, 230, 0.55);

  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   WATER TEST — MOBILE
========================================================= */

@media (max-width: 768px) {

  .water-test {
    grid-template-columns: 1fr;

    margin-top: 60px;
  }


  .water-test-left {
    padding: 45px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 230, 0.18);
  }


  .water-test-result {
    padding: 45px 0 55px;
  }


  .water-test-left h3 {
    font-size: clamp(38px, 11vw, 55px);
  }


  .water-result-number strong {
    font-size: clamp(80px, 25vw, 120px);
  }

}

/* =========================================================

html,body{overflow-x:hidden;}
