/*
Theme Name: Dsquared
Theme URI: http://www.dsquaredmedia.net/
Author: Dsquared Media
Author URI: http://www.dsquaredmedia.net/
Description: Bootstrap 3 theme made by Dsquared Media
Version: 1.2

-webkit-transition: all 0.25s ease-out;
-moz-transition: all 0.25s ease-out;
-o-transition: all 0.25s ease-out;
transition: all 0.25s ease-out;
*/

@import url('css/responsive.css');

* {
	outline: none !important;
}

:root {
  --black: #000;
  --white: #fff;
  --ink: #1a1a1a;
  --grey-text: #828282;
  --muted: rgba(26, 26, 26, 0.4);
  --line: rgba(0, 0, 0, 0.07);
  --soft: #f6f6f6;
  --field: rgba(0, 0, 0, 0.03);
  --footer-text: rgba(255, 255, 255, 0.7);
  --content: 1280px;
  --pad: 80px;
  --sans: "Figtree", system-ui, -apple-system, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: calc(var(--content) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* shared type helpers ---------------------------------------- */
.eyebrow {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.324px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.8;
}
.eyebrow-row .tick {
  /*width: 20px; height: 14px; flex: 0 0 auto;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skewX(-18deg);
  opacity: 0.7;*/
  background: url('images/logo_mini.svg') no-repeat 0 0;
  width: 20px;
  height: 14px;
  display: inline-block;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: var(--ink);
}
.lede, .text_1 p { font-size: 18px; line-height: 33px; color: #000; opacity: 0.8; }

/* arrow icon (reusable) -------------------------------------- */
.arrow { display: inline-block; flex: 0 0 auto; }

/* buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 17px 33px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  align-self: flex-start;   /* don't stretch when inside a flex column */
  width: max-content;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn svg { width: 14px; height: 14px; }
.btn--light { background: var(--white); color: var(--black); border-color: rgba(255,255,255,0.4); }
.btn--dark  { background: var(--black); color: var(--white); }
.btn--ghost { background: transparent; color: var(--grey-text); border-color: rgba(0,0,0,0.15); }
/* opt-in full-width variant */
.btn--block { width: 100%; max-width: none; justify-content: center; align-self: stretch; }
.btn:hover { opacity: 0.85; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 105px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
.logo { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; color: var(--white); line-height: 1; }
.logo .slashes { font-style: italic; font-weight: 800; font-size: 30px; letter-spacing: -5px; transform: skewX(-12deg); }
.logo .stack { display: flex; flex-direction: column; }
.logo .mark { font-weight: 800; font-size: 30px; letter-spacing: 1px; }
.logo .sub { font-size: 9px; letter-spacing: 6px; font-weight: 600; margin-top: 4px; opacity: 0.9; }

.nav-links {
  display: flex; gap: 66px; align-items: center;
  margin: 0 auto; list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--white); text-decoration: none; font-weight: 600;
  font-size: 16px; letter-spacing: 1.8px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.nav-links a:hover { opacity: 0.75; }
.nav-links a.active { border-bottom-color: var(--white); }
.nav-links .caret {
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0;
  width: 32px; height: 24px; cursor: pointer; position: relative;
}
.nav-toggle span { position: absolute; left: 0; right: 0; height: 2px; background: #fff; transition: 0.25s; }
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 11px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mainmenu .menu-item-has-children > a {
  background: url('images/submenu_down.svg') no-repeat right 9px;
  padding-right: 18px;
}

.mainmenu .sub-menu {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 100%;
  background: #fff;
  padding: 10px;
  text-align: left;
  list-style-type: none;
  display: none;
}

.mainmenu li:hover .sub-menu {
  display: block;
}

.mainmenu .sub-menu li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mainmenu .sub-menu li:last-child {
  border-bottom: none;
}

.mainmenu .sub-menu li a {
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  display: block;
  background: url('images/submenu.svg') no-repeat right 0 top 7px;
  padding-right: 40px;
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 469px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.34); }
.hero > * { position: relative; z-index: 2; }
.hero-copy {
  padding: 0 var(--pad);
  width: 100%;
  max-width: calc(var(--content) + var(--pad) * 2);
  margin: 0 auto;
  display: flex; flex-direction: column;
}
.hero-copy .eyebrow { max-width: 600px; margin-bottom:5px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 72px;
  line-height: 0.94;
  text-transform: capitalize;
}
.hero--tall { min-height: 935px; align-items: flex-end; }
.hero--tall .hero-copy { padding-bottom: 120px; gap: 70px; }
.hero--tall .hero-title { text-transform: none; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 100px 0; }
.section--flush { padding: 110px 0 0; }

/* project cards (grid) --------------------------------------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { display: flex; flex-direction: column; gap: 24px; text-decoration: none; color: inherit; background: transparent; }
.card-img { aspect-ratio: 409 / 533; width: 100%; overflow: hidden; background: #eee; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.card-title { font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 32px; color: var(--black); }
.card-loc { font-size: 16px; line-height: 31px; color: var(--black); opacity: 0.8; margin-top: 8px; }
.card-arrow { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 6px; transform: rotate(45deg); }

/* filters ---------------------------------------------------- */
.filters { display: flex; gap: 34px; align-items: flex-start; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.filter {
  background: none; border: 0; cursor: pointer; font-family: var(--sans);
  font-weight: 600; font-size: 14px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--muted); padding-bottom: 11px; position: relative;
}
.filter.active { color: var(--ink); }
.filter.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); }

/* view more -------------------------------------------------- */
.view-more { margin: 32px auto 0; display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; color: var(--black); width: max-content; }
.view-more span { font-size: 18px; letter-spacing: 0.324px; opacity: 0.8; text-transform: uppercase; }
.view-more .underline { width: 125px; height: 1px; background: var(--black); opacity: 0.8; }
.view-more:hover, .view-more:focus {
  color: #828282 !important;
}

/* ============================================================
   CTA band (rich, used on Home)
   ============================================================ */
.cta-band { position: relative; padding: 120px var(--pad); color: var(--white); overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(0,0,0,0.16) 15%, rgba(0,0,0,0.3) 17%, rgba(0,0,0,0.86) 83%, rgba(0,0,0,0.9) 100%);
}
.cta-band > .inner { position: relative; z-index: 2; max-width: 891px; display: flex; flex-direction: column; gap: 32px; }
.cta-band h2 { font-family: var(--serif); font-weight: 400; font-size: 60px; line-height: 71px; max-width: 714px; }
.cta-band p { font-size: 18px; line-height: 33px; max-width: 660px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); }
.footer-inner { max-width: calc(var(--content) + var(--pad) * 2); margin: 0 auto; padding: 74px var(--pad) 25px; display: flex; flex-direction: column; gap: 80px; }

