:root {
  --color-white: #fffefd;
  --color-ivory: #fff5c8;
  --color-pink: #ffc2d6;
  --color-pink-deep: #e78aaa;
  --color-greige: #d8ccc2;
  --color-mint: #aeeedc;
  --color-blue: #9fe7f4;
  --color-peach: #ffc5a8;
  --color-ink: #4f4645;
  --color-muted: #897d79;
  --shadow-soft: 0 14px 34px rgba(82, 70, 64, 0.09);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffdf8;
  color: var(--color-ink);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
}

body::before {
  content: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: transparent;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(183, 170, 161, 0.18);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 22px;
  letter-spacing: 0;
}

.site-brand__text {
  white-space: nowrap;
}

.site-brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f2e6e2;
  color: var(--color-pink-deep);
  font-size: 14px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  color: var(--color-muted);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav .current-menu-item a {
  color: var(--color-pink-deep);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(157, 110, 109, 0.18);
  border-radius: 50%;
  background: rgba(250, 246, 241, 0.72);
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  display: block;
  width: 14px;
  height: 1px;
  background: var(--color-ink);
  transition: transform 0.28s ease, opacity 0.22s ease, top 0.28s ease;
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}

.nav-toggle span:nth-child(2) {
  top: 17px;
}

.nav-toggle span:nth-child(3) {
  top: 22px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 17px;
  transform: rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 17px;
  transform: rotate(-42deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 38px;
  align-items: center;
  width: var(--container);
  min-height: calc(88vh - 76px);
  padding: 42px 0 58px;
  margin: 0 auto;
}

.hero::after {
  content: none;
}

.hero::before {
  content: none;
}

.section-kicker {
  margin: 0 0 10px;
  color: #6b5d54;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  font-size: 15px;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.single-work h1 {
  margin: 0;
  color: #5d4a50;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 600;
  line-height: 1.24;
}

.hero h1 {
  font-size: clamp(30px, 3.5vw, 44px);
}

.hero__copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 34px;
  color: var(--color-muted);
}

.button-link,
.contact-buttons a,
.term-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(48, 41, 40, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 22px rgba(75, 58, 45, 0.08);
  color: #302928;
}

.hero-work {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  min-height: 480px;
  border-radius: var(--radius);
  background: var(--color-ivory);
  box-shadow: var(--shadow-soft);
}

.hero-collage {
  position: relative;
  width: min(430px, 100%);
  min-height: 430px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 210, 142, 0.38);
  border-radius: 26px;
  background: #fffdf6;
  box-shadow: 0 18px 42px rgba(91, 78, 63, 0.1);
}

.hero-collage__main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background: #fffdf6;
  box-shadow: 0 14px 34px rgba(91, 78, 63, 0.1);
}

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

.hero-collage__dummy {
  display: block;
  height: 100%;
  background: #bfe8d8;
}

.hero-mini-card span {
  color: #8f7376;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
}

.hero-mini-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(117, 100, 96, 0.08);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 12px 26px rgba(91, 78, 63, 0.1);
}

.hero-mini-card strong {
  color: #6f5c61;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-mini-card--top {
  background: #fff5c8;
  top: 46px;
  left: -22px;
}

.hero-mini-card--middle {
  background: #d9f8f0;
  right: -18px;
  top: 44%;
}

.hero-mini-card--bottom {
  background: #ffe1eb;
  left: 24px;
  bottom: 54px;
}

.hero-collage__label {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  max-width: 220px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
}

.hero-work img,
.hero-work__placeholder {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-work__placeholder,
.work-card__placeholder {
  display: grid;
  place-items: center;
  background: #fffdf6;
  color: var(--color-greige);
  font-family: Georgia, "Times New Roman", serif;
}

.hero-work span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.86);
  color: var(--color-ink);
}

.hero-work figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.86);
  color: var(--color-ink);
}

.section-pad,
.tools,
.works-highlight,
.archive-page,
.single-work {
  width: var(--container);
  margin: 0 auto;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  padding: 54px 0;
}

.about::before,
.works-highlight::before {
  content: none;
}

.about::after {
  content: none;
}

.about__card,
.music-card,
.empty-state,
.work-detail__meta {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.about h2,
.music-card h2,
.footer-contact h2,
.work-detail h2 {
  margin: 0 0 16px;
  color: #744f50;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.35;
}

.music-card {
  align-self: start;
}

.music-card__videos {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.mini-video h3 {
  margin: 12px 0 4px;
  color: #744f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.mini-video p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--color-pink-deep);
  font-size: 14px;
}

.music-card__thumb {
  display: block;
  overflow: hidden;
  margin-top: 18px;
  border-radius: var(--radius);
}

.music-card__thumb img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.tools {
  position: relative;
  padding: 34px 0 42px;
}

.tools::before {
  content: none;
}

.tools__heading {
  margin-bottom: 18px;
  text-align: center;
}

.tools__heading h2 {
  margin: 0;
  color: #744f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(183, 170, 161, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.82);
  box-shadow: 0 10px 24px rgba(88, 64, 56, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 254, 253, 0.95);
  box-shadow: 0 16px 30px rgba(88, 64, 56, 0.1);
}

.tool-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #f1e4df;
  color: #8a5f5e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.tool-card h3 {
  margin: 0 0 2px;
  color: #6f5250;
  font-size: 15px;
  font-weight: 600;
}

.tool-card p {
  grid-column: 2;
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.55;
}

.works-highlight {
  position: relative;
  padding: 52px 0 76px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.section-heading a,
.work-row__intro a {
  color: var(--color-pink-deep);
  font-size: 14px;
}

.work-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px 0;
}

.work-row__intro {
  padding: 24px 0;
}

.work-row__intro p {
  margin: 0 0 6px;
  color: #744f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.work-row__intro span {
  display: block;
  margin-bottom: 34px;
  color: var(--color-muted);
  font-size: 13px;
}

.work-row__scroller {
  display: grid;
  grid-auto-columns: minmax(360px, 480px);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 8px 18px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--color-pink) transparent;
}

.work-card {
  scroll-snap-align: start;
}

.work-card__link {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.9);
  box-shadow: 0 12px 30px rgba(88, 64, 56, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(88, 64, 56, 0.15);
}

