:root {
  --black: #070807;
  --black-2: #0c0d0c;
  --ink: #11110f;
  --cream: #f4f1ec;
  --cream-2: #ebe5dd;
  --white: #fff;
  --gold: #cda06b;
  --gold-2: #e2bd8a;
  --muted: #b9b4ad;
  --line: rgba(255,255,255,.13);
  --line-dark: rgba(0,0,0,.12);
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope",sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.light {
  background: var(--cream);
  color: var(--ink);
}

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

img {
  display: block;
  width: 100%;
}

button {
  font: inherit;
}

/* CUSTOM SCROLLBAR */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0b0c0b;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: #0b0c0b;
}

::-webkit-scrollbar-thumb {
  min-height: 72px;
  border: 2px solid #0b0c0b;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 52%, #a97847);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #efd2aa, #d7aa76 52%, #b98552);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: #0b0c0b;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg,rgba(5,6,5,.82),rgba(5,6,5,.42),transparent);
}

body.light .site-header {
  position: sticky;
  background: rgba(244,241,236,.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-dark);
}

.header-inner {
  width: min(var(--max),calc(100vw - 72px));
  height: 98px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}

.brand-logo {
  width: 50px;
  height: 58px;
  display: grid;
  place-items: center;
}

.brand-logo img {
  width: 48px;
  height: 48px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 10px;
  line-height: 1;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: #d6d0c7;
}

body.light .brand-sub {
  color: #6c6257;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #eee8e1;
}

body.light .main-nav a {
  color: #554e46;
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .25s;
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

.main-nav a.active {
  color: #fff;
}

body.light .main-nav a.active {
  color: #111;
}

.header-cta {
  margin-left: 16px;
  border: 1px solid rgba(205,160,107,.72);
  height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e9c89e;
  transition: .25s;
}

.header-cta:hover {
  background: var(--gold);
  color: #111;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(7,8,7,.52);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.menu-toggle:hover {
  border-color: rgba(205,160,107,.65);
}

body.light .menu-toggle {
  border-color: rgba(255,255,255,.16);
  color: #fff;
  background: rgba(7,8,7,.52);
}

body.nav-open .menu-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: rotate(90deg);
}

.mobile-nav {
  display: block;
  position: fixed;
  z-index: 79;
  top: 90px;
  left: 14px;
  right: 14px;
  padding: 9px;
  border: 1px solid rgba(205,160,107,.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg,rgba(18,19,17,.98),rgba(8,9,8,.985));
  box-shadow:
    0 28px 70px rgba(0,0,0,.52),
    inset 0 1px 0 rgba(255,255,255,.045);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px) scale(.985);
  transform-origin: top center;
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.mobile-nav::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 10px 7px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity: .55;
}

.mobile-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  color: #f5f1eb !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, padding .2s ease;
}

.mobile-nav a + a {
  margin-top: 3px;
}

.mobile-nav a::after {
  content: "→";
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 400;
  opacity: .35;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  padding-left: 20px;
  color: #fff !important;
  background: linear-gradient(90deg,rgba(205,160,107,.16),rgba(205,160,107,.035));
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav a.active {
  box-shadow: inset 2px 0 0 var(--gold);
}

body.light .mobile-nav,
body.light.has-page-hero .mobile-nav {
  color: #fff;
  background:
    linear-gradient(180deg,rgba(18,19,17,.98),rgba(8,9,8,.985));
  border-color: rgba(205,160,107,.22);
}

body.light .mobile-nav a,
body.light.has-page-hero .mobile-nav a {
  color: #f5f1eb !important;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* HOME HERO */
.home-hero {
  position: relative;
  min-height: 680px;
  height: min(78vh,800px);
  display: flex;
  align-items: center;
  background: #0a0b0a;
  overflow: hidden;
}

.home-hero-media {
  position: absolute;
  inset: 0;
}

.home-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.9) contrast(1.02);
}

.home-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(5,6,5,.96) 0%,rgba(5,6,5,.87) 26%,rgba(5,6,5,.48) 49%,rgba(5,6,5,.13) 72%,rgba(5,6,5,.18) 100%),linear-gradient(180deg,rgba(0,0,0,.25),transparent 40%,rgba(0,0,0,.18));
}

