:root{
  --bg:#050505;
  --panel:rgba(0,0,0,.30);
  --stroke:rgba(255,255,255,.10);
  --stroke-strong:rgba(255,255,255,.18);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted-2:rgba(255,255,255,.56);
  --copper:#C98B4B;
  --copper-soft:rgba(201,139,75,.10);
  --copper-glow:rgba(201,139,75,.34);
  --shadow:0 18px 50px rgba(0,0,0,.18);
  --nav-h:68px;
  --max:1440px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

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

body.modal-open{ overflow:hidden; }

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

a{ color:inherit; }
button,input,select,textarea{ font:inherit; }

/* LOADER */
#site-loader{
  position:fixed;
  inset:0;
  background:#050505;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
  transition:opacity .55s ease, visibility .55s ease;
}

#site-loader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.loader-mark{
  font-family: Georgia, "Times New Roman", serif;
  font-size:60px;
  line-height:1;
  letter-spacing:.02em;
  color:var(--copper);
  opacity:.92;
  text-shadow:0 0 24px rgba(201,139,75,.18);
  animation:loaderPulse 1.7s ease-in-out infinite;
}

@keyframes loaderPulse{
  0%{ opacity:.62; transform:scale(.97); }
  50%{ opacity:1; transform:scale(1); }
  100%{ opacity:.62; transform:scale(.97); }
}

/* PROGRESS */
#scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:0%;
  height:3px;
  background:linear-gradient(90deg,#C98B4B,#e0a35a,#C98B4B);
  box-shadow:0 0 10px rgba(201,139,75,.6);
  z-index:9999;
  pointer-events:none;
  transition:width .08s linear;
}

/* BACKGROUND */
.grid{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:60px 60px;
  z-index:-2;
  pointer-events:none;
}

canvas#particles{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  pointer-events:none;
}

/* NAV */
.nav{
  position:fixed;
  top:12px;
  left:12px;
  right:12px;
  z-index:50;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px;
  border-radius:999px;
  background:rgba(0,0,0,.34);
  border:1px solid var(--stroke);
  backdrop-filter:blur(10px);
}

.nav-left{
  display:flex;
  align-items:center;
  min-width:120px;
}

.brand-pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

.nav-links a{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  white-space:nowrap;
  transition:.25s;
}

.nav-links a:hover{
  border-color:rgba(255,255,255,.22);
  transform:translateY(-1px);
}

.nav-social{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:110px;
  justify-content:flex-end;
}

.icon-btn{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  transition:.25s;
  text-decoration:none;
  color:inherit;
}

.icon-btn:hover{
  border-color:rgba(255,255,255,.20);
  transform:translateY(-1px);
}

.icon{
  width:18px;
  height:18px;
  opacity:.9;
}

/* GLOW */
.glow-panel{
  position:relative;
  overflow:hidden;
}

.glow-panel::after{
  content:"";
  position:absolute;
  inset:-30%;
  background:radial-gradient(380px 220px at var(--gx, 50%) var(--gy, 50%), rgba(201,139,75,.16), transparent 55%);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
  mix-blend-mode:screen;
}

.glow-panel:hover::after{
  opacity:1;
}

/* HERO */
.hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  perspective:900px;
  transform-style:preserve-3d;
  padding:calc(var(--nav-h) + 28px) 18px 28px;
}

.hero-layer{
  position:absolute;
  inset:0;
  pointer-events:none;
  transform:translate3d(0,0,0);
  will-change:transform;
  z-index:1;
}

.layer-glow{
  background:
    radial-gradient(600px 380px at 50% 35%, rgba(140,200,255,.16), transparent 60%),
    radial-gradient(500px 320px at 20% 70%, rgba(120,255,210,.09), transparent 60%);
  mix-blend-mode:screen;
  opacity:.9;
  filter:blur(1px);
}

.hero-halo{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(circle, rgba(255,255,255,.12), rgba(255,255,255,0) 60%);
  mix-blend-mode:screen;
  transform:translate(-50%,-50%);
  z-index:1;
  opacity:0;
  transition:opacity .25s ease;
}

