/* ============================================================
   HOMEBOYS PROJECTS — Global Stylesheet
   ============================================================
   Replace placeholder images (class .img-ph) with <img> tags
   pointing to your actual image files.
   Replace the inline SVG logo with your actual logo SVG.
   ============================================================

   FONTS — Neue Haas Grotesk (licensed)
   ──────────────────────────────────────
   1. Purchase Neue Haas Grotesk from linotype.com or fonts.com
   2. Place your .woff2 files in a /fonts folder next to styles.css
   3. Uncomment the @font-face blocks below
   4. The font-family names below will then automatically resolve.

   Until then, DM Sans (Google Fonts) is used as a close stand-in.
   ============================================================ */

/*
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('fonts/NHaasGroteskDSPro-25Th.woff2') format('woff2');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('fonts/NHaasGroteskDSPro-35XLt.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('fonts/NHaasGroteskDSPro-45Lt.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text';
  src: url('fonts/NHaasGroteskTXPro-45Lt.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text';
  src: url('fonts/NHaasGroteskTXPro-55Rg.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text';
  src: url('fonts/NHaasGroteskTXPro-65Md.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
*/

/* ── Google Fonts fallback ──────────────────────────────────
   DM Sans  → Swiss grotesque stand-in for Haas Grot
   EB Garamond → editorial serif accent (tagline, pull quotes)
   ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,200;1,9..40,300&family=EB+Garamond:ital,wght@0,400;1,300;1,400&family=Outfit:wght@200;300;400&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input { font-family: inherit; }

/* ── Design tokens ── */
:root {
  --bg:            #ffffff;
  --dark:          #2a1a0d;
  --muted:         #8a7a6a;
  --border:        #cec6ba;
  --sidebar-w:     210px;

  /* Primary: Neue Haas Grotesk → DM Sans fallback → system grotesque */
  --font-display:  'Neue Haas Grotesk Display', 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ui:       'Neue Haas Grotesk Text',    'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Accent: editorial serif for taglines / pull quotes */
  --font-editorial: 'EB Garamond', 'Garamond', Georgia, serif;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-ui);
  font-weight: 300;
  min-height: 100vh;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 28px;
  background: var(--bg);
  z-index: 200;
  border-right: 1px solid var(--border);
}

/* Logo */
.sidebar__logo {
  display: block;
  width: 68px;
  flex-shrink: 0;
}
.sidebar__logo svg { width: 100%; height: auto; }

/* Nav */
.sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}

.sidebar__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;          /* zwart */
  font-weight: 300;
  transition: color 0.2s, font-weight 0.1s;
}
.sidebar__nav a:first-child { border-top: 1px solid var(--border); }
.sidebar__nav a:hover { opacity: 0.55; }
.sidebar__nav a.active {
  color: #1a1a1a;
  font-weight: 500;
}
.sidebar__nav .nav-num {
  font-size: 9px;
  letter-spacing: 0;
  color: #1a1a1a;
  opacity: 0.4;
}
.sidebar__nav a.active .nav-num { opacity: 1; }

/* Bottom: social + copyright */
.sidebar__bottom { margin-top: auto; padding-top: 20px; }

.sidebar__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sidebar__social a {
  display: flex;
  align-items: center;
  color: #1a1a1a;
  transition: opacity 0.2s;
}
.sidebar__social a:hover { opacity: 0.4; }
.sidebar__social svg { width: 15px; height: 15px; }

.sidebar__copy {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0.4;
  font-weight: 300;
}

/* Hamburger (mobile) */
.sidebar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.sidebar__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.sidebar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.sidebar__hamburger.open span:nth-child(2) { opacity: 0; }
.sidebar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav overlay */
.sidebar__nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}
.sidebar__nav-mobile.open { display: flex; }
.sidebar__nav-mobile a {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--muted);
}
.sidebar__nav-mobile a:first-child { border-top: 1px solid var(--border); }
.sidebar__nav-mobile a:hover,
.sidebar__nav-mobile a.active { color: var(--dark); font-weight: 400; }
.sidebar__nav-mobile .close-nav {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  font-family: var(--font-ui);
  display: flex; align-items: center; gap: 8px;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */

.page-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  position: relative;
}

/* ── Sub-header bar: ARCHITECTURE • DESIGN • DEVELOPMENT ── */
.sub-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 26px 40px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.sub-header .dot { color: var(--dark); font-size: 10px; line-height: 1; }

/* Right-aligned variant (projects page) */
.sub-header--right {
  justify-content: flex-end;
}

/* Top-right variant (absolute, for homepage) */
.sub-header--abs {
  position: absolute;
  top: 0; right: 0;
  padding: 26px 40px;
  z-index: 3;
}

/* ============================================================
   IMAGE PLACEHOLDER  (replace with real <img> tags)
   ============================================================ */