.home-hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--max),calc(100vw - 144px));
  margin: 72px auto 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.kicker:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.home-hero h1 {
  font-family: "Bebas Neue",sans-serif;
  font-size: clamp(58px,6vw,102px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: .005em;
  margin: 24px 0 24px;
  max-width: 620px;
  text-transform: uppercase;
}

.home-hero p {
  max-width: 520px;
  margin: 0;
  color: #e0ddd9;
  font-size: 16px;
  line-height: 1.6;
}

.hero-button {
  margin-top: 32px;
  width: 180px;
  height: 48px;
  border: 1px solid rgba(205,160,107,.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ead0ad;
  transition: .25s;
}

.hero-button:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

/* BENEFITS */
.benefit-strip {
  background: #0a0b0a;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.benefit-grid {
  width: min(var(--max),calc(100vw - 72px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 26px 0;
}

.benefit {
  position: relative;
  text-align: center;
  padding: 4px 34px;
}

.benefit:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255,255,255,.18);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  color: var(--gold-2);
}

.benefit strong {
  display: block;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.benefit span {
  display: block;
  color: #c0bbb5;
  font-size: 10px;
  line-height: 1.55;
  max-width: 230px;
  margin: auto;
}

/* WORKS STRIP */
.works-strip {
  background: var(--cream);
  color: var(--ink);
  padding: 42px 0 34px;
}

.works-inner {
  width: min(var(--max),calc(100vw - 72px));
  margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr 80px;
  gap: 30px;
  align-items: center;
}

.works-heading .small {
  display: block;
  color: #af8457;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.works-heading h2 {
  font-family: "Bebas Neue",sans-serif;
  font-size: 54px;
  line-height: .95;
  font-weight: 400;
  margin: 0 0 22px;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.outline-btn {
  height: 46px;
  padding: 0 20px;
  border: 1px solid #8f8982;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: .25s;
}

.outline-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.project-row {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1.58/1;
  background: #222;
}

.project-tile img {
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.project-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 45%,rgba(0,0,0,.72));
}

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

.project-tile-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 14px;
  color: #fff;
}

.project-tile-copy strong {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-tile-copy span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d8d3cc;
}

.project-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid #b9956d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #9c754d;
  margin: auto;
  transition: .25s;
}

.project-arrow:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* CTA BAR */
.cta-bar {
  background: #0a0b0a;
  padding: 26px 0;
}

.cta-inner {
  width: min(1100px,calc(100vw - 72px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr .7fr;
  align-items: center;
  gap: 36px;
}

.cta-title {
  font-family: "Bebas Neue",sans-serif;
  font-size: 30px;
  letter-spacing: .015em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.18);
  padding-right: 36px;
}

.cta-title span {
  color: var(--gold);
}

.cta-inner p {
  font-size: 12px;
  color: #d2ccc6;
  margin: 0;
}

/* GENERIC PAGES */
body.has-page-hero .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(5, 6, 5, .84), rgba(5, 6, 5, .48), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

body.light.has-page-hero .site-header {
  position: absolute;
  background: linear-gradient(180deg, rgba(5, 6, 5, .84), rgba(5, 6, 5, .48), transparent);
  backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, .06);
}

body.light.has-page-hero .main-nav a {
  color: #eee8e1;
}

body.light.has-page-hero .main-nav a.active {
  color: #fff;
}

body.has-page-hero .brand-name,
body.light.has-page-hero .brand-name {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

body.has-page-hero .brand-sub,
body.light.has-page-hero .brand-sub {
  color: #d6d0c7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

body.light.has-page-hero .menu-toggle {
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
  background: rgba(0, 0, 0, .25);
}

body.light.has-page-hero .mobile-nav {
  background: #0c0d0c;
  border-color: rgba(255, 255, 255, .1);
}

.page-head {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background: #0b0c0b;
  color: #fff;
  overflow: hidden;
}

.page-head-media {
  position: absolute;
  inset: 0;
}

.page-head-media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.94) contrast(1.02);
}

.page-head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 5, .9) 0%, rgba(5, 6, 5, .76) 38%, rgba(5, 6, 5, .38) 68%, rgba(5, 6, 5, .18) 100%),
    linear-gradient(180deg, rgba(5, 6, 5, .68), rgba(5, 6, 5, .22) 25%, rgba(5, 6, 5, .7) 100%);
}