/* simple CTA at top of footer */
.footer-cta { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; padding-bottom: 47px; }
.footer-cta h2 { font-family: var(--serif); font-weight: 400; font-size: 60px; line-height: 71px; max-width: 735px; }

.footer-cols { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

.footer-cols {
  margin-bottom: 50px;
}

.brand-col { display: flex; flex-direction: column; gap: 35px; max-width: 325px; }
.footer-logo { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; color: #fff; }
.footer-logo .slashes { font-style: italic; font-weight: 800; font-size: 40px; letter-spacing: -6px; transform: skewX(-12deg); }
.footer-logo .stack { display: flex; flex-direction: column; }
.footer-logo .mark { font-weight: 800; font-size: 40px; letter-spacing: 1px; }
.footer-logo .sub { font-size: 11px; letter-spacing: 8px; font-weight: 600; margin-top: 5px; }
.license { border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); padding: 17px 0; font-size: 16px; line-height: 31px; color: var(--footer-text); }
.license strong { color: #fff; font-weight: 700; }
.badges { display: flex; gap: 24px; align-items: flex-start; }
.badges .badge { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 9px; text-align: center; color: rgba(255,255,255,0.6); padding: 6px; }

.footer-col h3 { font-weight: 700; font-size: 20px; letter-spacing: 0.36px; text-transform: uppercase; margin-bottom: 40px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 32px; }
.footer-col a, .footer-col li { color: var(--footer-text); text-decoration: none; font-size: 18px; line-height: 31px; }
.footer-col a:hover { color: #fff; }

.socials { display: flex; gap: 16px; align-items: center; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s ease; }
.socials a:hover { background: rgba(255,255,255,0.25); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.footer-bottom .rule { width: 100%; height: 1px; background: rgba(255,255,255,0.2); }
.footer-bottom p { font-size: 16px; line-height: 31px; text-align: center; }

/* ============================================================
   HOME — stats bar
   ============================================================ */
.stats { background: var(--black); color: var(--white); }
.stats-inner { max-width: calc(var(--content) + var(--pad)*2); margin: 0 auto; padding: 28px var(--pad); display: flex; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 14px; flex: 1; min-width: 160px; }
.stat b { font-family: var(--serif); font-weight: 500; font-size: 40px; line-height: 46px; }
.stat span { font-size: 18px; line-height: 33px; }

/* intro split (Home / About) -------------------------------- */
.split { display: flex; gap: 80px; align-items: flex-start; }
.split .side { flex: 0 0 auto; }
.split .body { flex: 1; }

/* service cards --------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.svc { border: 1px solid var(--line); padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.svc h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 36px; color: #000; }
.svc p { font-size: 18px; line-height: 33px; color: #000; opacity: 0.8; }

/* ============================================================
   ABOUT — values, markets, marquee
   ============================================================ */
.values { position: relative; padding: 80px var(--pad); color: var(--white); background-size: cover; background-position: center; overflow: hidden; }
/*.values::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.8); }*/
.values > * { position: relative; z-index: 2; }
.values-head { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; margin-bottom: 50px; }
.values-head .eyebrow-row { color: #fff; opacity: 0.9; }
.values-head h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 46px; max-width: 914px; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.value { border: 1px solid rgba(255,255,255,0.2); padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center; margin: 0 12px; }
.value .ico { width: 60px; height: 60px; }
.value h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 38px; }
.value p { font-size: 18px; line-height: 29px; opacity: 0.8; margin-bottom: 0; }

.clients-head { max-width: 839px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.clients-head h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 52px; color: var(--ink); }
.clients-head p { font-size: 18px; line-height: 33px; opacity: 0.8; color: #000; max-width: 752px; }

/* marquee */
.marquee { overflow: hidden; width: 100%; }
.marquee-track { display: flex; gap: 24px; width: max-content; animation: marquee 40s linear infinite; }
.marquee--rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-cell { background: var(--field); width: 200px; height: 99px; display: flex; align-items: center; justify-content: center; padding: 24px; flex: 0 0 auto; }
.logo-cell img { max-height: 48px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.65; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 12px)); } }

/* markets grid */
.markets { background: var(--soft); padding: 100px var(--pad); }
.markets-inner { max-width: var(--content); margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }
.markets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.market { position: relative; min-height: 266px; display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center; background-size: cover; background-position: center; border: 1px solid #fff; }
.market::after { /*content: "";*/ position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.market span { position: relative; z-index: 2; font-family: var(--serif); font-weight: 500; font-size: 22px; line-height: 32px; color: #fff; max-width: 275px; }

/* ============================================================
   PROJECT DETAIL
   ============================================================ */
.detail-top { display: flex; gap: 55px; align-items: stretch; }
.detail-top .col { flex: 1; min-width: 0; }
.detail-top h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 52px; color: var(--ink); margin-bottom: 24px; }
.detail-top p { font-size: 18px; line-height: 33px; color: #000; opacity: 0.8; }
.detail-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.facts { border: 1px solid rgba(0,0,0,0.1); padding: 32px; display: flex; justify-content: space-between; gap: 24px; margin-top: 32px; }
.fact { display: flex; flex-direction: column; gap: 16px; }
.fact .k { font-size: 18px; opacity: 0.8; }
.fact .v { font-family: var(--serif); font-size: 16px; line-height: 32px; }
.facts .div { width: 1px; background: rgba(0,0,0,0.1); align-self: stretch; }

.gallery-head { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 52px; text-align: center; color: var(--ink); margin-bottom: 50px; }
.gallery-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; }
.gallery-tab { display: flex; flex-direction: column; align-items: center; gap: 11px; cursor: pointer; }
.gallery-tab span { font-weight: 600; font-size: 14px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }
.gallery-tab.active span { color: var(--ink); }
.gallery-tab .u { width: 127px; height: 1px; background: rgba(0,0,0,0.1); }
.gallery-tab.active .u { background: var(--ink); }
.gallery-stage { width: 100%; max-width: 904px; height: 528px; margin: 0 auto; position: relative; background: #111; display: flex; align-items: center; justify-content: center; }
.gallery-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.gallery-stage .play { position: relative; z-index: 2; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gallery-stage .play::after { content: ""; border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.dots i { height: 2px; width: 10px; background: rgba(0,0,0,0.1); display: block; }
.dots i.on { width: 80px; background: #000; }

/* ============================================================
   CONTACT
   ============================================================ */
.careers-head h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 52px; color: var(--ink); }
.careers { display: flex; gap: 50px; align-items: flex-start; }
.careers .intro { width: 516px; flex: 0 0 auto; display: flex; flex-direction: column; gap: 32px; }
.careers .intro .copy { display: flex; flex-direction: column; gap: 16px; }
.roles { flex: 1; display: grid; grid-template-columns: 1fr 1fr; }
.role { border: 1px solid var(--line); padding: 32px; display: flex; flex-direction: column; gap: 32px; }
.role h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 38px; color: #000; }
.role p { font-size: 18px; line-height: 33px; color: #000; opacity: 0.8; }
.tag { width: max-content; padding: 8px 16px; font-size: 18px; opacity: 0.8; background: linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0)); }

.contact-block { background: var(--soft); padding: 100px var(--pad); }
.contact-inner { max-width: var(--content); margin: 0 auto; display: flex; gap: 50px; align-items: stretch; }
.contact-inner .col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 32px; }
.contact-info { background: #000; color: #fff; padding: 40px; display: flex; flex-direction: column; gap: 50px; }
.contact-info .row .k { font-size: 18px; opacity: 0.8; letter-spacing: 0.3px; margin-bottom: 24px; }
.contact-info .row .v { font-size: 24px; line-height: 32px; }
.contact-info .row .v + .v { margin-top: 8px; }

.form-grid { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; gap: 24px; }
.field { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 16px; letter-spacing: 0.288px; text-transform: uppercase; opacity: 0.8; }
.field input, .field textarea {
  background: var(--field); border: 0; padding: 16px; font-family: var(--sans);
  font-size: 18px; color: #000; width: 100%; resize: vertical;
}
.field input { height: 60px; }
.field textarea { min-height: 140px; height: 231px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(0,0,0,0.5); }

.map-img { width: 100%; height: 605px; object-fit: cover; display: block; }

.header_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 30px 0;
}

.header_right .nav-links {
  justify-content: right;
}

.medium_container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-col ul {
  padding: 0;
}

.footer-bottom a {
  color: #fff !important;
  text-decoration: none !important;
}

.footer-bottom a:hover {
  text-decoration: underline !important;
}

.btn {
  border-radius: 0 !important;
}

.client_li {
  height: 100px;
  width: 200px;
  position: relative;
  background: rgba(0, 0, 0, 0.03);
  margin: 0 12px;
}

.client_li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: grayscale(100%);
}

.clients_slider_2 {
  margin-top: 25px;
}

.contact_map {
  position: relative;
  height: 600px;
}

.contact_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-info .v a {
  color: #fff !important;
  text-decoration: none !important;
}

.contact-info .v a:hover {
  text-decoration: underline !important;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 17px 33px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
  background: var(--black); color: var(--white); justify-content: center; width: 100%;
  border: 1px solid #000;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.wpcf7-submit:hover { 
  background: transparent;
  color: #000;
}

.wpcf7-submit svg {
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.wpcf7-submit:hover svg {
  transform: rotate(45deg);
}

.wpcf7-submit svg path {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.wpcf7-submit:hover svg path {
  stroke: #000;
}

.gallery-tab { background: none; border: 0; font-family: var(--sans); }
.gallery-panel[hidden] { display: none; }

.gallery-slider { max-width: 904px; margin: 0 auto; position: relative; padding-bottom: 90px; }

/* photos: one large image per slide */
.photos-slider .slick-slide img { width: 100%; height: 528px; object-fit: cover; display: block; }

/* videos: 3 thumbnails per view, 24px gaps */
.videos-slider .slick-list { margin: 0 -12px; }
.videos-slider .slick-slide { padding: 0 12px; }
.videos-slider .slick-slide > div { display: block; }
.video-thumb { position: relative; display: block; height: 528px; overflow: hidden; cursor: pointer; text-decoration: none; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-thumb:hover img { transform: scale(1.05); }
.video-thumb::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.35); transition: background 0.3s ease; }
.video-thumb:hover::before { background: rgba(0,0,0,0.2); }
.video-thumb .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; z-index: 2; }
.video-thumb .play::after { content: ""; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }
.video-thumb .vlabel { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff; font-family: var(--serif); font-size: 18px; }

/* arrows (override slick-theme defaults) */
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.15); background: #fff; color: #1a1a1a; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,0.12); transition: background 0.2s ease, color 0.2s ease; }
.slider-nav:hover { background: #1a1a1a; color: #fff; }
.slider-nav.prev { left: -24px; } .slider-nav.next { right: -24px; }
.slider-nav svg { width: 16px; height: 16px; }
.slider-nav.slick-disabled { opacity: 0.3; pointer-events: none; }
.slider-nav::before { content: none !important; }

/* dots (override slick-theme to match the thin-bar design) */
.slick-dots { display: flex !important; justify-content: center; gap: 8px; list-style: none; padding: 0; margin: 32px 0 0; position: static; }
.slick-dots li { margin: 0; width: auto; height: auto; }
.slick-dots li button { width: 10px; height: 2px; padding: 0; border: 0; background: rgba(0,0,0,0.1); font-size: 0; line-height: 0; cursor: pointer; transition: width 0.3s ease, background 0.3s ease; }
.slick-dots li button::before { content: none !important; }
.slick-dots li.slick-active button { width: 80px; background: #000; }

/* Isotope grid (page-specific) */
.iso-grid { position: relative; }
.grid-sizer, .iso-item { width: calc((100% - 48px) / 3); }
.gutter-sizer { width: 24px; }
.iso-item { margin-bottom: 24px; }
/* fade items as they filter in/out */
.iso-item { transition: opacity 0.3s ease; }

.card {
  border: none !important;
}

/* ---- Hero slider (page-specific) ---- */
.hero--tall { min-height: 935px; }
.hero::after { display: none; }                 /* overlay is per-slide now */
.hero > .hero-slider { position: absolute; inset: 0; z-index: 0; }

.hero-slider, .hero-slider .slick-list, .hero-slider .slick-track { height: 100%; }
.hero-slider .slick-slide { height: 935px; display: flex !important; align-items: flex-end; position: relative; }
.hero-slide { background-size: cover; background-position: center; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 0; }
.hero-slide .hero-copy { position: relative; z-index: 2; }

/* hero slider dots — thin bars, bottom-right (matches Figma) */
.hero-slider .slick-dots { position: absolute; right: 80px; bottom: 110px; left: auto; width: auto; display: flex !important; gap: 8px; margin: 0; padding: 0; z-index: 3; }
.hero-slider .slick-dots li { width: auto; height: auto; margin: 0; }
.hero-slider .slick-dots li button { width: 10px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,0.3); font-size: 0; line-height: 0; cursor: pointer; transition: width 0.3s ease, background 0.3s ease; }
.hero-slider .slick-dots li button::before { content: none !important; }
.hero-slider .slick-dots li.slick-active button { width: 80px; background: #fff; }

.cta-band .inner {
  position: relative;
  z-index: 1;
}

.cta-band {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.cta-band a svg path, .hero-copy a svg path {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.cta-band a:hover svg path, .hero-copy a:hover svg path {
  stroke: #fff;
}

.cta-band a svg, .hero-copy a svg {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.cta-band a:hover svg, .hero-copy a:hover svg {
  transform: rotate(45deg);
}

.hero_copy_inner {
  width: 750px;
  max-width: 100%;
}

.hero_copy_inner .hero-title {
  margin-bottom: 70px;
}

.home_projects_link {
  padding: 0;
  border: none;
}

.home_projects_link svg path {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.home_projects_link:hover svg path {
  stroke: rgb(26, 26, 26);
}

.home_projects_link svg {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.home_projects_link:hover svg {
  transform: rotate(45deg);
}

.stat b span {
  font-size: inherit;
  line-height: inherit;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: #0c0c0c; color: #fff;
  display: flex; flex-direction: column;
  padding: 24px var(--pad) 48px;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.35s ease, visibility 0s linear 0.35s;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; transition: transform 0.35s ease; }
body.menu-open { overflow: hidden; }

.mm-top { display: flex; align-items: center; justify-content: space-between; min-height: 40px; }
.mm-top .logo { color: #fff; }
.mm-close { background: none; border: 0; color: #fff; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-right: -8px; }
.mm-close svg { width: 26px; height: 26px; }

.mm-links { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }
.mm-links a {
  color: #fff; text-decoration: none; font-family: var(--serif);
  font-size: 30px; line-height: 1.5; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 0;
  transition: opacity 0.2s ease;
}
.mm-links a:hover { opacity: 0.7; }
.mm-links a.active { color: rgba(255,255,255,0.55); }

.mm-social { margin-top: auto; padding-top: 32px; }
.mm-social .mm-social-label { font-weight: 700; font-size: 14px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.mm-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mm-links ul li {
  display: block;
}

.mm-links ul li a {
  display: block;
}

.animate-text{
    transition:transform 0.7s 0s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.7s 0s;
    transform:translateY(30px);
    opacity:0
}

.animate-button {
  transition:transform 0.7s 0s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.7s 0s, color 0.25s ease-out 0s, background-color 0.25s ease-out 0s !important;
}

.animate-button-second {
  transition:transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.3s, opacity 0.7s 0.3s, color 0.25s ease-out 0s, background-color 0.25s ease-out 0s !important;
}

.animate-button-third {
  transition:transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.6s, opacity 0.7s 0.6s, color 0.25s ease-out 0s, background-color 0.25s ease-out 0s !important;
}

.animate-button-fourth {
  transition:transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.9s, opacity 0.7s ease-out 0.9s, color 0.25s ease-out 0s, background 0.25s ease-out 0s !important;
}

.animate-text.from-left{
    transition:transform 0.7s 0s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.7s 0s;
    transform:translateX(-100px);
    opacity:0
}

.animate-text.from-right{
    transition:transform 0.7s 0s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.7s 0s;
    transform:translateX(100px);
    opacity:0
}

.animate-text.loaded-text{
    transform:translateY(0);
    opacity:1
}

.animate-text.from-left.loaded-text{
    transform:translateX(0);
    opacity:1
}

.animate-text.animate-second{
    transition-delay:0.3s
}

.animate-text.animate-third{
    transition-delay:0.6s
}

.animate-text.animate-fourth{
    transition-delay:0.9s
}

.no-anim-text .animate-text{
    transform:translateY(0);
    opacity:1
}

.img-bg-wrapper{
    display:block;
    position:relative;
    z-index:1;
    overflow:hidden;
    transform-origin:50% 50%;
    transform:translateX(-200px) skew(50deg);
    overflow:hidden;
    transition:transform 1s cubic-bezier(0.77, 0, 0.175, 1)
}

.img-bg-wrapper .img-bg-inner{
    height:100%;
    width:100%;
    display:block;
    transition:opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    opacity:0;
    transform:translateX(300px) translateZ(0) skew(-50deg);
    transform-origin:center center;
    position:absolute;
    top:0
}

.img-bg-wrapper.img-bg-loaded{
    transform:translateX(0)
}

.img-bg-wrapper.img-bg-loaded .img-bg-inner{
    transform:translateX(0);
    opacity:1
}

.img-wrapper{
    display:block;
    position:relative;
    z-index:1;
    overflow:hidden;
    transform-origin:50% 50%;
    transform:translateX(-200px) skew(50deg);
    overflow:hidden;
    transition:transform 1s cubic-bezier(0.77, 0, 0.175, 1)
}

.img-wrapper img:first-child{
    transition:opacity 1s cubic-bezier(0.77, 0, 0.175, 1), transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    opacity:0;
    transform:translateX(300px) translateZ(0) skew(-50deg);
    transform-origin:center center
}

.img-wrapper.loaded-img{
    transform:translateX(0)
}

.img-wrapper.loaded-img img:first-child{
    transform:translateX(0);
    opacity:1
}

.home_about_button_wrap {
  width: 100%;
  justify-content: end;
  display: flex;
}

.home_works_wrap {
  background: #F6F6F6;
  width: 100% !important;
  margin: 0;
  max-width: 100% !important;
}

.about_1_left {
  width: calc(100% - 930px);
}

.footer-cta a svg path {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.footer-cta a svg {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.footer-cta a:hover svg path {
  stroke: #fff;
}

.footer-cta a:hover svg {
  transform: rotate(45deg);
}

.careers a svg path, .careers a svg {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.careers a:hover svg {
  transform: rotate(45deg);
}

.careers a:hover svg path {
  stroke: #000;
}

.card-img {
  border-radius: 0 !important;
}

.fixed_header_wrap {
  background: #000;
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 25px 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.fixed_header_active .fixed_header_wrap {
  top: 0;
}

/**
 * Preloader
 */
:root {
  --ppi-bg: #262626;          /* charcoal so the dark slash reads */
  --ppi-glow-color: 255,255,255;
  --ppi-logo-width: min(82vw, 760px);
  --logo-w:min(90vw,820px);
  --logo-scale:1.8;
}

.ppi-preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--ppi-bg);
  opacity: 1; transition: opacity .8s ease;
}
.ppi-preloader.is-hidden { opacity: 0; pointer-events: none; }

/* glow wrapper: recreates the render-time bloom the JSON does not carry */
.ppi-glow {
  width: var(--ppi-logo-width);
  aspect-ratio: 16 / 9;
  animation: ppi-glow 3.73s linear forwards;  /* matches the 6s animation */
  will-change: filter;
  transform:scale(var(--logo-scale));
}
.ppi-glow > svg { display: block; width: 100%; height: 100%; }

.ppi-glow > svg:nth-child(2) {
	display: none !important;
}

@keyframes ppi-glow {
  0%   { filter: drop-shadow(0 0 0 rgba(var(--ppi-glow-color), 0)); }
  16%  { filter: drop-shadow(0 0 4px rgba(var(--ppi-glow-color), .85))
                 drop-shadow(0 0 13px rgba(var(--ppi-glow-color), .45)); }
  42%  { filter: drop-shadow(0 0 3px rgba(var(--ppi-glow-color), .6))
                 drop-shadow(0 0 10px rgba(var(--ppi-glow-color), .28)); }
  72%  { filter: drop-shadow(0 0 2px rgba(var(--ppi-glow-color), .22)); }
  100% { filter: drop-shadow(0 0 0 rgba(var(--ppi-glow-color), 0)); }
}

@media (prefers-reduced-motion: reduce) {
  .ppi-glow { animation: none; filter: none; }
}

/*:root{
  --bg:#262626;
  --ink:#ececec;
  --ink-soft:#b7b6b7;
  --label:#7e7e7e;
  --glow:255,255,255;
  --logo-w:min(90vw,820px);
  --logo-scale:1.8;
}
.ppi-glow{
  width:var(--logo-w);aspect-ratio:16/9;
  transform:scale(var(--logo-scale));
  animation:glow 3.73s linear infinite;will-change:filter,transform;
}
.ppi-glow>svg{display:block;width:100%;height:100%;}*/



/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  :root { --pad: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 56px; }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: #0c0c0c; flex-direction: column; gap: 28px;
    padding: 110px 32px 32px; transform: translateX(100%);
    transition: transform 0.3s ease; margin: 0;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-toggle { display: block; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .split { flex-direction: column; gap: 24px; }
  .detail-top { flex-direction: column; }
  .careers { flex-direction: column; }
  .careers .intro { width: 100%; }
  .contact-inner { flex-direction: column; }
  .footer-cta, .cta-band h2 { flex-direction: column; }
  .footer-cta { gap: 32px; }
}
@media (max-width: 680px) {
  :root { --pad: 24px; }
  .hero-title { font-size: 40px; }
  .hero--tall .hero-title { font-size: 44px; }
  .section { padding: 64px 0; }
  .proj-grid, .svc-grid, .roles, .markets-grid, .values-grid, .form-row { grid-template-columns: 1fr; display: grid; }
  .form-row { display: flex; flex-direction: column; }
  .stats-inner { gap: 28px; }
  .cta-band h2, .footer-cta h2, .cta-band { font-size: 36px; }
  .cta-band h2 { font-size: 36px; }
  .footer-cta h2 { font-size: 34px; }
  .facts { flex-direction: column; }
  .facts .div { width: 100%; height: 1px; }
  .gallery-stage { height: 300px; }
}
@media (max-width: 980px) { .slider-nav.prev { left: 8px; } .slider-nav.next { right: 8px; } }
@media (max-width: 680px) {
  .photos-slider .slick-slide img { height: 300px; }
  .video-thumb { height: 240px; }
}

@media (max-width: 980px) {
  .grid-sizer, .iso-item { width: calc((100% - 24px) / 2); }
}
@media (max-width: 680px) {
  .grid-sizer, .iso-item { width: 100%;
}

@media (max-width: 980px) {
  .hero--tall { min-height: 680px; }
  .hero-slider .slick-slide { height: 680px; }
  .hero-slider .slick-dots { right: 40px; bottom: 90px; }
}
@media (max-width: 680px) {
  .hero--tall { min-height: 560px; }
  .hero-slider .slick-slide { height: 560px; }
  .hero-slider .slick-dots { right: 24px; bottom: 70px; }
}

/* never show the overlay on desktop */
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}