.hero-content{
  position:relative;
  z-index:2;
  padding:28px 26px;
  border-radius:20px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  max-width:min(980px, calc(100vw - 28px));
}

.hero h1{
  font-size:70px;
  letter-spacing:6px;
  margin:0 0 12px 0;
  line-height:1.05;
}

.hero p{
  margin:10px 0 0 0;
  font-size:20px;
  opacity:.88;
  line-height:1.35;
}

.sub{
  opacity:.65;
  margin-top:10px !important;
  font-size:16px !important;
}

.perception{
  background:linear-gradient(90deg, #ffffff, #9fd6ff, #a7ffe1, #ffffff);
  background-size:300% 300%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:perceptionGlow 8s ease infinite;
}

@keyframes perceptionGlow{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

.hero-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  transition:.25s;
  cursor:pointer;
  color:inherit;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.22);
}

.btn.primary{
  border-color:rgba(201,139,75,.60);
  background:rgba(201,139,75,.05);
  box-shadow:0 0 0 1px rgba(201,139,75,.14), 0 12px 40px rgba(201,139,75,.08);
}

.btn.primary:hover{
  box-shadow:0 0 0 1px rgba(201,139,75,.24), 0 18px 55px rgba(201,139,75,.12);
}

.scroll-chip{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  text-decoration:none;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.9;
}

.scroll-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--copper);
  box-shadow:0 0 18px var(--copper-glow);
}

/* SECTION */
.section{
  padding:110px 20px;
  max-width:var(--max);
  margin:auto;
  position:relative;
  z-index:2;
}

.section h2{
  font-size:42px;
  margin:0 0 14px 0;
  letter-spacing:.02em;
  line-height:1.05;
}

.section p{
  margin:0 0 14px 0;
  opacity:.7;
  line-height:1.55;
}

.section-sub{
  opacity:.65;
  margin:0;
  max-width:58ch;
  line-height:1.5;
}

.panel{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:var(--panel);
  padding:22px;
  backdrop-filter:blur(10px);
}

.philosophy{ padding-top:30px; }
.philosophy-title{
  font-size:20px !important;
  margin-bottom:12px !important;
  letter-spacing:.02em;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}

.service-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:var(--panel);
  padding:22px;
  min-height:250px;
  backdrop-filter:blur(10px);
  display:flex;
  flex-direction:column;
}

.service-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  opacity:.9;
}

.num{
  font-size:12px;
  opacity:.55;
  letter-spacing:.12em;
}

.service-title{
  font-size:18px;
  margin:14px 0 8px 0;
}

.service-desc{
  font-size:14px;
  opacity:.72;
  line-height:1.45;
  margin:0 0 14px 0;
}

.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tag{
  padding:7px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  font-size:11px;
  opacity:.75;
}

.service-cta{
  margin-top:auto;
  padding-top:16px;
}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-top:22px;
}

.process-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.26);
  padding:20px;
  backdrop-filter:blur(10px);
}

.process-num{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.5;
  margin-bottom:10px;
}

.process-title{
  font-size:18px;
  margin:0 0 8px 0;
}

.process-desc{
  font-size:14px;
  line-height:1.5;
  opacity:.72;
  margin:0;
}

/* STRIP */
.strip{ padding-top:20px; }

.strip-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.strip-actions{
  display:flex;
  gap:10px;
}

.strip-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:.2s;
  appearance:none;
  -webkit-appearance:none;
}

.strip-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(201,139,75,.55);
}

.strip-btn span{
  font-size:18px;
  line-height:1;
}

.strip-track{
  display:flex;
  gap:14px;
  overflow:auto;
  padding:14px 4px 4px 4px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.strip-track::-webkit-scrollbar{ height:8px; }

.strip-track::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.12);
  border-radius:999px;
}

.strip-item{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:min(360px, 76vw);
  aspect-ratio:4/5;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  position:relative;
  transition:transform .25s ease, border-color .25s ease;
  isolation:isolate;
  text-decoration:none;
}

.strip-item:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.18);
}

.strip-media{
  position:absolute;
  inset:0;
}

