/* Nice Rack Shop — graphic-forward coming soon */
:root {
  --bg: #fafaf9;
  --ink: #1c1917;
  --muted: #78716c;
  --accent: #b45309;
  --accent-soft: #fef3c7;
  --line: #e7e5e4;
  --font: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, #fef3c7, transparent),
    linear-gradient(180deg, #fffbeb 0%, var(--bg) 45%, #f5f5f4 100%);
  line-height: 1.55;
}

img, svg { 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: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

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

.site-header {
  padding: 1.25rem 0 0.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.05rem;
}
.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--accent-soft);
  border: 1px solid #fcd34d;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--accent);
}

main { flex: 1; padding: 0.5rem 0 2rem; }

.hero-art {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(28, 25, 23, 0.1);
  background: #fff;
  margin-bottom: 1.75rem;
}

.copy {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}

h1 {
  font-family: var(--font);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.contact a:hover { text-decoration: underline; }

.site-footer {
  padding: 1rem 0 1.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: #a8a29e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
