/* Wireframe baseline — visual polish comes later */

:root {
  --font-display: "Oswald", "Arial Narrow", "Helvetica Condensed", sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --color-ink: #111;
  --color-muted: #555;
  --color-line: #bbb;
  --color-surface: #f7f7f7;
  --color-page: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-page);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.hero,
.wire-section {
  border-bottom: 1px solid var(--color-line);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.site-header__mark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 1px dotted var(--color-line);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-style: solid;
  border-bottom-color: var(--color-ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(70vh, 36rem);
  padding: 3rem 1.25rem;
  text-align: center;
  background: var(--color-surface);
  overflow: hidden;
}

/* Reserved for a future full-bleed video backdrop */
.hero__media {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 6.5rem);
  font-weight: 700;
  font-stretch: condensed;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__unofficial {
  margin: 0.65rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.6vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--color-muted);
}

.wire-section {
  padding: 2rem 1.25rem;
}

.wire-section__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.wire-section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wire-section p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.25rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
  border-bottom: none;
}

.wire-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.15rem 0.4rem;
  border: 1px dashed var(--color-line);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.site-nav__user {
  color: var(--color-muted);
}

.site-nav__logout {
  display: inline;
  margin: 0;
}

.site-nav__logout button {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px dotted var(--color-line);
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.site-nav__logout button:hover,
.site-nav__logout button:focus-visible {
  border-bottom-style: solid;
  border-bottom-color: var(--color-ink);
}

.auth-section .wire-section__inner > p {
  margin-bottom: 1.25rem;
}

.auth-flash {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-line);
  font-size: 0.9rem;
}

.auth-flash--error {
  border-color: #999;
  color: var(--color-ink);
}

.auth-flash--notice {
  color: var(--color-muted);
}

.auth-form {
  display: grid;
  gap: 0.5rem;
  max-width: 22rem;
}

.auth-form__label {
  font-size: 0.85rem;
}

.auth-form__input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--color-line);
  border-radius: 0;
  font: inherit;
  background: var(--color-page);
}

.auth-form__button {
  margin-top: 0.5rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--color-ink);
  background: var(--color-page);
  font: inherit;
  cursor: pointer;
}

.auth-form__button:hover,
.auth-form__button:focus-visible {
  background: var(--color-surface);
}
