:root {
  --bg: #050505;
  --bg2: #0b0b0b;
  --panel: #111111;
  --panel2: #171717;
  --text: #f4f0e8;
  --muted: #b9b3a8;
  --gold: #b8995a;
  --gold2: #d8c27d;
  --line: rgba(216, 194, 125, 0.22);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 0px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg) !important;
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--gold);
  color: #080808;
}

/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 92px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}

.brand img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.brand span {
  font-size: 19px;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #f5f5f5;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f6f0e4;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold2);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 38px;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

.page-spacer {
  height: 92px;
}

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

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  background: #000 center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.25) 42%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero.home {
  background-image: url("https://static.wixstatic.com/media/11062b_4f14b356c1df4854968cf1cc94ca98c5f000.jpg/v1/fill/w_1920%2Ch_1080%2Cal_c%2Cq_90%2Cenc_avif%2Cquality_auto/11062b_4f14b356c1df4854968cf1cc94ca98c5f000.jpg");
}

.hero-content {
  padding: 120px 26px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-logo {
  width: min(520px, 80vw);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

.hero-title {
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.down-arrow {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 44px;
  opacity: 0.9;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 12px);
  }
}

/* =========================
   GLOBAL SECTIONS
========================= */

.section {
  position: relative;
  padding: 90px 28px;
  background: var(--bg);
}

.section.alt {
  background: var(--bg2);
}

.section-label {
  max-width: var(--max);
  margin: 0 auto 28px;
  color: var(--gold2);
  font-size: 14px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.kicker {
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold2);
  margin: 0 0 18px;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.15;
  margin-top: 0;
}

h1.page-title {
  font-size: clamp(42px, 7vw, 86px);
  margin: 0 0 34px;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--gold2);
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 20px;
}

.lead {
  font-size: 20px;
  line-height: 1.8;
  color: #e9e0cf;
}

.small {
  font-size: 14px;
  color: #9d968b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  color: #101010;
  background: var(--gold2);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn:hover {
  background: transparent;
  color: var(--gold2);
}

.btn.ghost {
  background: transparent;
  color: var(--gold2);
}

.btn.ghost:hover {
  background: var(--gold2);
  color: #111;
}

.about-image,
.full-image {
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   HOME CARDS / SERVICES
========================= */

.service-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.preview-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 194, 125, 0.5);
}

.preview-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.preview-card .body {
  padding: 28px;
}

.preview-card h3 {
  font-size: 23px;
}

.preview-card p {
  font-size: 14.5px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.stat strong {
  display: block;
  font-size: 60px;
  font-weight: 300;
  color: var(--gold2);
  line-height: 1;
}

.stat span {
  display: block;
  color: #eee;
  margin-top: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #111;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: 0.35s ease;
}

.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05));
}

.project-tile:hover img {
  transform: scale(1.07);
}

.project-tile span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.client-logo {
  height: 108px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid #e1e1e1;
}

.client-logo img {
  max-height: 80px;
  object-fit: contain;
  margin: auto;
}

/* =========================
   CONTACT / FORM
========================= */

.contact-band {
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-list {
  margin-top: 25px;
}

.contact-list p {
  margin-bottom: 8px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.input,
.textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #585247;
  color: var(--text);
  min-height: 48px;
  padding: 13px 14px;
  font-size: 14px;
}

.textarea {
  height: 150px;
  resize: vertical;
}

.input::placeholder,
.textarea::placeholder {
  color: #918a80;
}

.input:focus,
.textarea:focus {
  outline: 0;
  border-color: var(--gold2);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  color: #b7b0a6;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.social {
  display: flex;
  gap: 14px;
}

.social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  font-size: 12px;
  transition: 0.2s;
}

.social a:hover {
  background: var(--gold2);
  color: #000;
}

/* =========================
   SUB PAGES
========================= */

.subhero {
  padding: 170px 28px 80px;
  background: #050505;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subhero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -170px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(184, 153, 90, 0.18), transparent 65%);
}

.subhero .container {
  position: relative;
  z-index: 1;
}

.subhero p {
  max-width: 850px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.value-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px;
}

.value-card strong {
  display: block;
  color: var(--gold2);
  margin-bottom: 10px;
  font-size: 18px;
}

.value-card p {
  font-size: 14.5px;
  margin: 0;
}

.service-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.service-intro img {
  max-width: 310px;
  margin: auto;
  filter: invert(1);
}

.service-text-block {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.service-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  min-height: 265px;
  transition: 0.2s;
}

.service-card:hover {
  border-color: rgba(216, 194, 125, 0.5);
  transform: translateY(-4px);
}

.service-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: invert(1) grayscale(1);
}

.service-card h3 {
  font-size: 21px;
}

.service-card p {
  font-size: 14.5px;
  margin: 0;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px;
}

.contact-card h3 {
  color: var(--gold2);
}

