   ISTIKA — REVIEWS PAGE


.reviews-page {
  margin: 0;
  background: #f2efe6;
  color: #064c3f;
}


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

.reviews-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #f2efe6;
  border-top: 1px solid rgba(6, 76, 63, 0.18);
}

.reviews-hero-inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 80px);
  max-width: 1600px;
  min-height: 92vh;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
}


/* =========================================================
   GIANT BACKGROUND WORD
========================================================= */

.reviews-hero-word {
  position: absolute;
  top: -3vw;
  left: -1vw;

  font-size: clamp(150px, 24vw, 430px);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.08em;

  color: rgba(6, 76, 63, 0.035);

  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}


/* =========================================================
   TOP META
========================================================= */

.reviews-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 0 24px;

  border-bottom: 1px solid rgba(6, 76, 63, 0.2);

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}


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

.reviews-hero-content {
  flex: 1;

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

  align-items: center;

  padding: 80px 0;
}


/* =========================================================
   LEFT HEADING
========================================================= */

.reviews-kicker {
  margin: 0 0 24px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;

  color: #df6338;
}

.reviews-hero-heading h1 {
  margin: 0;

  max-width: 1000px;

  font-size: clamp(60px, 7.5vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.055em;

  font-weight: 500;
  color: #064c3f;
}

.reviews-hero-heading h1 em {
  display: inline-block;

  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;

  color: #df6338;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.reviews-hero-side {
  align-self: end;
  padding-bottom: 20px;
}

.reviews-hero-side>p {
  margin: 0 0 40px;

  max-width: 460px;

  font-size: 17px;
  line-height: 1.65;

  color: rgba(6, 76, 63, 0.75);
}


/* =========================================================
   GOOGLE REVIEW BUTTON
========================================================= */

.google-review-button {
  position: relative;

  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;

  width: 100%;

  padding: 20px;

  border: 1px solid rgba(6, 76, 63, 0.28);

  color: #064c3f;
  text-decoration: none;

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

.google-review-button:hover {
  background: #064c3f;
  color: #f2efe6;
  transform: translateY(-3px);
}


/* GOOGLE G */

.google-review-icon {
  width: 54px;
  height: 54px;

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

  border-radius: 50%;

  background: #ffffff;

  color: #4285f4;

  font-size: 25px;
  font-weight: 700;

  border: 1px solid rgba(6, 76, 63, 0.15);
}


/* BUTTON TEXT */

.google-review-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.google-review-copy small {
  font-size: 8px;
  letter-spacing: 0.17em;
  opacity: 0.65;
}

.google-review-copy strong {
  font-size: 15px;
  font-weight: 500;
}

.google-review-arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.google-review-button:hover .google-review-arrow {
  transform: translate(4px, -4px);
}


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

.reviews-hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(6, 76, 63, 0.2);
}

.reviews-hero-bottom span {
  padding: 22px 0;

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

  color: rgba(6, 76, 63, 0.65);
}

.reviews-hero-bottom span:not(:first-child) {
  padding-left: 25px;
  border-left: 1px solid rgba(6, 76, 63, 0.2);
}


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

@media (max-width: 1000px) {

  .reviews-hero-inner {
    width: calc(100% - 40px);
  }

  .reviews-hero-content {
    grid-template-columns: 1fr;
    gap: 55px;

    padding: 70px 0;
  }

  .reviews-hero-heading h1 {
    font-size: clamp(55px, 11vw, 100px);
  }

  .reviews-hero-side {
    max-width: 600px;
  }

}


@media (max-width: 650px) {

  .reviews-hero-inner {
    width: calc(100% - 30px);
  }

  .reviews-hero {
    min-height: auto;
  }

  .reviews-hero-inner {
    min-height: auto;
  }

  .reviews-hero-content {
    padding: 55px 0;
  }

  .reviews-hero-heading h1 {
    font-size: clamp(48px, 14vw, 72px);
    line-height: 0.94;
  }

  .reviews-hero-side>p {
    font-size: 15px;
  }

  .reviews-hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-hero-bottom span {
    padding: 15px 10px 15px 0;
  }

  .reviews-hero-bottom span:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(6, 76, 63, 0.2);
  }

  .reviews-hero-bottom span:nth-child(4) {
    border-top: 1px solid rgba(6, 76, 63, 0.2);
  }

  .google-review-button {
    grid-template-columns: 46px 1fr auto;
    padding: 15px;
  }

  .google-review-icon {
    width: 46px;
    height: 46px;
  }

}

/* Reviews page intentionally uses the shared global header/navigation styles. */

/* =========================================================
   CUSTOMER REVIEWS — COMPACT 5 REVIEW SYSTEM
========================================================= */

.featured-review {
  background: #064c3f;
  color: #f3efe4;
  padding: 0 4%;
}