.strip-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
}

.strip-caption{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  opacity:.92;
  z-index:3;
}

/* FOCUS */
.focus-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  opacity:0;
  transition:opacity .26s ease;
}

.focus-overlay::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  opacity:.82;
}

.focus-overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(var(--copper), var(--copper)) left 18px top 18px / 26px 1.5px no-repeat,
    linear-gradient(var(--copper), var(--copper)) left 18px top 18px / 1.5px 26px no-repeat,
    linear-gradient(var(--copper), var(--copper)) right 18px top 18px / 26px 1.5px no-repeat,
    linear-gradient(var(--copper), var(--copper)) right 18px top 18px / 1.5px 26px no-repeat,
    linear-gradient(var(--copper), var(--copper)) left 18px bottom 18px / 26px 1.5px no-repeat,
    linear-gradient(var(--copper), var(--copper)) left 18px bottom 18px / 1.5px 26px no-repeat,
    linear-gradient(var(--copper), var(--copper)) right 18px bottom 18px / 26px 1.5px no-repeat,
    linear-gradient(var(--copper), var(--copper)) right 18px bottom 18px / 1.5px 26px no-repeat;
  opacity:.94;
}

.focus-crosshair{
  position:absolute;
  top:50%;
  left:50%;
  width:66px;
  height:66px;
  transform:translate(-50%,-50%) scale(.92);
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  transition:transform .28s ease;
  opacity:.92;
}

.focus-crosshair::before,
.focus-crosshair::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  background:rgba(255,255,255,.78);
  transform:translate(-50%,-50%);
}

.focus-crosshair::before{
  width:1.5px;
  height:24px;
}

.focus-crosshair::after{
  width:24px;
  height:1.5px;
}

.focus-dot{
  position:absolute;
  top:50%;
  left:50%;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--copper);
  box-shadow:0 0 16px var(--copper-glow);
  transform:translate(-50%,-50%);
}

.strip-item:hover .focus-overlay,
.work-card.headshot-card:hover .focus-overlay,
.strip-item.focus-active .focus-overlay,
.work-card.headshot-card.focus-active .focus-overlay{
  opacity:1;
}

.strip-item:hover .focus-crosshair,
.work-card.headshot-card:hover .focus-crosshair,
.strip-item.focus-active .focus-crosshair,
.work-card.headshot-card.focus-active .focus-crosshair{
  transform:translate(-50%,-50%) scale(1);
}

/* WORK */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.work-filters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.filter-btn{
  cursor:pointer;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  opacity:.9;
  color:inherit;
}

.filter-btn.active{
  border-color:rgba(201,139,75,.60);
  background:rgba(201,139,75,.05);
}

.work-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}

.work-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  text-decoration:none;
  color:inherit;
  min-height:320px;
  grid-column:span 6;
  transition:transform .35s cubic-bezier(.16,1,.3,1), border-color .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);
  isolation:isolate;
}

.work-card:hover{
  transform:translateY(-6px);
  border-color:var(--stroke-strong);
  box-shadow:var(--shadow);
}

.work-card.is-feature{
  grid-column:span 7;
  min-height:400px;
}

.work-card.is-secondary{
  grid-column:span 5;
  min-height:400px;
}

.work-card.is-wide{
  grid-column:span 12;
  min-height:360px;
}

.work-card.is-standard{
  grid-column:span 6;
  min-height:320px;
}

.work-media{
  position:absolute;
  inset:0;
}

.work-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.02);
  transition:transform .6s cubic-bezier(.16,1,.3,1);
  filter:contrast(1.05) saturate(1.08);
}

.work-card:hover .work-media img{
  transform:scale(1.08);
}

.work-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(600px 300px at var(--mx, 50%) var(--my, 40%), rgba(255,255,255,.14), transparent 55%);
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
  mix-blend-mode:screen;
}

.work-card:hover::before{ opacity:1; }

.work-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  background:linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.10) 62%);
  z-index:1;
}