.mini-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.mini-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
}

/* =========================
   PROJECTS PAGE DARK VERSION
========================= */

body.project-body-light,
body.projects-page,
body.project-page-body {
  background: var(--bg) !important;
  color: var(--text) !important;
}

.project-page-v4,
.project-page-exact,
.project-page,
.projects-page,
.projects-main,
main.project-page-v4,
main.project-page-exact {
  background: var(--bg) !important;
  color: var(--text) !important;
}

.project-page-v4 {
  padding: 145px 0 22px !important;
}

.project-page-v4 .project-layout {
  max-width: 1160px !important;
  width: 100% !important;
  margin: 0 auto 86px !important;
  padding: 0 28px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr) !important;
  gap: 44px !important;
  align-items: start !important;
  box-sizing: border-box !important;
  background: transparent !important;
}

.project-page-v4 .project-copy {
  min-width: 0 !important;
  order: 1 !important;
  background: transparent !important;
}

.project-page-v4 .project-media {
  min-width: 0 !important;
  order: 2 !important;
  position: relative !important;
  background: transparent !important;
}

.project-page-v4 .project-copy h1,
.project-page-v4 .project-copy h2,
.project-page-v4 .project-copy h3,
.project-page-v4 .project-copy h4,
.project-page-v4 .project-copy .plain-heading,
.project-page-v4 .project-copy .small-section-title {
  color: var(--text) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.project-page-v4 .project-copy h2 {
  font-size: 32px !important;
  line-height: 1.18 !important;
  margin: 0 0 18px !important;
}

.project-page-v4 .project-copy .small-section-title {
  font-size: 26px !important;
  margin: 10px 0 16px !important;
}

.project-page-v4 .project-copy h3 {
  font-size: 19px !important;
  line-height: 1.35 !important;
  margin: 20px 0 10px !important;
  color: var(--gold2) !important;
}

.project-page-v4 .project-copy h4 {
  font-size: 17px !important;
  margin: 14px 0 8px !important;
  color: var(--gold2) !important;
}

.project-page-v4 .project-copy p,
.project-page-v4 .project-copy ul,
.project-page-v4 .project-copy li {
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.66 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.project-page-v4 .project-copy p {
  margin: 0 0 14px !important;
}

.project-page-v4 .project-copy ul {
  margin: 0 0 14px 22px !important;
  padding: 0 !important;
}

.project-page-v4 .project-copy li {
  margin: 0 0 4px !important;
  padding: 0 !important;
}

.project-page-v4 .project-copy .plain-heading {
  font-size: 16px !important;
  margin: 9px 0 7px !important;
}

/* =========================
   PROJECT SLIDER
========================= */

.project-page-v4 .wix-pro-gallery,
.project-page-v4 .wix-pro-gallery.caption-gallery,
.project-page-v4 .wix-pro-gallery.palm-gallery,
.project-page-v4 .wix-pro-gallery.second-palm-gallery,
.wix-pro-gallery,
.wix-pro-gallery.caption-gallery,
.wix-pro-gallery.palm-gallery,
.wix-pro-gallery.second-palm-gallery {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 980 / 566 !important;
  min-height: 0 !important;
  margin: 0 !important;
  background: #111 !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
}

.project-page-v4 .wix-pro-gallery figure,
.project-page-v4 .wix-pro-gallery .tall-figure,
.wix-pro-gallery figure,
.wix-pro-gallery .tall-figure {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  background: #111 !important;
}

.project-page-v4 .wix-pro-gallery figure.is-active,
.wix-pro-gallery figure.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2;
}

.project-page-v4 .wix-pro-gallery img,
.project-page-v4 .wix-pro-gallery .tall-figure img,
.wix-pro-gallery img,
.wix-pro-gallery .tall-figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  background: #111 !important;
  border: 0 !important;
  display: block !important;
}

.project-page-v4 .wix-pro-gallery figure.contain-slide img,
.project-page-v4 .wix-pro-gallery .tall-figure.contain-slide img,
.wix-pro-gallery figure.contain-slide img,
.wix-pro-gallery .tall-figure.contain-slide img {
  object-fit: contain !important;
  background: #111 !important;
}

.project-page-v4 .wix-pro-gallery figcaption,
.project-page-v4 .caption-gallery figcaption,
.wix-pro-gallery figcaption,
.caption-gallery figcaption {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 5 !important;
  margin: 0 !important;
  padding: 13px 78px 13px 16px !important;
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.55)) !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  word-break: break-word;
}

.wix-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 48px;
  height: 74px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 66px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.wix-slider-arrow:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.wix-slider-arrow.prev {
  left: 16px;
}

.wix-slider-arrow.next {
  right: 16px;
}

.wix-slider-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  pointer-events: auto;
}

.wix-slider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.wix-slider-dot.is-active {
  background: #fff;
  transform: scale(1.18);
}