.featured-review-inner {
  max-width: 1600px;
  margin: 0 auto;
}


/* TOP */

.featured-review-top {
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(243, 239, 228, 0.18);

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


/* MAIN */

.featured-review-layout {
  display: grid;
  grid-template-columns: 30% 70%;
}


/* PERSON */

.featured-review-person {
  padding: 55px 40px 55px 0;

  border-right: 1px solid rgba(243, 239, 228, 0.18);
}

.featured-review-rating {
  margin-bottom: 25px;

  color: #e66137;

  font-size: 14px;
  letter-spacing: 0.12em;
}

.featured-review-person h2 {
  margin: 0 0 22px;

  color: #f3efe4;

  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 400;

  line-height: 0.98;
  letter-spacing: -0.04em;
}

.featured-review-type {
  color: rgba(243, 239, 228, 0.5);

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


/* STORY */

.featured-review-story {
  position: relative;

  padding: 55px 0 60px 55px;
}

.review-quote-mark {
  position: absolute;

  top: 10px;
  right: 0;

  color: rgba(243, 239, 228, 0.055);

  font-family: Georgia, serif;

  font-size: 150px;
  line-height: 1;
}

.featured-review-story blockquote {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin: 0;

  color: #f3efe4;

  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 400;

  line-height: 1.55;
  letter-spacing: -0.015em;
}


/* HIGHLIGHT */

.featured-review-highlight {
  max-width: 850px;

  margin-top: 35px;
  padding: 20px 0;

  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 25px;

  border-top: 1px solid rgba(243, 239, 228, 0.18);
  border-bottom: 1px solid rgba(243, 239, 228, 0.18);
}

.featured-review-highlight span {
  color: #e66137;

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

.featured-review-highlight p {
  margin: 0;

  color: rgba(243, 239, 228, 0.7);

  font-size: 13px;
  line-height: 1.6;
}

.featured-review-ending {
  max-width: 800px;

  margin: 28px 0;

  color: #e66137;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 26px);
  font-style: italic;

  line-height: 1.4;
}


/* GOOGLE LINK */

.featured-google-link {
  max-width: 850px;

  padding: 17px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(243, 239, 228, 0.3);

  color: #f3efe4;

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

  text-decoration: none;

  transition: color 0.3s ease;
}

.featured-google-link:hover {
  color: #e66137;
}


/* FACTS */

.featured-review-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(243, 239, 228, 0.18);
}

.featured-review-facts>div {
  padding: 22px 25px 22px 0;

  border-right: 1px solid rgba(243, 239, 228, 0.18);
}

.featured-review-facts>div:not(:first-child) {
  padding-left: 25px;
}

.featured-review-facts>div:last-child {
  border-right: 0;
}

.featured-review-facts span {
  display: block;

  margin-bottom: 10px;

  color: rgba(243, 239, 228, 0.42);

  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.featured-review-facts strong {
  color: #f3efe4;

  font-size: 13px;
  font-weight: 400;
}


/* =========================================================
   REVIEWS 02 — 05
========================================================= */

.customer-reviews {
  padding: 100px 4% 110px;

  background: #f2efe6;
  color: #064c3f;
}

.customer-reviews-inner {
  max-width: 1600px;
  margin: 0 auto;
}


/* SECTION HEADER */

.customer-reviews-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  margin-bottom: 65px;
  padding-bottom: 35px;

  border-bottom: 1px solid rgba(6, 76, 63, 0.2);
}

.customer-reviews-label {
  color: #e66137;

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

.customer-reviews-head h2 {
  margin: 0;

  color: #064c3f;

  font-size: clamp(42px, 4.7vw, 72px);
  font-weight: 400;

  line-height: 0.98;
  letter-spacing: -0.045em;
}

.customer-reviews-head h2 em {
  color: #e66137;

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


/* GRID */

.customer-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(6, 76, 63, 0.2);
  border-left: 1px solid rgba(6, 76, 63, 0.2);
}


/* CARD */

.customer-review-card {
  position: relative;

  min-height: 430px;

  padding: 42px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid rgba(6, 76, 63, 0.2);
  border-bottom: 1px solid rgba(6, 76, 63, 0.2);

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.customer-review-card:hover {
  background: rgba(6, 76, 63, 0.045);
}

.customer-review-number {
  position: absolute;

  top: 38px;
  right: 38px;

  color: rgba(6, 76, 63, 0.28);

  font-size: 10px;
  letter-spacing: 0.15em;
}

.customer-review-stars {
  margin-bottom: 32px;

  color: #e66137;

  font-size: 13px;
  letter-spacing: 0.12em;
}

.customer-review-card blockquote {
  flex: 1;

  margin: 0 0 40px;

  color: #064c3f;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.55vw, 25px);

  line-height: 1.5;
}

.customer-review-person {
  padding-top: 22px;

  border-top: 1px solid rgba(6, 76, 63, 0.18);
}

.customer-review-person strong {
  display: block;

  margin-bottom: 7px;

  color: #064c3f;

  font-size: 14px;
  font-weight: 600;
}

.customer-review-person span {
  color: rgba(6, 76, 63, 0.55);

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


/* GOOGLE CTA */

.reviews-google-footer {
  margin-top: 65px;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;

  align-items: center;

  padding-top: 40px;

  border-top: 1px solid rgba(6, 76, 63, 0.2);
}

.reviews-google-footer p {
  max-width: 600px;

  margin: 0;

  color: rgba(6, 76, 63, 0.7);

  font-size: 15px;
  line-height: 1.65;
}

.reviews-google-footer a {
  min-width: 280px;

  padding: 20px 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border: 1px solid #064c3f;

  color: #064c3f;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;

  text-decoration: none;

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

.reviews-google-footer a:hover {
  background: #064c3f;
  color: #f2efe6;
}


/* =========================================================
   REVIEWS — TABLET
========================================================= */

@media (max-width: 900px) {

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

  .featured-review-person {
    padding: 45px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(243, 239, 228, 0.18);
  }

  .featured-review-story {
    padding: 45px 0 50px;
  }

  .featured-review-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .customer-reviews-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}


/* =========================================================
   REVIEWS — MOBILE
========================================================= */

@media (max-width: 650px) {

  .featured-review {
    padding: 0 20px;
  }

  .featured-review-top {
    height: 65px;
  }

  .featured-review-person h2 {
    font-size: 40px;
  }

  .featured-review-story blockquote {
    font-size: 18px;
  }

  .featured-review-highlight {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-review-facts {
    grid-template-columns: 1fr;
  }

  .featured-review-facts>div,
  .featured-review-facts>div:not(:first-child) {
    padding: 18px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(243, 239, 228, 0.18);
  }

  .customer-reviews {
    padding: 70px 20px 80px;
  }

  .customer-review-grid {
    grid-template-columns: 1fr;
  }

  .customer-review-card {
    min-height: auto;
    padding: 30px 25px;
  }

  .customer-review-card blockquote {
    font-size: 19px;
  }

  .reviews-google-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-google-footer a {
    min-width: 0;
    width: 100%;
  }

}


/* =========================================================
   ISTIKA — PROJECT PHOTO GALLERY
========================================================= */

.project-gallery {
  display: grid;

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

  gap: 28px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.project-gallery-item {
  position: relative;

  height: 520px;

  margin: 0;

  overflow: hidden;

  background: #d9d2c4;

  border-radius: 4px;

  cursor: pointer;
}


/* LARGE FEATURE IMAGE */

.project-gallery-large {
  grid-column: 1 / -1;

  height: min(72vw, 820px);
}


/* WIDE IMAGE */

.project-gallery-wide {
  grid-column: 1 / -1;

  height: min(55vw, 650px);
}


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

.project-gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

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


/* HOVER */

.project-gallery-item:hover img {
  transform: scale(1.035);
}


/* =========================================================
   PROJECT NUMBER
========================================================= */

.project-gallery-number {
  position: absolute;

  top: 22px;
  left: 22px;

  z-index: 2;

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

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(244, 240, 230, 0.94);

  color: #064c3f;

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

  letter-spacing: 0.08em;

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


.project-gallery-item:hover .project-gallery-number {
  background: #e66137;
  color: #f4f0e6;

  transform: translate(3px, -3px);
}


/* =========================================================
   SUBTLE IMAGE OVERLAY
========================================================= */

.project-gallery-item::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05),
      transparent 35%,
      rgba(0, 0, 0, 0.08));

  opacity: 0;

  transition: opacity 0.4s ease;
}


.project-gallery-item:hover::after {
  opacity: 1;
}


/* =========================================================
   PROJECT GALLERY — TABLET
========================================================= */

@media (max-width: 900px) {

  .project-gallery {
    gap: 20px;
  }


  .project-gallery-item {
    height: 420px;
  }


  .project-gallery-large {
    height: 65vw;
    min-height: 450px;
  }


  .project-gallery-wide {
    height: 55vw;
    min-height: 400px;
  }

}


/* =========================================================
   PROJECT GALLERY — MOBILE
========================================================= */

@media (max-width: 650px) {

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

    gap: 18px;
  }


  .project-gallery-item,
  .project-gallery-large,
  .project-gallery-wide {
    grid-column: auto;

    width: 100%;

    height: 68vw;
    min-height: 280px;
    max-height: 430px;
  }


  .project-gallery-number {
    top: 15px;
    left: 15px;

    width: 36px;
    height: 36px;

    font-size: 8px;
  }

}

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

html,body{overflow-x:hidden;}