.img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(140deg, #cbbfaf 0%, #a8957e 55%, #8a7460 100%);
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

.home-page {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.home-page__hero {
  position: absolute;
  top: 0; right: 0;
  width: 84%;
  height: 100%;
  overflow: hidden;
}
.home-page__hero img {
  object-position: right center;
}

.home-page__text {
  position: absolute;
  bottom: 55%;
  left: 42px;
  z-index: 2;
}

.home-page__title {
  font-family: 'Outfit', var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 5.2vw, 80px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
}

.home-page__tagline {
  font-family: 'Outfit', var(--font-ui);
  font-style: normal;
  font-weight: 300;
  margin-top: 24px;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--muted);
  line-height: 2;
  text-transform: uppercase;
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */

.projects-page { padding: 0 40px 60px; }

.projects-page__topbar {
  display: flex;
  justify-content: flex-end;
  padding: 26px 0;
}

.projects-close {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
}
.projects-close svg { width: 12px; height: 12px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 100px;
  margin-top: 80px;
}

.project-card { cursor: pointer; }

.project-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #b8a898;
}
.project-card__thumb img,
.project-card__thumb .img-ph { transition: transform 0.5s ease; }
.project-card:hover .project-card__thumb img,
.project-card:hover .project-card__thumb .img-ph { transform: scale(1.04); }

.project-card__name {
  margin-top: 11px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dark);
}

/* ============================================================
   INDIVIDUAL PROJECT PAGE
   ============================================================ */

.project-detail { padding: 40px 60px 120px; }

.project-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 40px;
  transition: color 0.2s;
}
.project-detail__back:hover { color: var(--dark); }

/* ── Header: thin line + meta row ── */
.project-detail__header { margin-bottom: 80px; }

.project-header__line {
  width: 34px;
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.project-header__meta {
  display: flex;
  align-items: flex-start;
}

.project-header__name { padding-right: 32px; }

.project-detail__title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}
.project-detail__location {
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
}

.project-header__vline {
  width: 1px;
  min-height: 60px;
  background: var(--border);
  margin-right: 32px;
  align-self: stretch;
}

.project-header__info p {
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.9;
}

/* ── Gallery: stacked images, editorial spacing ── */
.project-gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 140px;
}

.project-gallery .gallery-img {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}