.work-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.work-tag{
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  opacity:.85;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.work-year{
  font-size:12px;
  opacity:.55;
  letter-spacing:.08em;
}

.work-title{
  font-size:22px;
  letter-spacing:.02em;
  margin-bottom:6px;
  line-height:1.12;
}

.work-desc{
  font-size:14px;
  opacity:.72;
  line-height:1.35;
  max-width:42ch;
}

/* WORK BAND */
.work-band{
  padding-top:0;
}

.work-band-panel{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
    rgba(0,0,0,.34);
  backdrop-filter:blur(10px);
  padding:34px 28px;
  text-align:center;
  box-shadow:0 0 0 1px rgba(201,139,75,.05), 0 18px 50px rgba(0,0,0,.18);
}

.work-band-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(201,139,75,.22);
  background:rgba(201,139,75,.08);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  margin-bottom:16px;
}

.work-band h3{
  margin:0 0 10px 0;
  font-size:34px;
  line-height:1.08;
}

.work-band p{
  margin:0 auto;
  max-width:54ch;
  color:var(--muted);
}

.work-band-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* ABOUT + CONTACT */
.grid-2{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:16px;
  margin-top:18px;
}

.stack{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.kpi{
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.24);
}

.kpi h4{
  margin:0 0 8px 0;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.55;
}

.kpi p{
  margin:0;
  opacity:.85;
  font-size:14px;
  line-height:1.45;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* CONTACT MODAL */
.contact-modal{
  position:fixed;
  inset:0;
  z-index:1001;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.76);
  backdrop-filter:blur(12px);
}

.contact-modal.open{ display:flex; }

.contact-dialog{
  width:min(760px, 100%);
  max-height:min(88vh, 920px);
  overflow:auto;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    rgba(5,5,5,.94);
  box-shadow:
    0 20px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(201,139,75,.08);
  position:relative;
}

.contact-dialog::-webkit-scrollbar{ width:8px; }

.contact-dialog::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.12);
  border-radius:999px;
}

.contact-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:white;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:20px;
  transition:.25s;
}

.contact-close:hover{
  border-color:rgba(201,139,75,.55);
  box-shadow:0 0 0 1px rgba(201,139,75,.10);
  transform:translateY(-1px);
}

.contact-shell{ padding:34px; }

.contact-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(201,139,75,.22);
  background:rgba(201,139,75,.08);
  color:var(--text);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  margin-bottom:18px;
}

.contact-modal h3{
  margin:0 0 10px 0;
  font-size:34px;
  line-height:1.05;
  letter-spacing:.01em;
}

.contact-modal-copy{
  margin:0 0 24px 0;
  color:var(--muted);
  max-width:52ch;
}

.contact-form{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field.full{ grid-column:1 / -1; }

.form-label{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
}

.form-input,
.form-select,
.form-textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:white;
  padding:15px 16px;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.form-input::placeholder,
.form-textarea::placeholder{
  color:rgba(255,255,255,.42);
}

.form-select{
  appearance:none;
  -webkit-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.8) 50%),
    linear-gradient(135deg, rgba(255,255,255,.8) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:40px;
}

.form-select option{
  background:#111;
  color:white;
}

.form-textarea{
  min-height:150px;
  resize:vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus{
  border-color:rgba(201,139,75,.62);
  box-shadow:0 0 0 4px rgba(201,139,75,.10);
  transform:translateY(-1px);
}

.form-meta{
  grid-column:1 / -1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-top:4px;
}

.form-note{
  margin:0;
  font-size:13px;
  color:rgba(255,255,255,.55);
  line-height:1.45;
}

.form-status{
  grid-column:1 / -1;
  display:none;
  border-radius:16px;
  padding:14px 16px;
  font-size:14px;
  line-height:1.45;
}

.form-status.show{ display:block; }

.form-status.success{
  border:1px solid rgba(201,139,75,.34);
  background:rgba(201,139,75,.10);
  color:rgba(255,255,255,.92);
}

.form-status.error{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.88);
}

.form-submit{ min-width:190px; }

.hp-field{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(10px);
  padding:22px;
}

.lightbox.open{ display:flex; }

