/* That Guy Consulting — public site (absolute-positioned canvas) */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #0e0e0e;
  font-family: 'Roboto Condensed', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.stage-wrap {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  background: #0e0e0e;
}

/* The fixed-size design canvas; scaled to fit viewport width via --scale. */
.stage {
  transform-origin: top center;
  transform: scale(var(--scale, 1));
}

.canvas {
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0,0,0,.6);
  overflow: hidden;
  background-image: radial-gradient(circle at 4px 4px, rgba(0,0,0,.09) 1.1px, transparent 1.2px);
  background-size: 9px 9px;
}

.el { position: absolute; }
.el-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.el-text { overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.el-text > a { text-decoration: none; }
.el-box { pointer-events: none; }

.el-text[data-type] a { cursor: pointer; }

/* contact form fields */
.el-field { display: flex; }
.el-field input,
.el-field textarea {
  width: 100%; height: 100%;
  border: none; outline: none;
  padding: 8px 12px;
  background: inherit;
  font-family: inherit;
  resize: none;
}
.el-field input::placeholder,
.el-field textarea::placeholder { color: #6a6a6a; letter-spacing: .5px; text-transform: uppercase; font-size: 11px; }
.el-field .submit-btn {
  width: 100%; height: 100%;
  border: none; cursor: pointer;
  background: inherit; color: inherit;
  font: inherit; letter-spacing: 1px;
  transition: transform .08s ease, filter .15s ease;
}
.el-field .submit-btn:hover { filter: brightness(1.25); }
.el-field .submit-btn:active { transform: scale(.97); }

/* tiny floating admin link */
.admin-fab {
  position: fixed; right: 14px; bottom: 14px; z-index: 9999;
  background: #141414; color: #fff; text-decoration: none;
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1px;
  padding: 8px 14px; border-radius: 20px; opacity: .55;
  border: 1px solid #444; transition: opacity .2s;
}
.admin-fab:hover { opacity: 1; }

.flash {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: #1c7a3e; color: #fff; text-align: center;
  font-family: 'Oswald', sans-serif; padding: 12px; letter-spacing: 1px;
}