.work-card__image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.work-card__image img,
.work-card__placeholder {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card__link:hover img {
  transform: scale(1.04);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 22px;
  background: rgba(33, 28, 26, 0.62);
  color: #fffefd;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-card__link:hover .work-card__overlay,
.work-card__link:focus-visible .work-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card__overlay p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.work-card__thumbs {
  display: flex;
  gap: 8px;
}

.work-card__thumbs span {
  overflow: hidden;
  width: 72px;
  height: 48px;
  border: 1px solid rgba(255, 254, 253, 0.46);
  border-radius: 6px;
  background: rgba(255, 254, 253, 0.25);
}

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

.work-card__body {
  padding: 16px 18px 18px;
}

.work-card__category {
  margin: 0 0 3px;
  color: var(--color-pink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.work-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.work-card__focus {
  display: none;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.work-card__button {
  display: none;
  margin-top: 12px;
  color: var(--color-pink-deep);
  font-size: 13px;
}

.archive-page {
  padding: 70px 0 90px;
}

.page-hero {
  max-width: 760px;
  margin-bottom: 32px;
}

.term-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.pagination {
  margin-top: 42px;
}

.single-work {
  padding: 58px 0 84px;
}

.single-work__article {
  max-width: 860px;
  margin: 0 auto;
}

.single-work__hero {
  display: grid;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.single-work__heading {
  max-width: 820px;
  margin: 0 auto;
}

.single-work__hero h1 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.single-work__hero figure {
  overflow: hidden;
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.single-work__hero img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: auto;
  object-fit: cover;
}

.work-detail {
  display: block;
  padding: 42px 0 34px;
}

.work-detail__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.78);
  box-shadow: 0 10px 26px rgba(88, 64, 56, 0.08);
}

.work-detail__meta {
  align-self: start;
}

.work-detail__meta div + div {
  margin-top: 20px;
}

.work-detail__meta span {
  color: var(--color-pink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.work-detail__meta p {
  margin: 4px 0 0;
}

.work-gallery {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.work-gallery figure {
  overflow: hidden;
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.work-gallery img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.88);
  box-shadow: var(--shadow-soft);
}

.video-card__body {
  padding: 20px 22px 24px;
}

.video-card h2 {
  margin: 0 0 8px;
  color: #744f50;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.video-card p {
  margin: 0;
  color: var(--color-muted);
}

.performance-date {
  color: var(--color-pink-deep);
  font-size: 13px;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius);
  background: #eee5df;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-single__embed {
  max-width: 980px;
}

.site-footer {
  padding: 64px 20px 18px;
  background: #fff8e9;
  text-align: center;
}

.footer-contact {
  width: min(720px, 100%);
  margin: 0 auto 42px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.copyright {
  margin: 0;
  color: rgba(255, 254, 253, 0.88);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    visibility: hidden;
    opacity: 0;
    width: min(260px, calc(100vw - 36px));
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 254, 253, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    gap: 12px;
  }

  .hero,
  .about,
  .work-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 50px;
  }

  .hero-collage {
    width: min(420px, 100%);
    min-height: 0;
  }

  .hero-mini-card {
    position: relative;
    inset: auto;
    width: auto;
    margin-top: 10px;
  }

  .hero-mini-card--top,
  .hero-mini-card--middle,
  .hero-mini-card--bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-collage__label {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 12px;
  }

  .about::after {
    right: 14px;
    width: 66px;
    height: 66px;
    font-size: 8px;
  }

  .hero-work,
  .hero-work img,
  .hero-work__placeholder {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .tool-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }

  .work-row__intro {
    padding: 0;
  }

  .work-row__intro span {
    margin-bottom: 12px;
  }

  .work-row__scroller {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
  }

  .work-card__overlay {
    display: none;
  }

  .work-card__focus {
    display: -webkit-box;
  }

  .work-card__button {
    display: inline-block;
  }

  .archive-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .single-work {
    padding-top: 42px;
  }

  .single-work__hero,
  .work-gallery {
    gap: 22px;
  }

  .single-work__hero figure,
  .work-gallery figure,
  .single-work__hero img,
  .work-gallery img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .site-brand__text {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .about__card,
  .music-card,
  .empty-state,
  .work-detail__meta {
    padding: 26px;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 8px;
  }

  .tool-list {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 88px;
    padding: 14px;
  }

  .contact-buttons {
    display: grid;
  }
}

/* Last-pass hero correction: avoid product-heavy tone and remove the large box. */
.retro-hero {
  grid-template-columns: minmax(360px, 0.95fr) minmax(380px, 0.9fr) !important;
  gap: clamp(26px, 4vw, 58px) !important;
  min-height: auto !important;
}

.retro-hero__copy h1 {
  max-width: 600px !important;
  font-size: clamp(34px, 4.15vw, 58px) !important;
  line-height: 1.28 !important;
}

.retro-hero__copy h1 span {
  font-size: clamp(48px, 6.4vw, 88px) !important;
}

.retro-hero__visual {
  min-height: clamp(360px, 36vw, 500px) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.retro-hero__visual::before,
.retro-hero__visual::after {
  content: none !important;
  display: none !important;
}

.retro-hero__visual .retro-photo,
.retro-hero__visual .retro-dummy {
  border: 7px solid #fffdf6 !important;
  background: #fffdf6 !important;
  box-shadow: 0 18px 34px rgba(62, 49, 42, 0.14) !important;
}

.retro-hero__visual .retro-photo--1,
.retro-hero__visual .retro-dummy--1 {
  top: 3% !important;
  left: 18% !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  width: 48% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 22px !important;
  transform: rotate(-4deg) !important;
}

.retro-hero__visual .retro-photo--2,
.retro-hero__visual .retro-dummy--2 {
  top: 10% !important;
  right: 2% !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 2 !important;
  width: 38% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 24px !important;
  transform: rotate(6deg) !important;
}

.retro-hero__visual .retro-photo--3,
.retro-hero__visual .retro-dummy--3 {
  left: 10% !important;
  bottom: 7% !important;
  top: auto !important;
  right: auto !important;
  z-index: 4 !important;
  width: 48% !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 999px !important;
  transform: rotate(3deg) !important;
}

.retro-hero__visual .retro-photo--4,
.retro-hero__visual .retro-dummy--4 {
  right: 7% !important;
  bottom: 9% !important;
  top: auto !important;
  left: auto !important;
  z-index: 1 !important;
  width: 34% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 18px !important;
  transform: rotate(-5deg) !important;
}

.retro-hero__visual .retro-dummy--1 {
  background: var(--accent-mint) !important;
}

.retro-hero__visual .retro-dummy--2 {
  background: var(--accent-pink) !important;
}

.retro-hero__visual .retro-dummy--3 {
  background: var(--accent-yellow) !important;
}

.retro-hero__visual .retro-dummy--4 {
  background: var(--accent-lavender) !important;
}

@media (max-width: 900px) {
  .retro-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .retro-hero__visual {
    min-height: 330px !important;
  }
}

/* Abstract, no-photo hero collage */
.hero-paper-collage {
  min-height: clamp(390px, 38vw, 520px) !important;
}

.hero-sample-card {
  position: absolute;
  overflow: hidden;
  padding: 18px;
  border: 7px solid #fffdf6;
  background: #fffdf6;
  box-shadow: 0 18px 34px rgba(62, 49, 42, 0.14);
}

.hero-sample-card__tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-sample-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.06;
}

.hero-sample-card--sns {
  top: 4%;
  left: 18%;
  z-index: 4;
  width: 46%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: #fffdf6;
  transform: rotate(-4deg);
}

.hero-sample-card--sns::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 54px;
  height: 1px;
  background: rgba(33, 28, 26, 0.12);
  box-shadow: 0 18px 0 rgba(33, 28, 26, 0.08), 0 36px 0 rgba(33, 28, 26, 0.08);
}

.hero-sample-card--product {
  top: 11%;
  right: 1%;
  z-index: 2;
  width: 38%;
  aspect-ratio: 4 / 3;
  border-radius: 50% 44% 46% 52%;
  background: #f7e6ec;
  transform: rotate(7deg);
}

.hero-sample-card--web {
  left: 8%;
  bottom: 7%;
  z-index: 5;
  width: 50%;
  aspect-ratio: 16 / 10;
  border-radius: 999px;
  background: #e3f4ec;
  transform: rotate(3deg);
}

.hero-sample-card--ai {
  right: 8%;
  bottom: 8%;
  z-index: 3;
  width: 34%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #f8e8a7;
  transform: rotate(-5deg);
}

.hero-sample-card__circle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(33, 28, 26, 0.22);
  border-radius: 50%;
  background: var(--accent-mint);
}

.hero-sample-card__lines {
  position: absolute;
  left: 18px;
  right: 106px;
  bottom: 24px;
  display: grid;
  gap: 8px;
}

.hero-sample-card__lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(33, 28, 26, 0.18);
}

.hero-package {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: grid;
  width: 94px;
  height: 116px;
  place-items: center;
  border: 2px solid rgba(33, 28, 26, 0.18);
  border-radius: 16px 16px 22px 22px;
  background: #fffdf6;
  text-align: center;
}

.hero-package span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-yellow);
}