.page-head-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 72px));
  margin: auto;
  padding: 182px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 30px;
  align-items: end;
}

.page-head-copy {
  max-width: 680px;
}

.page-head h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(68px, 8vw, 128px);
  font-weight: 400;
  line-height: .88;
  margin: 18px 0 18px;
  text-transform: uppercase;
  max-width: 700px;
}

.page-head p {
  color: #d5cfc8;
  max-width: 620px;
  line-height: 1.75;
  font-size: 16px;
}

.page-head .hero-button {
  margin-top: 28px;
}

.section {
  padding: 72px 0;
}

.wide {
  width: min(var(--max), calc(100vw - 72px));
  margin: auto;
}

.content {
  width: min(1180px, calc(100vw - 72px));
  margin: auto;
}

.section-kicker {
  color: #ad8052;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .95;
  margin: 12px 0 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.section-lead {
  max-width: 760px;
  color: #665e56;
  line-height: 1.7;
}

body:not(.light) .section-lead {
  color: #bdb6ae;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.service-card,
.info-card,
.contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 28px;
  min-height: 220px;
  box-shadow: 0 14px 34px rgba(25,18,12,.05);
}

body:not(.light) .service-card,
body:not(.light) .info-card,
body:not(.light) .contact-card {
  background: #111210;
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}

.card-index {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(205,160,107,.55);
  display: grid;
  place-items: center;
  color: #a87949;
  font-weight: 800;
  font-size: 11px;
}

.service-card h3,
.info-card h3,
.contact-card h3 {
  font-family: "Bebas Neue",sans-serif;
  font-size: 30px;
  letter-spacing: .02em;
  font-weight: 400;
  margin: 18px 0 10px;
  text-transform: uppercase;
}

.service-card p,
.info-card p,
.contact-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #6d655d;
}

body:not(.light) .service-card p,
body:not(.light) .info-card p,
body:not(.light) .contact-card p {
  color: #bcb5ad;
}

/* GALLERY */
.gallery-tools {
  padding: 28px 0 18px;
  background: var(--cream);
}

.filter-bar {
  width: min(var(--max),calc(100vw - 72px));
  margin: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  height: 42px;
  padding: 0 18px;
  border: 1px solid #b7afa7;
  background: transparent;
  color: #514b45;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.projects-section {
  background: var(--cream);
  padding: 0 0 64px;
}

