:root {
  --bg: #0b0a09;
  --ink: #e6e1d6;
  --ink-muted: #8b8478;
  --ink-dim: #4f4a42;
  --rule: #26231f;
  --rule-strong: #3a352e;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* faint paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1000;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 20px 0;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 420px;
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0) 0%, rgba(11, 10, 9, 0.35) 55%, rgba(11, 10, 9, 0.96) 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-image {
  display: none;
}

.hero-avatar {
  width: 132px;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  outline: 1px solid rgba(230, 225, 214, 0.35);
  outline-offset: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  will-change: transform, opacity;
  transition: box-shadow 0.3s ease;
}

.hero-avatar:hover {
  box-shadow: 0 18px 60px rgba(230, 225, 214, 0.12);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  will-change: transform, opacity;
}

.hero .subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  will-change: transform, opacity;
}



/* ---------- social ---------- */

.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 26px 0 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ink-muted);
  transition: color 0.25s ease;
  will-change: transform, opacity;
  position: relative;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 225, 214, 0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.social-links a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.social-links a:hover {
  color: var(--ink);
}

.social-links svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ---------- sections ---------- */

.section {
  padding-top: 40px;
}

.section-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  will-change: transform, opacity;
}

/* quieter variant for "coming soon" */
.section-title.eyebrow {
  text-align: center;
  border-bottom: 0;
  color: var(--ink-dim);
  letter-spacing: 0.32em;
  font-size: 0.66rem;
  padding-bottom: 0;
  margin-bottom: 20px;
}

/* ---------- coming soon banner ---------- */

.coming-soon-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, #141311 0%, #1a1815 100%);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  will-change: transform, opacity;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-banner:hover {
  border-color: var(--rule-strong);
  box-shadow: 0 8px 24px rgba(230, 225, 214, 0.05);
}

.banner-link {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px;
  transition: background 0.3s ease;
}

.banner-link:hover {
  background: rgba(255, 255, 255, 0.02);
}

.banner-cover {
  flex-shrink: 0;
  width: 110px;
  aspect-ratio: 2 / 3;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.banner-link:hover .banner-cover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.banner-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  flex: 1;
  min-width: 0;
}

.banner-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  margin-bottom: 8px;
}

.banner-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.25s ease;
}

.banner-link:hover .banner-title {
  color: #fff;
}

.section-title .pulse {
  display: none;
}

/* ---------- grid ---------- */

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 30px;
  justify-items: center;
}

.item-card {
  width: 100%;
  max-width: 260px;
  will-change: transform, opacity;
}

.item-card a {
  display: block;
}

.item-image {
  position: relative;
  width: 100%;
  background: #141311;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.item-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  opacity: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.item-card:hover .item-image::before {
  opacity: 1;
}

.item-grid.comics .item-image {
  aspect-ratio: 2 / 3;
}

.item-grid.apparel .item-image {
  aspect-ratio: 1 / 1;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

.item-card:hover .item-image {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 36px rgba(0, 0, 0, 0.6);
}

.item-card:hover .item-image img {
  filter: brightness(1.06);
}

.item-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.item-content {
  padding: 12px 2px 0;
}

.item-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.25s ease;
}

.item-card:hover .item-title {
  color: #fff;
}

.item-shop {
  margin-top: 5px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.external-link-icon {
  width: 11px;
  height: 11px;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.item-card:hover .external-link-icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

.item-description {
  display: none;
}

/* ---------- footer ---------- */

footer {
  max-width: 420px;
  margin: 64px auto 0;
  padding: 28px 20px 40px;
  border-top: 1px solid var(--rule);
  text-align: center;
  will-change: transform, opacity;
}

.footer-bio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.contact-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-note {
  display: block;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
}

.footer-meta {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- responsive ---------- */

@media (max-width: 600px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    min-height: 380px;
    padding: 32px 18px 30px;
    margin: 0 -14px;
    border-radius: 0;
  }

  .coming-soon-banner {
    margin-top: 32px;
    margin-left: -14px;
    margin-right: -14px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .banner-link {
    padding: 20px 18px;
    gap: 20px;
  }

  .banner-cover {
    width: 90px;
  }

  .banner-title {
    font-size: 1.15rem;
  }

  .hero-avatar {
    width: 112px;
    height: 112px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .section {
    padding-top: 34px;
  }

  .item-grid {
    column-gap: 14px;
    row-gap: 24px;
  }

  .item-grid.apparel {
    grid-template-columns: 1fr;
  }

  .item-card {
    max-width: 100%;
  }

  .item-grid.apparel .item-card {
    max-width: 300px;
  }

  .item-title {
    font-size: 0.9rem;
  }

  footer {
    margin-top: 48px;
    padding: 24px 18px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
