/* the47.com landing — match live splash */

:root {
  --black: #000;
  --bg: #161616;
  --ink: #e2e2e2;
  --mute: #969696;
  --gold: #c9a227;
  --font-display: "Archivo Black", "Oswald", "Arial Black", sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
html { background: var(--black); }

body.landing {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Full-viewport photo. No type, no buttons over the image. */
.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: calc(100dvh - 230px);
  background: var(--bg);
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.hero .veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.brand {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: block;
  line-height: 0;
}
.brand img {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(72vw, 520px);
  mix-blend-mode: screen;
}

/* Footer under the photo — left-aligned like the archive pages */
.foot {
  background: var(--black);
  color: var(--ink);
  text-align: left;
  padding: 40px 24px 32px;
}
.foot .inner {
  width: min(1180px, calc(100% - 0px));
  max-width: 1180px;
  margin: 0 auto;
}

.x-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  margin: 0 0 16px;
}
.x-btn:hover { color: #fff; }
.x-btn svg { display: block; width: 40px; height: 40px; }

.archive-link {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  margin: 0 0 10px;
  line-height: 1.5;
}
.archive-link:hover { color: #fff; text-decoration: underline; }

.vintage-link {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--mute);
  text-decoration: none;
  margin: 0 0 16px;
}
.vintage-link:hover { color: var(--ink); }

.entity {
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 16px;
}

.copy {
  font-size: 14px;
  color: var(--mute);
  margin: 0;
}

@media (min-width: 1024px) {
  .brand { top: 16px; left: 24px; }
  .brand img { height: 80px; }
  .copy { text-align: left; max-width: 1180px; margin: 24px auto 0; }
  .foot { padding: 40px 24px 40px; }
}

@media (max-width: 767px) {
  .hero { min-height: calc(100dvh - 280px); }
  .brand { top: 12px; left: 12px; right: 12px; }
  .brand img { height: auto; max-height: 56px; max-width: 224px; }
  .foot { padding: 32px 20px 28px; }
}