.hero-package strong {
  font-size: 13px;
}

.hero-package small {
  color: var(--ink-soft);
  font-size: 9px;
}

.hero-browser {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 68px;
  display: flex;
  gap: 7px;
  height: 26px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #fffdf6;
}

.hero-browser span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-pink);
}

.hero-ui-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-ui-grid i {
  aspect-ratio: 1 / 0.75;
  border-radius: 10px;
  background: rgba(255, 253, 246, 0.88);
}

.hero-sparkles span {
  position: absolute;
  display: block;
  width: 34px;
  height: 34px;
  background: #fffdf6;
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.hero-sparkles span:nth-child(1) {
  right: 22px;
  top: 26px;
}

.hero-sparkles span:nth-child(2) {
  left: 26px;
  bottom: 36px;
  width: 24px;
  height: 24px;
}

.hero-sparkles span:nth-child(3) {
  right: 46px;
  bottom: 38px;
  width: 18px;
  height: 18px;
}

.hero-collage-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.72;
}

.hero-collage-orbit--mint {
  left: 0;
  bottom: 20%;
  width: 96px;
  height: 96px;
  background: var(--accent-mint);
}

.hero-collage-orbit--pink {
  right: 6%;
  top: 4%;
  width: 120px;
  height: 120px;
  background: var(--accent-pink);
}

.hero-collage-note {
  position: absolute;
  right: 15%;
  bottom: 0;
  z-index: 6;
  padding: 8px 18px;
  border: 1px solid var(--border-ink);
  border-radius: 999px;
  background: #fffdf6;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 900;
  transform: rotate(-2deg);
}

@media (max-width: 560px) {
  .hero-sample-card {
    padding: 14px;
    border-width: 5px;
  }

  .hero-sample-card h2 {
    font-size: 20px;
  }

  .hero-collage-note {
    right: 4%;
    bottom: 4%;
  }
}

/* Finished mini-design hero cards: no photos, no empty color blocks. */
.hero-paper-collage {
  min-height: clamp(390px, 36vw, 500px) !important;
}

.hero-paper-collage .hero-sample-card {
  padding: 16px !important;
  border: 6px solid #fffdf6 !important;
  border-radius: 26px !important;
  box-shadow: 0 16px 30px rgba(62, 49, 42, 0.12) !important;
}

.hero-paper-collage .hero-sample-card h2 {
  margin: 0 !important;
  color: var(--ink-strong) !important;
  font-size: clamp(19px, 2vw, 28px) !important;
  line-height: 1.12 !important;
}

.hero-paper-collage .hero-sample-card__tag {
  position: relative;
  z-index: 2;
  margin: 0 0 8px !important;
  padding: 3px 9px;
  border: 1px solid rgba(33, 28, 26, 0.13);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.72);
  color: var(--ink-soft) !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
}

.hero-sample-card--sns {
  top: 1% !important;
  left: 13% !important;
  z-index: 4 !important;
  width: 47% !important;
  aspect-ratio: 1.18 / 1 !important;
  background: #ffdce2 !important;
  transform: rotate(-4deg) !important;
}

.hero-sample-card--product {
  top: 10% !important;
  right: 2% !important;
  z-index: 3 !important;
  width: 39% !important;
  aspect-ratio: 1.03 / 1 !important;
  background: #f9e59d !important;
  transform: rotate(5deg) !important;
}

.hero-sample-card--web {
  left: 4% !important;
  bottom: 5% !important;
  z-index: 5 !important;
  width: 51% !important;
  aspect-ratio: 1.35 / 1 !important;
  background: #cceee3 !important;
  transform: rotate(3deg) !important;
}

.hero-sample-card--ai {
  right: 9% !important;
  bottom: 3% !important;
  z-index: 4 !important;
  width: 35% !important;
  aspect-ratio: 1 / 1 !important;
  background: #ddd4ee !important;
  transform: rotate(-5deg) !important;
}

.hero-post-frame {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #fffdf6;
}

.hero-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #cceee3;
  box-shadow: inset 0 0 0 10px #fff3a8;
}

.hero-post-lines {
  display: grid;
  gap: 7px;
}

.hero-post-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(33, 28, 26, 0.18);
}

.hero-post-lines span:nth-child(2) {
  width: 76%;
}

.hero-post-lines span:nth-child(3) {
  width: 54%;
}

.hero-post-dots {
  grid-column: 1 / -1;
  display: flex;
  gap: 7px;
}

.hero-post-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f6c7cf;
}

.hero-product-objects {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 58px;
  height: 96px;
}

.hero-product-objects i {
  position: absolute;
  display: block;
}

.hero-product-oval {
  left: 12px;
  bottom: 6px;
  width: 92px;
  height: 54px;
  border-radius: 50%;
  background: #fffdf6;
  border: 2px solid rgba(33, 28, 26, 0.1);
}

.hero-product-circle {
  right: 28px;
  top: 4px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffdce2;
}

.hero-product-leaf {
  right: 74px;
  bottom: 18px;
  width: 42px;
  height: 62px;
  border-radius: 80% 0 80% 0;
  background: #cceee3;
  transform: rotate(-28deg);
}

.hero-point-labels {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.hero-point-labels span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fffdf6;
  color: var(--ink-strong);
  font-size: 11px;
  font-weight: 900;
}

.hero-browser {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 74px;
  display: flex;
  gap: 7px;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fffdf6;
}

.hero-browser span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd6db;
}

.hero-nav-lines {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 116px;
  display: flex;
  gap: 8px;
}

.hero-nav-lines span {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: rgba(33, 28, 26, 0.16);
}

.hero-ui-grid {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.hero-ui-grid i {
  height: 52px;
  border-radius: 13px;
  background: #fffdf6;
  box-shadow: inset 0 -12px 0 rgba(255, 220, 226, 0.55);
}

.hero-landscape {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 92px;
  overflow: hidden;
  border-radius: 18px;
  background: #fffdf6;
}

.hero-landscape i {
  position: absolute;
  bottom: -18px;
  width: 120px;
  height: 58px;
  border-radius: 50% 50% 0 0;
  background: #cceee3;
}

.hero-landscape i:nth-of-type(1) {
  left: -20px;
}

.hero-landscape i:nth-of-type(2) {
  right: -20px;
  background: #f9e59d;
}

.hero-sun {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffd6db;
}

.hero-sparkles span {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  background: #fffdf6;
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.hero-sparkles span:nth-child(1) {
  right: 22px;
  top: 20px;
}

.hero-sparkles span:nth-child(2) {
  left: 24px;
  top: 72px;
  width: 16px;
  height: 16px;
}

.hero-sparkles span:nth-child(3) {
  right: 58px;
  top: 66px;
  width: 13px;
  height: 13px;
}

@media (max-width: 560px) {
  .hero-paper-collage {
    min-height: 360px !important;
  }

  .hero-paper-collage .hero-sample-card {
    padding: 12px !important;
    border-width: 5px !important;
  }

  .hero-paper-collage .hero-sample-card h2 {
    font-size: 18px !important;
  }

  .hero-post-frame,
  .hero-product-objects,
  .hero-point-labels,
  .hero-browser,
  .hero-nav-lines,
  .hero-ui-grid,
  .hero-landscape {
    transform: scale(0.82);
    transform-origin: bottom left;
  }
}

/* Works layout refinement: balanced category column and natural card grid. */
.retro-works {
  width: min(1080px, calc(100vw - 44px)) !important;
  margin: 28px auto 48px !important;
}

.retro-works .section-heading {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin: 0 0 20px !important;
  padding: 0 0 14px !important;
  border-top: 0 !important;
  border-bottom: 1px dashed rgba(33, 28, 26, 0.22) !important;
}

.retro-works .section-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px) !important;
  line-height: 1.1 !important;
}

