:root {
  --bg: #4c3725;
  --bg-deep: #3a2a1c;
  --ink: #f3ebe0;
  --muted: #c9b8a4;
  --accent: #e8b86d;
  --line: rgba(243, 235, 224, 0.18);
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
  --display: Impact, Haettenschweiler, "Arial Black", "Helvetica Neue", sans-serif;
}

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

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 55% at 50% -15%, rgba(232, 184, 109, 0.12), transparent 55%),
    linear-gradient(180deg, #55402c 0%, var(--bg) 40%, var(--bg-deep) 100%);
}

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg-deep);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.page-mark {
  position: fixed;
  top: 1.1rem;
  left: 1.25rem;
  z-index: 20;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
}

.wrap {
  width: min(720px, 100% - 2rem);
  margin-inline: auto;
  padding: 4.5rem 0 2rem;
}

.hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-art {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #2a1f16;
}

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

.copy {
  margin-top: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 28ch;
}

.sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.build-note {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.build-note:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .page-mark {
    top: 0.85rem;
    left: 0.9rem;
  }
  .wrap { padding-top: 3.75rem; }
}
