/* ====================================================================
   Rev 5 — Pilar's 23 Jun edits
   Site-wide typography + per-page treatments
   ==================================================================== */

/* Page eyebrows on inner pages match Home page eyebrow size (20px) */
.page-banner .eyebrow,
.page-banner > .container > .eyebrow {
  font-size: 20px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--blush);
  display: inline-block;
  margin-bottom: 24px;
}

/* Page H1 colour → ink-soft (matches menu-bar grey) */
.page-banner h1,
.page-banner > .container > h1 {
  color: var(--ink-soft) !important;
  font-family: var(--font-display);
  font-weight: var(--fw-thin);
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}

/* Page intro paragraph → ink-soft grey */
.page-banner .page-intro {
  color: var(--ink-soft) !important;
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
}

/* SERVICES — stream label format: 01. RESIDENTIAL (uppercase, bigger) */
.service-copy .stream-num {
  font-size: 20px !important;
  letter-spacing: 0.22em !important;
  font-weight: 500;
  color: var(--blush);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-copy h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-thin);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: var(--ink);
}

/* APPROACH page — split layout: copy left, photo right */
.approach-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: start;
}
.approach-split .approach-photo {
  position: sticky;
  top: 96px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.approach-split .approach-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 1024px) {
  .approach-split { grid-template-columns: 1fr; gap: 32px; }
  .approach-split .approach-photo { position: static; aspect-ratio: 4 / 3; max-width: 100%; }
}

/* PROJECT DETAIL GALLERIES — portrait 3-col or landscape 2-col */
.gallery-3col-portrait { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-3col-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.gallery-2col-landscape { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-2col-landscape img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .gallery-3col-portrait, .gallery-2col-landscape { grid-template-columns: 1fr; }
}

/* CONTACT page split layout */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}
.contact-split .contact-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: sticky;
  top: 96px;
}
.contact-split .contact-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 1024px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-split .contact-photo { position: static; aspect-ratio: 4 / 3; }
}