.retro-works .section-heading a {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  padding: 8px 0 !important;
  color: var(--ink-strong) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.retro-work-band {
  display: grid !important;
  grid-template-columns: minmax(130px, 180px) minmax(0, 1fr) !important;
  gap: clamp(18px, 2.6vw, 30px) !important;
  align-items: start !important;
  margin: 0 0 34px !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.retro-work-band__intro {
  padding: 4px 0 0 !important;
}

.retro-work-band__intro span {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 8px !important;
  padding: 2px 9px !important;
  border-radius: 999px !important;
  background: var(--accent-pink) !important;
  color: var(--ink-strong) !important;
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

.retro-work-band__intro h3 {
  display: block !important;
  margin: 0 0 8px !important;
  color: var(--ink-strong) !important;
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 1.35 !important;
}

.retro-work-band__intro p {
  max-width: 170px !important;
  margin: 0 !important;
  color: var(--ink-soft) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.75 !important;
}

.retro-work-band__cards {
  display: grid !important;
  grid-auto-flow: initial !important;
  grid-auto-columns: initial !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 320px)) !important;
  justify-content: start !important;
  align-items: start !important;
  gap: 18px !important;
  overflow: visible !important;
  padding: 0 !important;
}

.retro-work-band__cards .work-card,
.archive-grid .work-card {
  width: 100% !important;
  max-width: 320px !important;
}

.work-card__link {
  border-radius: 18px !important;
  background: var(--paper-light) !important;
  box-shadow: 0 10px 22px rgba(62, 49, 42, 0.1) !important;
}

.work-card__image img,
.work-card__placeholder {
  aspect-ratio: 4 / 5 !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 18px 18px 0 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.work-card__body {
  padding: 13px 14px 15px !important;
}

.work-card__category {
  margin: 0 0 6px !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--ink-soft) !important;
  font-size: 12px !important;
}

.work-card__body h3 {
  font-size: 17px !important;
  line-height: 1.45 !important;
}

.work-card__button {
  margin-top: 10px !important;
}

.archive-grid {
  width: min(1080px, calc(100vw - 44px)) !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 320px)) !important;
  justify-content: start !important;
  gap: 20px !important;
}

@media (max-width: 760px) {
  .retro-work-band {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .retro-work-band__intro p {
    max-width: none !important;
  }

  .retro-work-band__cards,
  .archive-grid {
    grid-template-columns: 1fr !important;
  }

  .retro-work-band__cards .work-card,
  .archive-grid .work-card {
    max-width: none !important;
  }

  .retro-works .section-heading {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
}

/* Show complete portfolio images in Works cards and detail pages. */
.retro-work-band__cards {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 340px)) !important;
}

.retro-work-band__cards .work-card,
.archive-grid .work-card {
  max-width: 340px !important;
}

.work-card__image {
  display: grid !important;
  min-height: 0 !important;
  max-height: 360px !important;
  padding: 14px !important;
  place-items: center !important;
  overflow: hidden !important;
  background: #fffaf2 !important;
}

.work-card__image img,
.work-card__placeholder {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 332px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 12px !important;
}

.work-card__link:hover .work-card__image img {
  transform: none !important;
}

.work-card__overlay,
.work-card__link:hover .work-card__overlay,
.work-card__link:focus-visible .work-card__overlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.work-card__body {
  background: var(--paper-light) !important;
}

.archive-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 340px)) !important;
  justify-content: start !important;
}

.single-work__main-image,
.work-gallery figure {
  width: min(900px, 100%) !important;
  margin: 24px auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.single-work__main-image img,
.work-gallery img {
  display: block !important;
  width: 100% !important;
  max-width: 900px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 16px !important;
}

@media (max-width: 760px) {
  .retro-work-band__cards,
  .archive-grid {
    grid-template-columns: 1fr !important;
  }

  .retro-work-band__cards .work-card,
  .archive-grid .work-card {
    max-width: none !important;
  }

  .work-card__image {
    max-height: 420px !important;
  }

  .work-card__image img {
    max-height: 392px !important;
  }
}

/* Keep the hero collage graphic-led: remove the heavy black text inside cards. */
.hero-paper-collage .hero-sample-card__tag,
.hero-paper-collage .hero-sample-card h2,
.hero-paper-collage .hero-point-labels,
.hero-paper-collage .hero-collage-note {
  display: none !important;
}

.hero-paper-collage .hero-sample-card {
  min-height: 0;
}

.hero-sample-card--sns::after,
.hero-sample-card--product::after,
.hero-sample-card--web::after,
.hero-sample-card--ai::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.82);
  box-shadow: 70px 0 0 rgba(255, 253, 246, 0.48);
}

.hero-post-frame {
  top: 64px !important;
  bottom: 18px !important;
}

.hero-product-objects {
  top: 50px !important;
  bottom: auto !important;
  height: 122px !important;
}

.hero-product-oval {
  left: 12px !important;
  bottom: 12px !important;
  width: 110px !important;
  height: 66px !important;
}

.hero-product-circle {
  right: 18px !important;
  top: 8px !important;
  width: 70px !important;
  height: 70px !important;
}

.hero-product-leaf {
  right: 78px !important;
  bottom: 18px !important;
}

.hero-browser {
  top: 58px !important;
}

.hero-nav-lines {
  top: 102px !important;
}

.hero-ui-grid {
  bottom: 22px !important;
}

.hero-landscape {
  top: 58px !important;
  bottom: auto !important;
  height: 116px !important;
}

.hero-sparkles span:nth-child(1) {
  right: 22px !important;
  top: 24px !important;
}

.hero-sparkles span:nth-child(2) {
  left: 28px !important;
  top: 36px !important;
}

/* Final magazine-style retro pop layout */
:root {
  --paper: #fff8e9;
  --paper-light: #fffdf6;
  --ink-strong: #211c1a;
  --ink-soft: #665d59;
  --accent-mint: #bfe8d8;
  --accent-pink: #ffd6db;
  --accent-yellow: #f8df8b;
  --accent-lavender: #d8cee9;
  --border-ink: rgba(33, 28, 26, 0.13);
  --shadow-paper: 0 16px 32px rgba(62, 49, 42, 0.12);
}

