:root {
  --bg: #0A0A0A;
  --ink: #F2F0EA;          /* warm off-white */
  --amber: #F7B500;        /* brand yellow */
  --amber-bright: #FFC21F;
  --muted: rgba(242, 240, 234, 0.46);
  --line: rgba(242, 240, 234, 0.13);
  --pad: clamp(18px, 3.2vw, 46px);

  --mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;                 /* single screen, no scroll */
  min-height: 100svh;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---- Background canvas + vignette ---- */
#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 42%, transparent 38%, rgba(0,0,0,0.55) 100%),
    radial-gradient(80% 60% at 50% 50%, rgba(247,181,0,0.04), transparent 60%);
}

/* ---- Poster frame ---- */
.frame {
  position: relative;
  z-index: 2;
  height: 100svh;
  width: 100%;
  padding: var(--pad);
  display: grid;
  place-items: center;
}
/* hairline inset border */
.frame::before {
  content: "";
  position: absolute;
  inset: var(--pad);
  border: 1px solid var(--line);
  pointer-events: none;
}

/* ---- Corner meta ---- */
.meta {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.meta--tl { top: calc(var(--pad) + 14px); left: calc(var(--pad) + 16px); }
.meta--tr { top: calc(var(--pad) + 14px); right: calc(var(--pad) + 16px); text-align: right; align-items: flex-end; }
.meta--bl { bottom: calc(var(--pad) + 14px); left: calc(var(--pad) + 16px); }
.meta--br { bottom: calc(var(--pad) + 14px); right: calc(var(--pad) + 16px); text-align: right; align-items: flex-end; }
.clock { color: var(--amber); }

/* ---- Center stage ---- */
.stage {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.logo {
  width: min(64vw, 360px);
  height: auto;
  margin-bottom: clamp(22px, 4vh, 40px);
  filter: drop-shadow(0 8px 40px rgba(247, 181, 0, 0.10));
  user-select: none;
  -webkit-user-drag: none;
}

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
  padding-left: 2px;
}

.headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 6.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin-bottom: clamp(18px, 3vh, 30px);
}
.headline .amber { color: var(--amber); }

.disciplines {
  font-family: var(--mono);
  font-size: clamp(11px, 1.3vw, 13px);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(26px, 5vh, 46px);
  letter-spacing: 0.02em;
}
.disciplines i {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--amber);
  transform: rotate(45deg);
}

/* ---- Contact ---- */
.contact ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 0;
  width: 100%;
  max-width: 620px;
  border-top: 1px solid var(--line);
}
.contact li {
  border-bottom: 1px solid var(--line);
  padding: 12px 18px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact li:nth-child(odd) { padding-right: 28px; }
.contact__label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.contact__value {
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--ink);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: color 0.25s ease;
}
.contact__value::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.contact__value:hover { color: var(--amber-bright); }
.contact__value:hover::after { transform: scaleX(1); }
.contact__value:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}
.arr {
  width: 9px; height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.contact__value:hover .arr { transform: translate(2px, -2px); opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  body { overflow-y: auto; }
  .frame { height: auto; min-height: 100svh; padding-block: calc(var(--pad) + 44px); }
  .stage { width: 100%; }
  .meta--tl, .meta--tr { top: calc(var(--pad) + 4px); }
  .meta--bl, .meta--br { display: none; }
  .contact ul { grid-template-columns: 1fr; }
  .contact li:nth-child(odd) { padding-right: 0; }
}

@media (max-width: 420px) {
  .meta { font-size: 10px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .contact__value::after,
  .arr { transition: none; }
}