.lb-inner{
  width:min(1100px, 92vw);
  height:min(760px, 84vh);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.35);
  overflow:hidden;
  position:relative;
}

.lb-img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:rgba(0,0,0,.25);
}

.lb-close{
  position:absolute;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  color:white;
  font-size:18px;
}

/* FOOTER */
.site-footer{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px 40px;
  position:relative;
  z-index:2;
}

.footer-inner{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.58);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.footer-copy{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* RESPONSIVE */
@media (max-width: 1180px){
  .work-card.is-feature,
  .work-card.is-secondary,
  .work-card.is-standard{
    grid-column:span 6;
  }
}

@media (max-width: 980px){
  .services-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr 1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .work-grid{ grid-template-columns:1fr; }

  .work-card,
  .work-card.is-feature,
  .work-card.is-secondary,
  .work-card.is-wide,
  .work-card.is-standard{
    grid-column:auto;
    min-height:310px;
  }

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

@media (max-width: 700px){
  :root{ --nav-h:60px; }

  .nav{
    top:10px;
    left:10px;
    right:10px;
  }

  .nav-inner{
    gap:8px;
    padding:8px 10px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .nav-inner::-webkit-scrollbar{ display:none; }
  .nav-left{ display:none; }

  .nav-links{
    gap:8px;
    min-width:max-content;
  }

  .nav-links a{
    padding:10px 11px;
    font-size:11px;
    letter-spacing:.12em;
  }

  .nav-social{
    min-width:auto;
    gap:8px;
  }

  .icon-btn{
    width:38px;
    height:38px;
    flex:0 0 auto;
  }

  .hero{
    min-height:74svh;
    padding-top:calc(var(--nav-h) + 12px);
    padding-bottom:18px;
  }

  .hero h1{
    font-size:44px;
    letter-spacing:3px;
    line-height:1.03;
  }

  .hero p{
    font-size:15px;
    line-height:1.3;
  }

  .sub{ font-size:14px !important; }
  .hero-content{ padding:18px 16px; }

  .section{ padding:84px 16px; }
  .section h2{ font-size:36px; }

  .section-head,
  .strip-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .work-filters{ justify-content:flex-start; }
  .process-grid{ grid-template-columns:1fr; }

  .work-card,
  .work-card.is-feature,
  .work-card.is-secondary,
  .work-card.is-wide,
  .work-card.is-standard{
    min-height:270px;
  }

  .work-overlay{ padding:16px; }
  .work-title{ font-size:20px; }
  .work-desc{ font-size:13px; }

  .work-band-panel{
    padding:24px 18px;
  }

  .work-band h3{
    font-size:28px;
  }

  .work-band-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .contact-shell{ padding:22px 16px 18px; }
  .contact-modal h3{ font-size:26px; }
  .form-meta{ align-items:flex-start; }
  .form-submit{ width:100%; }

  .focus-overlay::before{
    inset:14px;
    border-radius:14px;
  }

  .focus-overlay::after{
    background:
      linear-gradient(var(--copper), var(--copper)) left 14px top 14px / 22px 1.5px no-repeat,
      linear-gradient(var(--copper), var(--copper)) left 14px top 14px / 1.5px 22px no-repeat,
      linear-gradient(var(--copper), var(--copper)) right 14px top 14px / 22px 1.5px no-repeat,
      linear-gradient(var(--copper), var(--copper)) right 14px top 14px / 1.5px 22px no-repeat,
      linear-gradient(var(--copper), var(--copper)) left 14px bottom 14px / 22px 1.5px no-repeat,
      linear-gradient(var(--copper), var(--copper)) left 14px bottom 14px / 1.5px 22px no-repeat,
      linear-gradient(var(--copper), var(--copper)) right 14px bottom 14px / 22px 1.5px no-repeat,
      linear-gradient(var(--copper), var(--copper)) right 14px bottom 14px / 1.5px 22px no-repeat;
  }

  .focus-crosshair{
    width:58px;
    height:58px;
  }

  .focus-crosshair::before{ height:20px; }
  .focus-crosshair::after{ width:20px; }

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

  .loader-mark{
    font-size:44px;
  }
}