body {
  background: var(--paper) !important;
  background-image: none !important;
  color: var(--ink-strong);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

body::before,
.hero::before,
.hero::after,
.retro-hero::before,
.retro-hero::after,
.retro-hero__visual::before,
.retro-hero__visual::after,
.retro-about::before,
.retro-music::before,
.site-footer::before {
  content: none !important;
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px max(22px, calc((100vw - 1120px) / 2));
  background: rgba(255, 248, 233, 0.96) !important;
  border-bottom: 1px solid var(--border-ink);
  backdrop-filter: blur(12px);
}

.site-brand {
  gap: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 700;
  line-height: 1.1;
}

.site-brand__mark {
  display: none;
}

.site-nav ul {
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent-pink);
}

.retro-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  width: min(1120px, calc(100vw - 44px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0 46px;
  background: transparent !important;
}

.retro-hero .retro-label,
.retro-label,
.section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.retro-hero__copy {
  position: relative;
}

.retro-hero__copy::before {
  content: "";
  position: absolute;
  left: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent-yellow);
  clip-path: polygon(50% 0, 58% 34%, 88% 16%, 66% 46%, 100% 50%, 66% 56%, 88% 84%, 58% 66%, 50% 100%, 42% 66%, 12% 84%, 34% 56%, 0 50%, 34% 46%, 12% 16%, 42% 34%);
  opacity: 0.75;
  z-index: -1;
}

.retro-hero__copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.23;
  word-break: keep-all;
  overflow-wrap: normal;
}

.retro-hero__copy h1 span {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(52px, 8.2vw, 108px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.95;
  white-space: nowrap;
}

.retro-hero__copy h1::after {
  content: "";
  display: block;
  width: min(360px, 70%);
  height: 7px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: var(--accent-pink);
}

.retro-hero__copy p:not(.retro-label) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--accent-mint) !important;
  color: var(--ink-strong);
  box-shadow: none;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.button-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(33, 28, 26, 0.12);
}

.retro-hero__visual {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  background: transparent !important;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.retro-hero__visual .retro-photo,
.retro-hero__visual .retro-dummy {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid var(--paper-light);
  background: var(--paper-light);
  box-shadow: var(--shadow-paper);
}

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

.retro-photo--1,
.retro-dummy--1 {
  top: 4%;
  left: 16%;
  z-index: 3;
  width: 50%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  transform: rotate(-4deg);
}

.retro-photo--2,
.retro-dummy--2 {
  top: 9%;
  right: 0;
  z-index: 2;
  width: 42%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  transform: rotate(7deg);
}

.retro-photo--3,
.retro-dummy--3 {
  left: 8%;
  bottom: 7%;
  z-index: 4;
  width: 48%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  transform: rotate(3deg);
}

.retro-photo--4,
.retro-dummy--4 {
  right: 4%;
  bottom: 4%;
  z-index: 1;
  width: 38%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: rotate(-3deg);
}

.retro-hero__visual::selection {
  background: transparent;
}

.retro-dummy--1,
.retro-dummy--4 {
  background: var(--accent-mint);
}

.retro-dummy--2 {
  background: var(--accent-pink);
}

.retro-dummy--3 {
  background: var(--accent-yellow);
}

.retro-hero__visual > :nth-child(1)::after,
.retro-hero__visual > :nth-child(2)::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-pink);
  opacity: 0.32;
  z-index: -1;
}

.retro-hero__visual > :nth-child(1)::after {
  right: -42px;
  top: 18px;
}

.retro-hero__visual > :nth-child(2)::after {
  left: -34px;
  bottom: -30px;
  background: var(--accent-mint);
}

.retro-about {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  width: min(1040px, calc(100vw - 44px));
  margin: 22px auto 30px;
  padding: 18px 0;
  border: 0;
  background: transparent !important;
  box-shadow: none;
}

.retro-about::after {
  content: "";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-pink);
  opacity: 0.9;
  z-index: -1;
}

.retro-about__title h2,
.retro-music h2,
.tools__heading h2,
.section-heading h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  word-break: keep-all;
}

.retro-about__body {
  padding: 0 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 2.05;
}

.tools {
  width: min(1040px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.tools__heading {
  margin-bottom: 14px;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tool-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid var(--border-ink);
  border-radius: 12px;
  background: var(--paper-light) !important;
  box-shadow: 0 8px 18px rgba(62, 49, 42, 0.08);
}

.tool-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-mint) !important;
  color: var(--ink-strong);
  font-weight: 900;
}

.tool-card:nth-child(2n) span {
  background: var(--accent-pink) !important;
}

.tool-card:nth-child(3n) span {
  background: var(--accent-yellow) !important;
}

.tool-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.tool-card p {
  grid-column: 2;
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.retro-works {
  width: min(1160px, calc(100vw - 44px));
  margin: 28px auto 46px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-top: 8px;
  border-top: 1px dashed rgba(33, 28, 26, 0.26);
}

.section-heading a,
.text-link {
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.retro-work-band {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  margin: 20px 0 24px;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
}

.retro-work-band__intro {
  align-self: start;
  padding-top: 10px;
}

.retro-work-band__intro span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin: 0 10px 8px 0;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-yellow);
  color: transparent;
  font-size: 0;
}

.retro-work-band:nth-of-type(2n) .retro-work-band__intro span {
  background: var(--accent-pink);
}

.retro-work-band:nth-of-type(3n) .retro-work-band__intro span {
  background: var(--accent-mint);
}

.retro-work-band:nth-of-type(4n) .retro-work-band__intro span {
  background: var(--accent-lavender);
}

.retro-work-band__intro h3 {
  display: inline;
  margin: 0;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 700;
}

.retro-work-band__intro p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.retro-work-band__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 340px);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 4px 18px;
  scrollbar-color: var(--accent-mint) transparent;
}

.work-card__link {
  display: block;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--border-ink);
  border-radius: 10px;
  background: var(--paper-light) !important;
  box-shadow: 0 10px 20px rgba(62, 49, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card__link:hover {
  transform: translateY(-5px) rotate(-0.7deg);
  box-shadow: 0 16px 26px rgba(62, 49, 42, 0.14);
}

.work-card__image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--paper);
}

.work-card__image img,
.work-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.work-card__link:hover .work-card__image img {
  transform: scale(1.045);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px;
  background: rgba(33, 28, 26, 0.62);
  color: #fffdf6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.work-card__link:hover .work-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card__overlay p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.work-card__thumbs {
  display: flex;
  gap: 8px;
}

.work-card__thumbs span {
  overflow: hidden;
  width: 54px;
  height: 42px;
  border: 2px solid var(--paper-light);
  border-radius: 7px;
}

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

.work-card__body {
  padding: 14px 14px 16px;
}