.project-gallery .gallery-img img {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-page {
  position: relative;
  min-height: 100vh;
}

/* Two-column layout: services left, image right */
.services-body {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 100vh;
}

.services-list {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Each service row: info left, sub-items right */
.service-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 16px 0;
}

.service-item__num {
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-item__title {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 12px;
}

.service-item__line {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.service-item__subs {
  list-style: none;
  padding-top: 20px;
}

.service-item__subs li {
  font-size: 11px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  padding: 7px 0;
}

/* Right: image centered vertically, height set by JS */
.services-img-wrap {
  padding: 0 60px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-img-wrap img {
  width: 100%;
  height: 65vh; /* fallback before JS runs */
  object-fit: cover;
  display: block;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-page {}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 40px;
  min-height: calc(100vh - 80px);
  align-items: center;
}

.about-text__label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}
.about-text__body p {
  /* Body text in the editorial serif — warmer, more human */
  font-family: var(--font-editorial);
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 16px;
  max-width: 330px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-photos .photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #b0a090;
}

.about-locations {
  padding: 0 40px 40px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--muted);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  position: relative;
  min-height: 100vh;
}

.contact-body {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 100vh;
}

/* Left: contact content */
.contact-content {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-divider {
  width: 34px;
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

.contact-section__label {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-section__value {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.55;
}

.contact-section__link {
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}
.contact-section__link:hover { opacity: 0.5; }

.contact-section__desc {
  font-size: 12px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 22px;
  align-items: center;
}
.contact-socials a {
  color: var(--dark);
  display: flex;
  transition: opacity 0.2s;
}
.contact-socials a:hover { opacity: 0.5; }
.contact-socials svg { width: 20px; height: 20px; }

/* Email form */
.email-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 10px;
  gap: 10px;
  max-width: 300px;
}
.email-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--dark);
}
.email-form input::placeholder { color: var(--muted); letter-spacing: 0.12em; }
.email-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
}
.email-form button svg { width: 16px; height: 16px; }

/* Right: portrait image */
.contact-img-wrap {
  padding: 0 60px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-img-wrap img {
  width: 100%;
  height: 65vh; /* fallback; overridden by JS */
  object-fit: cover;
  display: block;
}

/* ============================================================
   INVEST PAGE
   ============================================================ */

.invest-page {
  position: relative;
  min-height: 100vh;
}

.invest-body {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 100vh;
}

.invest-content {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.invest-item {
  padding: 20px 0;
}

.invest-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.invest-item__name {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.invest-item__loc {
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 4px;
}

.invest-item__status {
  font-family: var(--font-editorial);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

.invest-cta {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 18px;
}

/* Right: portrait image */
.invest-img-wrap {
  padding: 0 60px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.invest-img-wrap img {
  width: 100%;
  height: 65vh; /* fallback; overridden by JS */
  object-fit: cover;
  display: block;
}

/* ============================================================
   HOMEPAGE — FULLSCREEN / TRANSPARENT SIDEBAR
   Only active when <body class="is-home"> (index.html)
   ============================================================ */

/* Hero covers the entire viewport, incl. sidebar area */
.is-home .page-content {
  margin-left: 0;
}

.is-home .home-page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
}

.is-home .home-page__hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar: transparent background, dark border */
.is-home .sidebar {
  background: transparent;
  border-right-color: rgba(26, 26, 26, 0.35);
}

/* Nav links: dark (same as other pages) */
.is-home .sidebar__nav a {
  color: #1a1a1a;
  border-bottom-color: rgba(26, 26, 26, 0.25);
  font-weight: 300;
}
.is-home .sidebar__nav a:first-child {
  border-top-color: rgba(26, 26, 26, 0.25);
}
.is-home .sidebar__nav a:hover { opacity: 0.55; color: #1a1a1a; }
.is-home .sidebar__nav a.active { color: #1a1a1a; font-weight: 500; }
.is-home .sidebar__nav .nav-num { color: #1a1a1a; opacity: 0.4; }
.is-home .sidebar__nav a.active .nav-num { opacity: 1; }

/* Social icons + copyright: white (over photo) */
.is-home .sidebar__social a { color: #fff; }
.is-home .sidebar__copy { color: rgba(255,255,255,0.5); opacity: 1; }

/* Hamburger lines (mobile): dark */
.is-home .sidebar__hamburger span { background: var(--dark); }

/* Homepage text: dark, shifted to sit after the sidebar */
.is-home .home-page__text {
  left: calc(var(--sidebar-w) + 42px);
}

.is-home .home-page__title {
  color: var(--dark);
}

.is-home .home-page__tagline {
  color: var(--muted);
}

/* ARCHITECTURE – DESIGN – DEVELOPMENT top-right: dark */
.is-home .sub-header--abs {
  color: var(--dark);
}

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

@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }

  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
  }
  .sidebar__nav,
  .sidebar__bottom { display: none; }
  .sidebar__hamburger { display: flex; }

  .page-content { margin-left: 0; }

  /* Homepage */
  .home-page__hero { width: 100%; }
  .home-page__text { left: 24px; bottom: 62%; }
  .home-page__title { font-size: clamp(28px, 8vw, 52px); letter-spacing: 0.3em; }
  .sub-header--abs { display: none; }

  /* Projects grid */
  .projects-page { padding: 0 20px 40px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

  /* Services */
  .services-body { grid-template-columns: 1fr; min-height: auto; }
  .services-list { padding: 40px 20px; justify-content: flex-start; }
  .service-item { grid-template-columns: 150px 1fr; padding: 14px 0; }
  .services-img-wrap { padding: 0 20px 40px; justify-content: flex-start; }
  .services-img-wrap img { height: 60vw; }

  /* About */
  .about-body { grid-template-columns: 1fr; gap: 40px; padding: 30px 20px; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .about-locations { padding: 0 20px 30px; }

  /* Contact */
  .contact-body { grid-template-columns: 1fr; min-height: auto; }
  .contact-content { padding: 40px 20px; justify-content: flex-start; }
  .contact-img-wrap { padding: 0 20px 40px; justify-content: flex-start; }
  .contact-img-wrap img { height: 60vw; }

  /* Invest */
  .invest-body { grid-template-columns: 1fr; min-height: auto; }
  .invest-content { padding: 40px 20px; justify-content: flex-start; }
  .invest-img-wrap { padding: 0 20px 40px; justify-content: flex-start; }
  .invest-img-wrap img { height: 60vw; }

  /* Project detail */
  .project-detail { padding: 20px 20px 60px; }
  .project-header__meta { flex-direction: column; gap: 16px; }
  .project-header__vline { display: none; }
  .project-gallery { gap: 60px; }
  .project-gallery .gallery-img img { max-height: 55vw; }
}

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

/* ============================================================
   CINEMATIC FILM-GRADE — Atmospheric fine-art photography
   Warm desaturated tones · analogue film grain · editorial mood
   ============================================================ */

/* ── Colour grade on all editorial images ── */
.project-card__thumb img,
.gallery-img img,
.services-img-wrap img,
.contact-img-wrap img,
.invest-img-wrap img {
  filter: sepia(0.18) saturate(0.70) contrast(1.10) brightness(0.88);
  transition: filter 0.4s ease, transform 0.5s ease;
}

/* ── Film grain overlay via SVG feTurbulence ── */
.project-card__thumb,
.gallery-img,
.services-img-wrap,
.contact-img-wrap,
.invest-img-wrap,
.about-photos .photo,
.home-page__hero {
  position: relative;
}

.project-card__thumb::after,
.gallery-img::after,
.services-img-wrap::after,
.contact-img-wrap::after,
.invest-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.09;
  mix-blend-mode: overlay;
  z-index: 1;
}