.projects-grid {
  width: min(var(--max),calc(100vw - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
}

.project-card {
  background: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: .25s;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.project-card figure {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ddd;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-info {
  padding: 14px 14px 16px;
}

.project-tag {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9b7048;
}

.project-info h3 {
  font-family: "Bebas Neue",sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 6px 0 4px;
  text-transform: uppercase;
}

.project-info p {
  font-size: 11px;
  line-height: 1.5;
  color: #766f68;
  margin: 0;
}

.project-empty {
  display: none;
  width: min(var(--max),calc(100vw - 72px));
  margin: 20px auto;
  color: #6d655d;
}

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

.lightbox.open {
  display: flex;
}

.lightbox-dialog {
  width: min(1500px,calc(100vw - 48px));
  position: relative;
}

.lightbox-stage {
  background: #080808;
  min-height: 300px;
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  width: 100%;
  max-height: calc(100vh - 145px);
  object-fit: contain;
}

.lightbox-meta {
  padding-top: 14px;
  color: #fff;
}

.lightbox-meta strong {
  font-family: "Bebas Neue",sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.lightbox-meta span {
  display: block;
  color: #aaa59f;
  font-size: 12px;
  margin-top: 3px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.58);
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  font-size: 22px;
  display: grid;
  place-items: center;
}

.lightbox-close {
  right: 14px;
  top: 14px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow.prev {
  left: 14px;
}

.lightbox-arrow.next {
  right: 14px;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.contact-image {
  min-height: 560px;
  overflow: hidden;
}

.contact-image img {
  height: 100%;
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-line strong {
  display: block;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #a77b50;
  margin-bottom: 4px;
}

.contact-line a,
.contact-line span {
  font-size: 16px;
}

.quick {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* FOOTER */
.site-footer {
  background: #080908;
  color: #c7c1ba;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
}

.footer-inner {
  width: min(var(--max),calc(100vw - 72px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 10px;
  color: #817b75;
}

.float-call {
  display: none;
  position: fixed;
  z-index: 70;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  place-items: center;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease,transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width:1200px) {
  .header-inner,
  .home-hero-inner,
  .benefit-grid,
  .works-inner,
  .page-head-inner,
  .wide,
  .content,
  .filter-bar,
  .footer-inner {
    width: calc(100vw - 40px);
  }

  .main-nav {
    gap: 22px;
  }

  .header-cta {
    display: none;
  }

  .works-inner {
    grid-template-columns: 240px 1fr;
  }

  .project-arrow {
    display: none;
  }

  .page-head {
    min-height: 68vh;
  }

  .page-head-inner {
    width: calc(100vw - 40px);
    padding: 165px 0 64px;
  }

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

@media (max-width:900px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero {
    min-height: 760px;
    height: auto;
  }

  .home-hero-inner {
    padding: 155px 0 74px;
    margin-top: 0;
  }

  .home-hero-media img {
    object-position: 62% center;
  }

  .home-hero-media:after {
    background: linear-gradient(90deg,rgba(5,6,5,.95),rgba(5,6,5,.72) 56%,rgba(5,6,5,.35));
  }

  .home-hero h1 {
    max-width: 560px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2,1fr);
    row-gap: 20px;
  }

  .benefit:nth-child(2):after {
    display: none;
  }

  .works-inner {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    width: calc(100vw - 40px);
    grid-template-columns: 1fr;
  }

  .cta-title {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
    padding: 0 0 18px;
  }

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

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

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

  body.light .site-header {
    position: sticky;
  }
}

@media (max-width:620px) {
  .header-inner {
    height: 78px;
    width: calc(100vw - 24px);
  }

  .brand-logo {
    width: 42px;
  }

  .brand-logo img {
    width: 40px;
  }

  .brand-name {
    font-size: 14px;
    letter-spacing: .15em;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: .25em;
  }

  .mobile-nav {
    top: 86px;
    left: 12px;
    right: 12px;
    border-radius: 20px;
  }

  .mobile-nav a {
    min-height: 52px;
    font-size: 10px;
  }

  .home-hero-inner {
    width: calc(100vw - 28px);
    padding-top: 130px;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero h1 {
    font-size: 61px;
  }

  .home-hero p {
    font-size: 14px;
  }

  .home-hero-media img {
    object-position: 70% center;
  }

  .home-hero-media:after {
    background: linear-gradient(90deg,rgba(5,6,5,.98),rgba(5,6,5,.82) 58%,rgba(5,6,5,.45));
  }

  .benefit-grid {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .benefit {
    padding: 16px 10px;
  }

  .benefit:not(:last-child):after {
    right: 10%;
    left: 10%;
    bottom: 0;
    top: auto;
    width: auto;
    height: 1px;
  }

  .benefit:nth-child(2):after {
    display: block;
  }

  .works-inner {
    width: calc(100vw - 24px);
  }

  .works-heading h2 {
    font-size: 46px;
  }

  .project-row {
    grid-template-columns: 1fr;
  }

  .project-tile {
    aspect-ratio: 1.55/1;
  }

  .page-head {
    min-height: 560px;
  }

  .page-head-inner,
  .wide,
  .content,
  .filter-bar,
  .footer-inner {
    width: calc(100vw - 24px);
  }

  .page-head-inner {
    padding: 132px 0 42px;
  }

  .page-head h1 {
    font-size: 64px;
  }

  .page-head p {
    font-size: 14px;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    width: calc(100vw - 16px);
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .project-info {
    padding: 10px;
  }

  .project-info h3 {
    font-size: 20px;
  }

  .project-info p {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .float-call {
    display: grid;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    width: calc(100vw - 20px);
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
  }
}