.work-card__category {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.work-card__body h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.work-card__focus {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.work-card__button {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 900;
}

.retro-music {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  width: min(1040px, calc(100vw - 44px));
  margin: 34px auto;
  padding: 28px;
  border: 1px solid var(--border-ink);
  border-radius: 26px;
  background: var(--paper-light) !important;
  box-shadow: 0 14px 28px rgba(62, 49, 42, 0.08);
}

.retro-music__copy,
.retro-about__body {
  color: var(--ink-soft);
}

.retro-music__videos,
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-video,
.video-card {
  overflow: hidden;
  border: 1px solid var(--border-ink);
  border-radius: 14px;
  background: var(--paper-light);
  box-shadow: 0 10px 22px rgba(62, 49, 42, 0.09);
}

.mini-video h3,
.video-card__body,
.video-card h2 {
  color: var(--ink-strong);
}

.mini-video h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 15px;
}

.video-embed {
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
}

.site-footer {
  position: relative;
  margin-top: 42px;
  padding: 52px 20px 18px;
  background: var(--paper) !important;
  background-image: none !important;
  border-top: 1px solid var(--border-ink);
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: var(--accent-mint);
  opacity: 0.75;
  pointer-events: none;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  align-items: center;
  width: min(1040px, calc(100vw - 44px));
  margin: 0 auto 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.footer-contact h2 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(28px, 3vw, 40px);
}

.footer-contact p {
  color: var(--ink-soft);
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-buttons a {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--border-ink);
  border-radius: 18px;
  background: var(--accent-pink);
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 700;
}

.contact-buttons a:nth-child(2) {
  background: var(--accent-yellow);
}

.copyright {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  text-align: center;
}

.page-hero,
.single-work__hero {
  width: min(980px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 54px 0 26px;
  text-align: left;
}

.page-hero h1,
.single-work__heading h1 {
  margin: 0 0 14px;
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.2;
}

.page-hero p,
.single-work__heading p {
  color: var(--ink-soft);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1120px, calc(100vw - 44px));
  margin: 24px auto 56px;
}

.term-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(980px, calc(100vw - 44px));
  margin: 0 auto 22px;
}

.term-filter a {
  padding: 8px 16px;
  border: 1px solid var(--border-ink);
  border-radius: 999px;
  background: var(--paper-light);
  color: var(--ink-strong);
  font-weight: 800;
}

.single-work__main-image,
.work-gallery figure {
  width: min(900px, 100%);
  margin: 24px auto;
}

.single-work__main-image img,
.work-gallery img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(62, 49, 42, 0.1);
}

.work-detail {
  width: min(900px, calc(100vw - 44px));
  margin: 18px auto 10px;
}

.work-detail__content {
  padding: 22px 24px;
  border: 1px solid var(--border-ink);
  border-radius: 16px;
  background: var(--paper-light);
}

.work-detail h2 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 20px;
}

.work-gallery {
  width: min(900px, calc(100vw - 44px));
  margin: 0 auto 60px;
}

.video-page .page-hero,
.video-single .page-hero,
.video-single__embed,
.video-grid {
  width: min(1040px, calc(100vw - 44px));
  margin-left: auto;
  margin-right: auto;
}

.video-single__embed {
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .retro-hero,
  .retro-about,
  .retro-music,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .retro-hero {
    padding-top: 38px;
  }

  .retro-hero__visual {
    min-height: 430px;
  }

  .retro-work-band {
    grid-template-columns: 1fr;
  }

  .tool-list,
  .archive-grid,
  .retro-music__videos,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    top: 74px;
    background: var(--paper-light);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .retro-hero,
  .retro-works,
  .retro-about,
  .retro-music,
  .tools,
  .footer-contact,
  .archive-grid,
  .page-hero,
  .single-work__hero,
  .work-detail,
  .work-gallery,
  .video-page .page-hero,
  .video-single .page-hero,
  .video-single__embed,
  .video-grid {
    width: min(100vw - 28px, 1120px);
  }

  .retro-hero__copy::before {
    left: auto;
    right: 0;
    top: -24px;
    width: 74px;
    height: 74px;
  }

  .retro-hero__copy h1 {
    font-size: 34px;
  }

  .retro-hero__copy h1 span {
    font-size: 46px;
    white-space: normal;
  }

  .retro-hero__copy p:not(.retro-label) br {
    display: none;
  }

  .retro-hero__visual {
    min-height: 340px;
  }

  .retro-work-band__cards {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
  }

  .work-card__overlay {
    display: none;
  }

  .tool-list,
  .archive-grid,
  .retro-music__videos,
  .video-grid,
  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 76px;
  }
}

/* Tone-matched hero collage refinement */
.retro-hero {
  grid-template-columns: minmax(360px, 0.95fr) minmax(380px, 0.9fr) !important;
  gap: clamp(26px, 4vw, 58px) !important;
}

.retro-hero__copy h1 {
  max-width: 600px !important;
  font-size: clamp(34px, 4.15vw, 58px) !important;
  line-height: 1.28 !important;
}

.retro-hero__copy h1 span {
  font-size: clamp(48px, 6.4vw, 88px) !important;
}

.retro-hero__visual {
  min-height: clamp(360px, 36vw, 500px) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.retro-hero__visual .retro-photo,
.retro-hero__visual .retro-dummy {
  border-color: #fffdf6 !important;
  box-shadow: 0 18px 34px rgba(62, 49, 42, 0.14) !important;
}

.retro-hero__visual .retro-photo--1,
.retro-hero__visual .retro-dummy--1 {
  top: 3% !important;
  left: 18% !important;
  width: 48% !important;
  border-radius: 22px !important;
  transform: rotate(-4deg) !important;
}

.retro-hero__visual .retro-photo--2,
.retro-hero__visual .retro-dummy--2 {
  top: 10% !important;
  right: 2% !important;
  width: 38% !important;
  border-radius: 24px !important;
  transform: rotate(6deg) !important;
}

.retro-hero__visual .retro-photo--3,
.retro-hero__visual .retro-dummy--3 {
  left: 10% !important;
  bottom: 7% !important;
  width: 48% !important;
  border-radius: 999px !important;
  transform: rotate(3deg) !important;
}

.retro-hero__visual .retro-photo--4,
.retro-hero__visual .retro-dummy--4 {
  right: 7% !important;
  bottom: 9% !important;
  width: 34% !important;
  border-radius: 18px !important;
  transform: rotate(-5deg) !important;
}

.retro-hero__visual .retro-dummy {
  display: grid;
  place-items: center;
}

.retro-hero__visual .retro-dummy--1 {
  background: var(--accent-mint) !important;
}

.retro-hero__visual .retro-dummy--2 {
  background: var(--accent-pink) !important;
}

.retro-hero__visual .retro-dummy--3 {
  background: var(--accent-yellow) !important;
}

.retro-hero__visual .retro-dummy--4 {
  background: var(--accent-lavender) !important;
}

.retro-hero__copy::before {
  opacity: 0.55 !important;
  transform: scale(0.78) !important;
}

@media (max-width: 900px) {
  .retro-hero {
    grid-template-columns: 1fr !important;
  }
}

/* Portfolio-first retro pop refresh. */
:root {
  --cream: #fff8e8;
  --cream-deep: #f8edda;
  --ink: #26201f;
  --muted-ink: #625857;
  --mint: #bfeee3;
  --pink: #ffd7df;
  --line-soft: rgba(38, 32, 31, 0.12);
  --shadow-pop: 0 18px 38px rgba(38, 32, 31, 0.12);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", Arial, sans-serif;
}

body::before,
.retro-hero::before,
.retro-hero__visual::before,
.retro-hero__visual::after,
.site-footer::before,
.retro-about::before,
.retro-music::before {
  content: none !important;
}

.site-header {
  background: rgba(255, 248, 232, 0.94);
  border-bottom: 1px solid var(--line-soft);
}

.site-brand,
.site-nav a {
  color: var(--ink);
}

.retro-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1120px, calc(100vw - 40px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0 34px;
  background: transparent !important;
}

.retro-label {
  margin: 0 0 16px;
  color: var(--muted-ink);
  font-family: "Arial Rounded MT Bold", "M PLUS Rounded 1c", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.retro-hero__copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.14;
}

.retro-hero__copy h1 span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Arial Black", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.retro-hero__copy p:not(.retro-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted-ink);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 28px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--mint);
  font-weight: 800;
}

