:root {
  --ink: #151515;
  --paper: #f6f1e8;
  --cream: #fff7ea;
  --panel: #ffffff;
  --peach: #f7b39c;
  --sky: #a7d7f7;
  --lemon: #f5e38a;
  --mint: #bfe7d4;
  --shadow: 0 22px 40px rgba(16, 16, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 12%, rgba(247, 179, 156, 0.28), transparent 45%),
    radial-gradient(circle at 85% 12%, rgba(167, 215, 247, 0.3), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(191, 231, 212, 0.28), transparent 55%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='6' cy='8' r='1.4' fill='%23000000'/%3E%3Ccircle cx='34' cy='28' r='1.2' fill='%23000000'/%3E%3Ccircle cx='84' cy='14' r='1.4' fill='%23000000'/%3E%3Ccircle cx='104' cy='40' r='1.2' fill='%23000000'/%3E%3Ccircle cx='18' cy='88' r='1.4' fill='%23000000'/%3E%3Ccircle cx='60' cy='70' r='1.1' fill='%23000000'/%3E%3Ccircle cx='96' cy='92' r='1.4' fill='%23000000'/%3E%3C/svg%3E");
}

figure {
  margin: 0;
}

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

.canvas {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 36px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: rise 0.6s ease forwards;
}

.hero,
.reel,
.gallery,
.contact {
  width: 100%;
}

.hero-text,
.hero-spotlight {
  min-width: 0;
}

.hero-text {
  max-width: 680px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 22px;
  pointer-events: none;
}

.eyebrow {
  font-family: "Yomogi", cursive;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  background: var(--lemon);
  border: 3px solid var(--ink);
  display: inline-flex;
  align-self: flex-start;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero h1 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(42px, 7vw, 96px);
  margin: 18px 0 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-line {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-chips,
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips span {
  background: var(--sky);
}

.hero-notes span {
  background: var(--mint);
}

.hero-chips span,
.hero-notes span {
  padding: 8px 14px;
  border: 3px solid var(--ink);
  font-family: "Yomogi", cursive;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 4px solid var(--ink);
  background: var(--peach);
  color: var(--ink);
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  letter-spacing: 1px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.ghost {
  background: var(--panel);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.hero-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  align-content: start;
}

.spotlight-card {
  background: var(--panel);
  border: 4px solid var(--ink);
  padding: 8px;
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
}

.spotlight-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: block;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-head h2 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase;
}

.section-tag {
  font-family: "Yomogi", cursive;
  font-size: 14px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  background: var(--lemon);
  box-shadow: 3px 3px 0 var(--ink);
}

.reel {
  padding: 28px;
  border: 4px solid var(--ink);
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.reel-track {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  width: 100%;
  max-width: 100%;
  padding: 12px 4px 6px;
}

.reel-card {
  min-width: 0;
  background: var(--panel);
  border: 4px solid var(--ink);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
}

.reel-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: block;
}

.gallery {
  padding: 28px;
  border: 4px solid var(--ink);
  background: var(--panel);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.masonry {
  width: 100%;
  column-width: 260px;
  column-gap: 18px;
  margin-top: 24px;
}

.art-card {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--panel);
  border: 4px solid var(--ink);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.art-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: block;
}

.art-card.is-gif::after {
  content: "GIF";
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  letter-spacing: 1px;
  background: var(--lemon);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.contact {
  padding: 28px;
  border: 4px solid var(--ink);
  background: var(--cream);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-card {
  padding: 16px;
  border: 3px solid var(--ink);
  background: var(--panel);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-link {
  padding: 10px 16px;
  border: 3px solid var(--ink);
  background: var(--sky);
  text-decoration: none;
  color: var(--ink);
  font-family: "Yomogi", cursive;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
}

.footer {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border: 4px solid var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 16px;
  border: 3px solid var(--ink);
  background: #fff;
  font-family: "Shippori Mincho", serif;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-spotlight {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .masonry {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .canvas {
    padding: 32px 16px 80px;
  }

  .masonry {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .hero-spotlight {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .masonry {
    column-count: 1;
  }

  .btn {
    width: 100%;
  }
}

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