* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  background: #0d0f0d;
  overflow: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Blurred, darkened copy of the photo fills whatever the photo itself doesn't */
.ambient {
  position: fixed;
  inset: -40px;
  background: url("media/waiting-room.jpg") center / cover no-repeat;
  filter: blur(28px) brightness(0.35) saturate(0.9);
  z-index: 0;
}

/* The sharp photo, centered, never cropped */
.room {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  aspect-ratio: 3 / 4;      /* 1080x1440 */
  max-width: 100vw;
  z-index: 1;
}
@media (max-aspect-ratio: 3/4) {
  .room { height: auto; width: 100vw; }
}

.room-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Subtle fluorescent flicker over the whole room */
.room::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #eaffea;
  opacity: 0;
  pointer-events: none;
  animation: fluorescent 7s infinite;
}
@keyframes fluorescent {
  0%, 93%, 100% { opacity: 0; }
  94% { opacity: 0.03; }
  95% { opacity: 0; }
  96% { opacity: 0.05; }
  97% { opacity: 0.01; }
}

/* ---------- brass office plaque (contact) ---------- */

.plaque {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(160deg, #5d4630 0%, #3f2e1d 60%, #2c1f13 100%);
  border-radius: 4px;
  padding: 5px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.55);
}

.plaque-brass {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 7px 22px 8px;
  border-radius: 2px;
  background: linear-gradient(170deg, #d9b96a 0%, #b8933f 45%, #9a7830 55%, #c9a94f 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.55),
    inset 0 -1px 2px rgba(0,0,0,0.45);
}

.plaque-title,
.plaque-email {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: #3a2a12;
  text-shadow: 0 1px 0 rgba(255,240,200,0.5);
}

.plaque-title {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.35em;
  margin-right: -0.35em; /* recenters the tracked-out caps */
}

.plaque-email {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-style: italic;
  margin-top: 2px;
}

.plaque-brass:hover {
  background: linear-gradient(170deg, #e6c87c 0%, #c6a14d 45%, #a8863c 55%, #d7b75d 100%);
}

.plaque-copy {
  display: block;
  border: none;
  cursor: pointer;
  padding: 4px 10px 5px;
  border-radius: 2px;
  background: linear-gradient(170deg, #c4a558 0%, #a3823a 50%, #8a6c2c 60%, #b3944a 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.45),
    inset 0 -1px 2px rgba(0,0,0,0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9.5px;
  font-weight: bold;
  letter-spacing: 0.28em;
  text-indent: 0.28em; /* recenters the tracked-out caps */
  color: #3a2a12;
  text-shadow: 0 1px 0 rgba(255,240,200,0.5);
}
.plaque-copy:hover {
  background: linear-gradient(170deg, #d5b866 0%, #b39146 50%, #97772f 60%, #c2a355 100%);
}
.plaque-copy:active {
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,0.5),
    inset 0 -1px 1px rgba(255,255,255,0.2);
}
.plaque-copy.copied {
  background: linear-gradient(170deg, #9fb573 0%, #7d9550 50%, #66803e 60%, #8ea562 100%);
  color: #23300f;
}

@media (max-width: 500px) {
  .plaque { bottom: 14px; }
  .plaque-brass { padding: 6px 14px 7px; }
  .plaque-title { font-size: 11px; }
  .plaque-email { font-size: 9.5px; }
}