.retro-hero__visual {
  position: relative;
  min-height: clamp(360px, 40vw, 500px);
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.retro-photo,
.retro-dummy {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: var(--shadow-pop);
}

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

.retro-photo--1,
.retro-dummy--1 {
  right: 4%;
  top: 4%;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.retro-photo--2,
.retro-dummy--2 {
  left: 2%;
  top: 24%;
  z-index: 3;
  width: 56%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  transform: rotate(-5deg);
}

.retro-photo--3,
.retro-dummy--3 {
  right: 12%;
  bottom: 4%;
  z-index: 4;
  width: 48%;
  aspect-ratio: 5 / 4;
  border-radius: 32px;
  transform: rotate(4deg);
}

.retro-dummy--1 {
  background: var(--mint);
}

.retro-dummy--2,
.retro-dummy--3 {
  background: var(--pink);
}

.retro-badge {
  display: none !important;
}

.retro-works {
  width: min(1180px, calc(100vw - 40px));
  margin: 28px auto 58px;
}

.section-heading {
  align-items: end;
  margin-bottom: 18px;
}

.section-heading h2,
.tools__heading h2,
.retro-about__title h2,
.retro-music h2 {
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.section-heading a,
.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 6px;
  text-underline-offset: -2px;
}

.retro-work-band,
.retro-work-band.is-pink,
.retro-work-band.is-mint,
.retro-work-band.is-yellow,
.retro-work-band.is-lavender {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  margin: 18px 0;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}

.retro-work-band__intro {
  align-self: start;
  padding: 16px 0;
}

.retro-work-band__intro span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.retro-work-band__intro h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.retro-work-band__intro p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 13px;
  line-height: 1.7;
}

.retro-work-band__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 6px 18px;
}

.work-card__link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--line-soft);
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 7px 7px 0 rgba(191, 238, 227, 0.72);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.work-card__link:hover {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: 10px 10px 0 rgba(255, 215, 223, 0.85);
}

.work-card__image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--cream-deep);
}

.work-card__image img,
.work-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.work-card__link:hover .work-card__image img {
  transform: scale(1.045);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px;
  background: rgba(38, 32, 31, 0.64);
  color: #fffdfa;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.work-card__link:hover .work-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card__overlay p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.work-card__thumbs {
  display: flex;
  gap: 8px;
}

.work-card__thumbs span {
  overflow: hidden;
  width: 52px;
  height: 40px;
  border: 2px solid #fffdfa;
  border-radius: 8px;
}

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

.work-card__body {
  padding: 15px 16px 18px;
}