.project-page-v4 .slide-count.slider-counter,
.slide-count.slider-counter {
  position: absolute !important;
  z-index: 10 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 48px !important;
  min-width: 68px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.55)) !important;
  text-align: center !important;
}

/* =========================
   PORTFOLIO / EXPERT ENGINEERS
========================= */

.project-page-v4 .expert-engineers-block {
  padding-bottom: 80px !important;
}

.project-page-v4 .expert-image,
.expert-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 980 / 578 !important;
  object-fit: cover !important;
  margin: 0 !important;
  display: block !important;
  background: #111 !important;
}

.portfolio-download {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 178px !important;
  height: 46px !important;
  padding: 0 24px !important;
  margin-top: 14px !important;
  background: var(--gold2) !important;
  color: #111 !important;
  text-decoration: none !important;
  border: 1px solid var(--gold2) !important;
  font-size: 15px !important;
  letter-spacing: 0.01em !important;
}

.portfolio-download:hover {
  background: transparent !important;
  border-color: var(--gold2) !important;
  color: var(--gold2) !important;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
}

.lightbox button {
  position: absolute;
  right: 28px;
  top: 24px;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

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

@media (max-width: 1050px) {
  .project-page-v4 .project-layout {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    margin-bottom: 70px !important;
  }

  .project-page-v4 .project-media {
    order: 2 !important;
  }

  .project-page-v4 .project-copy {
    order: 1 !important;
  }
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 92px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 34px;
    gap: 22px;
  }

  .nav.open {
    display: flex;
  }

  .split,
  .contact-layout,
  .service-intro,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .service-preview,
  .service-icons {
    grid-template-columns: 1fr 1fr;
  }

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

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 720px) {
  .project-page-v4 {
    padding-top: 118px !important;
  }

  .project-page-v4 .project-layout {
    padding: 0 16px !important;
    margin-bottom: 58px !important;
  }

  .project-page-v4 .wix-pro-gallery,
  .project-page-v4 .wix-pro-gallery.caption-gallery,
  .wix-pro-gallery,
  .wix-pro-gallery.caption-gallery {
    aspect-ratio: 1 / 0.86 !important;
  }

  .project-page-v4 .wix-pro-gallery figcaption,
  .project-page-v4 .caption-gallery figcaption,
  .wix-pro-gallery figcaption,
  .caption-gallery figcaption {
    font-size: 12px !important;
    min-height: 44px !important;
    padding: 10px 62px 10px 12px !important;
  }

  .project-page-v4 .slide-count.slider-counter,
  .slide-count.slider-counter {
    height: 44px !important;
    min-width: 54px !important;
    font-size: 12px !important;
  }

  .wix-slider-dots {
    bottom: 52px !important;
  }

  .wix-slider-arrow {
    font-size: 48px !important;
    width: 38px !important;
    height: 58px !important;
  }

  .wix-slider-arrow.prev {
    left: 5px !important;
  }

  .wix-slider-arrow.next {
    right: 5px !important;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    padding: 0 18px;
  }

  .brand img {
    width: 55px;
  }

  .brand span {
    font-size: 15px;
  }

  .section {
    padding: 64px 20px;
  }

  .subhero {
    padding: 140px 20px 60px;
  }

  .service-preview,
  .service-icons,
  .stats,
  .values-grid,
  .projects-grid,
  .clients-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .project-tile {
    min-height: 280px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-logo {
    width: 86vw;
  }

  h1.page-title {
    font-size: 42px;
  }

  .stat strong {
    font-size: 48px;
  }
}

/* =========================
   FINAL ANTI-WHITE OVERRIDE
   DO NOT REMOVE
========================= */

html,
body,
main,
.project-page-v4,
.project-page-exact,
.project-page,
.projects-page,
.projects-main,
body.project-body-light,
body.projects-page,
body.project-page-body {
  background-color: #050505 !important;
}

.project-page-v4 *,
.project-page-exact *,
.project-page *,
.projects-page * {
  border-color: rgba(216, 194, 125, 0.22);
}

.project-page-v4 .project-copy,
.project-page-v4 .project-layout,
.project-page-v4 .project-media {
  background-color: transparent !important;
}

.project-page-v4 h1,
.project-page-v4 h2,
.project-page-v4 h3,
.project-page-v4 h4 {
  color: #f4f0e8 !important;
}

.project-page-v4 p,
.project-page-v4 li,
.project-page-v4 ul {
  color: #b9b3a8 !important;
}

/* =========================
   LOCAL ASSET SOCIAL ICONS FIX
========================= */
.footer .social a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(88%) sepia(20%) saturate(709%) hue-rotate(5deg) brightness(101%) contrast(92%);
}

.footer .social a:hover img {
  filter: brightness(0) saturate(100%);
}

.project-page-v4 .footer,
body.project-body-light .footer {
  background-color: #050505 !important;
}