.work-card__category {
  display: inline-block;
  margin: 0 0 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.work-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.work-card__focus {
  margin: 10px 0 0;
  color: var(--muted-ink);
  font-size: 13px;
  line-height: 1.7;
}

.work-card__button {
  display: inline-block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.retro-about,
.retro-music {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 26px;
  width: min(1040px, calc(100vw - 40px));
  margin: 36px auto;
  padding: 28px;
  border: 2px solid var(--line-soft);
  border-radius: 22px;
  background: #fffdfa !important;
  box-shadow: 7px 7px 0 rgba(255, 215, 223, 0.58);
}

.retro-about__body,
.retro-music__copy {
  color: var(--muted-ink);
  line-height: 1.9;
}

.tools {
  width: min(1040px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.tool-list {
  gap: 12px;
}

.tool-card {
  min-height: 0;
  padding: 16px;
  border: 2px solid var(--line-soft);
  border-radius: 16px;
  background: #fffdfa;
  box-shadow: 5px 5px 0 rgba(191, 238, 227, 0.7);
}

.tool-card span {
  background: var(--mint);
  color: var(--ink);
}

.site-footer {
  margin-top: 42px;
  padding: 50px 20px 20px;
  background: var(--cream-deep) !important;
  background-image: none !important;
  border-top: 2px solid var(--line-soft);
}

.footer-contact {
  background: #fffdfa;
  border: 2px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 7px 7px 0 rgba(255, 215, 223, 0.58);
}

@media (max-width: 900px) {
  .retro-hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .retro-hero__visual {
    min-height: 390px;
  }

  .retro-work-band,
  .retro-about,
  .retro-music {
    grid-template-columns: 1fr;
  }

  .retro-work-band__intro {
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .retro-hero,
  .retro-works,
  .retro-about,
  .retro-music,
  .tools {
    width: min(100vw - 28px, 1120px);
  }

  .retro-hero__copy h1 {
    font-size: 34px;
  }

  .retro-hero__copy h1 span {
    font-size: 42px;
  }

  .retro-hero__visual {
    min-height: 330px;
  }

  .retro-work-band__cards {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    padding: 0 0 8px;
  }

  .work-card__overlay {
    position: static;
    display: none;
  }

  .work-card__focus {
    display: block;
  }
}

/* Final visual corrections: smaller hero type and compact work images. */
.hero h1 {
  max-width: 560px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.45;
  letter-spacing: 0;
}

.hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 30px;
}

.hero-collage {
  width: min(340px, 100%);
  min-height: 340px;
  padding: 18px;
}

.hero-collage__dummy strong {
  font-size: 20px;
}

.hero-mini-card {
  width: 126px;
  padding: 10px 12px;
}

.hero-mini-card strong {
  font-size: 12px;
}

.work-row__scroller {
  grid-auto-columns: minmax(240px, 310px);
  gap: 16px;
}

.archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card__body {
  padding: 12px 14px 14px;
}

.work-card h3 {
  font-size: 15px;
}

.work-card__image img,
.work-card__placeholder {
  aspect-ratio: 4 / 3;
}

.single-work__article {
  max-width: 680px;
}

.single-work__hero h1 {
  font-size: clamp(25px, 3vw, 34px);
}

.single-work__hero figure,
.work-gallery figure {
  width: min(560px, 100%);
}

.single-work__hero img,
.work-gallery img {
  max-width: 560px;
}

.work-detail__content {
  max-width: 620px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    width: min(360px, 100%);
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-row__scroller {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 25px;
    line-height: 1.5;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }
}

/* Retro pop redesign */
:root {
  --rp-cream: #fff8d8;
  --rp-pink: #ffbfd1;
  --rp-mint: #a9eadb;
  --rp-blue: #9ee4f2;
  --rp-yellow: #ffe66f;
  --rp-lavender: #d9c8ff;
  --rp-peach: #ffc4a3;
  --rp-ink: #3d3434;
  --rp-brown: #765a58;
}

body {
  background: #fff8e9;
  color: var(--rp-ink);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

body::before {
  display: none;
}

.site-header {
  background: rgba(255, 250, 240, 0.92);
}

.retro-label,
.section-kicker {
  display: inline-block;
  color: var(--rp-brown);
  font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.retro-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100vw - 44px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 46px 0 62px;
}

.retro-hero__copy h1 {
  margin: 14px 0 22px;
  color: var(--rp-ink);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.retro-hero__copy h1 span {
  display: block;
  margin-bottom: 10px;
  color: #111;
  font-family: "Arial Black", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(40px, 6vw, 92px);
  letter-spacing: 0.03em;
}

.retro-hero__copy p:not(.retro-label) {
  max-width: 520px;
  color: #685b57;
  font-size: 15px;
  line-height: 2;
}

.retro-hero__visual {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  background: transparent;
  box-shadow: 0 24px 60px rgba(78, 62, 50, 0.12);
  overflow: hidden;
}

.retro-hero__visual::before {
  content: "PORTFOLIO";
  position: absolute;
  left: 24px;
  top: 28px;
  writing-mode: vertical-rl;
  color: rgba(61, 52, 52, 0.22);
  font-family: "Arial Black", sans-serif;
  font-size: 42px;
  letter-spacing: 0.08em;
}

.retro-photo,
.retro-dummy {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 18px 38px rgba(78, 62, 50, 0.16);
}

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

.retro-photo--1 {
  right: 52px;
  top: 54px;
  width: 52%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.retro-photo--2 {
  left: 90px;
  top: 170px;
  width: 42%;
  aspect-ratio: 4 / 3;
  border: 14px solid #fffaf0;
  border-radius: 30px;
  transform: rotate(-5deg);
}

.retro-photo--3 {
  right: 60px;
  bottom: 66px;
  width: 44%;
  aspect-ratio: 16 / 10;
  border-radius: 999px;
  transform: rotate(4deg);
}

.retro-photo--4 {
  left: 62px;
  bottom: 38px;
  width: 24%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
}

.retro-dummy {
  border-radius: 34px;
}

.retro-dummy--1 {
  right: 60px;
  top: 60px;
  width: 52%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--rp-pink);
}

.retro-dummy--2 {
  left: 90px;
  top: 190px;
  width: 42%;
  aspect-ratio: 4 / 3;
  background: var(--rp-mint);
  transform: rotate(-5deg);
}

.retro-dummy--3 {
  right: 64px;
  bottom: 78px;
  width: 44%;
  aspect-ratio: 16 / 10;
  border-radius: 999px;
  background: var(--rp-blue);
}

.retro-badge {
  position: absolute;
  right: 26px;
  top: 24px;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 2px solid rgba(61, 52, 52, 0.22);
  border-radius: 50%;
  color: rgba(61, 52, 52, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(10deg);
}

.retro-about,
.retro-music {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  width: min(1120px, calc(100vw - 44px));
  margin: 42px auto;
  padding: 42px;
  border-radius: 34px;
  background: #fffdf6;
}

.retro-about__title h2,
.retro-music h2,
.tools__heading h2,
.section-heading h2 {
  margin: 0;
  color: var(--rp-ink);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
}

.retro-about__body,
.retro-music__copy {
  color: #5d514f;
  line-height: 2;
}

.tools {
  width: min(1120px, calc(100vw - 44px));
  padding: 42px 0;
}

.tool-card {
  background: #fffaf0;
  border: 2px solid rgba(61, 52, 52, 0.08);
  box-shadow: 0 12px 0 rgba(255, 191, 209, 0.32);
}

.tool-card span {
  background: var(--rp-yellow);
}

.retro-works {
  width: min(1180px, calc(100vw - 44px));
  margin: 40px auto 80px;
}

.retro-work-band {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  margin: 28px 0;
  padding: 24px;
  border-radius: 34px;
}

.retro-work-band.is-pink {
  background: #ffd8e2;
}

.retro-work-band.is-mint {
  background: #d4f7ed;
}

.retro-work-band.is-yellow {
  background: #fff1a5;
}

.retro-work-band.is-lavender {
  background: #e6dcff;
}

.retro-work-band__intro span {
  color: rgba(61, 52, 52, 0.32);
  font-family: "Arial Black", sans-serif;
  font-size: 54px;
}

.retro-work-band__intro h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}

.retro-work-band__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.work-card__link {
  border: 0;
  border-radius: 26px;
  background: #fffaf0;
  box-shadow: 0 16px 0 rgba(61, 52, 52, 0.08);
}

.work-card__image img,
.work-card__placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 24px 24px 0 0;
}

.site-footer {
  margin-top: 60px;
  padding: 70px 20px 22px;
  background: #fff8e9;
}

.footer-contact {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 250, 240, 0.88);
}

@media (max-width: 900px) {
  .retro-hero,
  .retro-about,
  .retro-music,
  .retro-work-band {
    grid-template-columns: 1fr;
  }

  .retro-hero__visual {
    min-height: 440px;
  }

  .retro-work-band__cards {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .retro-hero {
    width: min(100vw - 28px, 1180px);
  }

  .retro-hero__copy h1 {
    font-size: 32px;
  }

  .retro-hero__copy h1 span {
    font-size: 40px;
  }

  .retro-hero__visual {
    min-height: 360px;
  }

  .retro-about,
  .retro-music {
    width: min(100vw - 28px, 1120px);
    padding: 26px;
  }
}

/* Last-pass hero correction: use tone-matched works and remove the large box. */
.retro-hero {
  grid-template-columns: minmax(360px, 0.95fr) minmax(380px, 0.9fr) !important;
  gap: clamp(26px, 4vw, 58px) !important;
  min-height: auto !important;
}

.retro-hero__copy h1 {
  max-width: 600px !important;
  font-size: clamp(34px, 4.15vw, 58px) !important;
  line-height: 1.28 !important;
}

.retro-hero__copy h1 span {
  font-size: clamp(48px, 6.4vw, 88px) !important;
}

.retro-hero__visual {
  min-height: clamp(360px, 36vw, 500px) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.retro-hero__visual::before,
.retro-hero__visual::after {
  content: none !important;
  display: none !important;
}

.retro-hero__visual .retro-photo,
.retro-hero__visual .retro-dummy {
  border: 7px solid #fffdf6 !important;
  background: #fffdf6 !important;
  box-shadow: 0 18px 34px rgba(62, 49, 42, 0.14) !important;
}

.retro-hero__visual .retro-photo--1,
.retro-hero__visual .retro-dummy--1 {
  top: 3% !important;
  left: 18% !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  width: 48% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 22px !important;
  transform: rotate(-4deg) !important;
}

.retro-hero__visual .retro-photo--2,
.retro-hero__visual .retro-dummy--2 {
  top: 10% !important;
  right: 2% !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 2 !important;
  width: 38% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 24px !important;
  transform: rotate(6deg) !important;
}

.retro-hero__visual .retro-photo--3,
.retro-hero__visual .retro-dummy--3 {
  left: 10% !important;
  bottom: 7% !important;
  top: auto !important;
  right: auto !important;
  z-index: 4 !important;
  width: 48% !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 999px !important;
  transform: rotate(3deg) !important;
}

.retro-hero__visual .retro-photo--4,
.retro-hero__visual .retro-dummy--4 {
  right: 7% !important;
  bottom: 9% !important;
  top: auto !important;
  left: auto !important;
  z-index: 1 !important;
  width: 34% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 18px !important;
  transform: rotate(-5deg) !important;
}

.retro-hero__visual .retro-dummy--1 {
  background: var(--accent-mint) !important;
}

.retro-hero__visual .retro-dummy--2 {
  background: var(--accent-pink) !important;
}

.retro-hero__visual .retro-dummy--3 {
  background: var(--accent-yellow) !important;
}

.retro-hero__visual .retro-dummy--4 {
  background: var(--accent-lavender) !important;
}

@media (max-width: 900px) {
  .retro-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .retro-hero__visual {
    min-height: 330px !important;
  }
}
