:root {
  --bg-light: #f7f2ec;
  --bg-warm: #ece0d5;
  --bg-dark: #1c1714;
  --text-dark: #211915;
  --text-light: #f6f1ea;
  --muted: #75685f;
  --accent-red: #e98b78;
  --wood-brown: #7a563f;
  --line: rgba(33, 25, 21, .22);
  --strong-line: rgba(33, 25, 21, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

main {
  isolation: isolate;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(1.7rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  animation: intro-out 1.4s .35s both;
}

.intro img {
  width: min(72vw, 720px);
  height: auto;
  object-fit: contain;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(28, 23, 20, .38), rgba(28, 23, 20, 0));
  backdrop-filter: blur(16px);
}

.brand-mark,
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: .74rem;
}

.brand-mark {
  border-radius: 999px;
  background: rgba(247, 242, 236, .9);
  box-shadow: 0 12px 34px rgba(28, 23, 20, .18);
}

.brand-mark img,
.footer-logo img {
  max-height: 118px;
  max-width: 236px;
  width: auto;
  object-fit: contain;
}

.asset-note {
  padding: 7px 10px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 32px);
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .35);
}

.hero {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 0;
  display: grid;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 0;
  border-bottom: 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px clamp(24px, 6vw, 82px) 64px;
}

.eyebrow,
.section-kicker,
.caption,
.scene-text p,
.coming-soon p,
.journal-row span {
  margin: 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.eyebrow {
  width: fit-content;
  border: 1px solid rgba(246, 241, 234, .34);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(246, 241, 234, .86);
  background: rgba(246, 241, 234, .06);
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: min(9.4em, calc(100vw - 48px));
  margin: 18px 0 28px;
  font-size: clamp(3rem, 12vw, 7.8rem);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(246, 241, 234, .34);
  border-radius: 999px;
  padding: 9px 16px 10px;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .86rem;
  font-weight: 900;
  background: rgba(246, 241, 234, .08);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.text-link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--accent-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
  z-index: -1;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.text-link::before {
  content: "↗";
  color: var(--accent-red);
}

.section .text-link {
  border-color: rgba(33, 25, 21, .22);
  background: rgba(33, 25, 21, .03);
  color: var(--text-dark);
  backdrop-filter: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100svh;
  overflow: hidden;
  border-top: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 23, 20, .72), rgba(28, 23, 20, .34) 48%, rgba(28, 23, 20, .12)),
    linear-gradient(0deg, rgba(28, 23, 20, .56), rgba(28, 23, 20, 0) 48%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: 62% 50%;
  transition: filter .4s ease, transform .5s ease;
}

.hero-media:hover img,
.scene-media:hover img,
.item-figure:hover img {
  filter: brightness(1.04);
  transform: scale(1.025);
}

.caption {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 44px);
  z-index: 1;
  color: rgba(246, 241, 234, .62);
  text-shadow: 0 1px 16px rgba(0, 0, 0, .45);
}

.photo-placeholder {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(233, 139, 120, .16), transparent 42%),
    repeating-linear-gradient(90deg, rgba(33, 25, 21, .08) 0 1px, transparent 1px 16px),
    var(--bg-warm);
}

.hero-placeholder {
  min-height: 100svh;
  border: 0;
  opacity: .68;
  filter: saturate(.72) brightness(.62);
}

.photo-placeholder span,
.photo-placeholder small {
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
}

.photo-placeholder strong {
  max-width: 9em;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(2rem, 10vw, 7rem);
  line-height: .95;
}

.photo-placeholder.pale {
  background:
    linear-gradient(160deg, rgba(122, 86, 63, .2), transparent 48%),
    var(--bg-light);
}

.photo-placeholder.dark {
  background:
    linear-gradient(145deg, rgba(233, 139, 120, .3), transparent 48%),
    var(--bg-dark);
  color: var(--text-light);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(68px, 10vw, 110px);
  z-index: 1;
  writing-mode: vertical-rl;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  color: var(--text-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 100svh;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid rgba(33, 25, 21, .12);
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 -26px 80px rgba(28, 23, 20, .24);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  padding: 10px 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 12vw, 150px) clamp(24px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background: var(--bg-light);
}

.section:nth-of-type(odd) {
  background: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto 42px;
}

.section h2 {
  margin: 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(2.4rem, 10vw, 8rem);
  line-height: .9;
  font-weight: 900;
}

.about {
  display: grid;
  gap: 26px;
  align-items: start;
}

.about-body {
  max-width: 760px;
  border-top: 1px solid var(--strong-line);
  padding-top: 24px;
}

.about-body p {
  margin: 22px 0 24px;
  font-size: clamp(1.25rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.45;
}

.small {
  font-size: .74rem;
}

.scene-layout {
  display: grid;
  gap: clamp(42px, 8vw, 96px);
  max-width: 1120px;
  margin: 0 auto;
}

.scene {
  display: grid;
  gap: 16px;
}

.scene-media {
  min-height: clamp(280px, 54vw, 620px);
  overflow: hidden;
}

.scene-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 54vw, 620px);
  object-fit: cover;
  object-position: center;
  transition: filter .4s ease, transform .5s ease;
}

.scene-media[data-scene="afterHours"] img {
  object-position: 48% 52%;
}

.scene-media[data-scene="dayOff"] img {
  object-position: 48% 50%;
}

.scene-media[data-scene="tableTalk"] img {
  object-position: 52% 50%;
}

.scene-text {
  border-top: 1px solid var(--strong-line);
  display: grid;
  grid-template-columns: minmax(82px, auto) minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: end;
  padding-top: 14px;
}

.scene-text h3 {
  margin: 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(2rem, 7vw, 5.2rem);
  line-height: .95;
  font-weight: 900;
  white-space: nowrap;
}

.scene-text span {
  color: var(--muted);
  font-weight: 700;
}

.items-board {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--strong-line);
}

.coming-soon {
  display: grid;
  min-height: 280px;
  align-content: center;
  gap: 8px;
  padding: 28px 0;
}

.coming-soon h3 {
  margin: 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(2.7rem, 14vw, 8rem);
  line-height: .9;
  font-weight: 900;
}

.coming-soon span {
  color: var(--muted);
  font-weight: 700;
}

.items-grid {
  display: grid;
  align-items: start;
  gap: clamp(22px, 3vw, 34px);
  padding-top: 22px;
}

.item-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
}

.item-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.05;
  object-fit: contain;
  border: 0;
  background: #fff;
  transition: filter .4s ease, transform .5s ease;
}

.item-figure figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 12px 0 18px;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.3;
}

.journal-list {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--strong-line);
}

.journal-row {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.journal-row strong {
  font-size: clamp(1rem, 3vw, 1.55rem);
}

.journal-row em {
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
}

.journal-row:hover strong,
.journal-row:focus-visible strong {
  text-decoration: underline;
  text-decoration-color: var(--accent-red);
  text-underline-offset: 5px;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  padding: clamp(42px, 8vw, 92px) clamp(20px, 5vw, 66px) 28px;
  background: var(--bg-dark);
  color: var(--text-light);
}

.site-footer p {
  max-width: 8em;
  margin: 0;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: clamp(2.9rem, 12vw, 8rem);
  line-height: .92;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  border-top: 1px solid rgba(246, 241, 234, .22);
  padding-top: 20px;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-weight: 900;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-red);
}

.footer-logo {
  width: fit-content;
}

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

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

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero-copy {
    min-height: 100svh;
    padding-top: 96px;
  }

  .hero-media {
    min-height: 100svh;
    border-top: 0;
    border-left: 0;
  }

  .hero-media img,
  .hero-placeholder {
    min-height: 100svh;
  }

  .section-head {
    grid-template-columns: 140px 1fr;
    align-items: start;
  }

  .about {
    grid-template-columns: 140px 1fr;
    max-width: 1120px;
    margin: 0 auto;
  }

  .scene-layout {
    gap: clamp(58px, 8vw, 110px);
  }

  .items-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coming-soon {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-mark {
    min-width: 116px;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px 12px;
    max-width: 170px;
  }

  .hero-copy {
    min-height: 100svh;
    padding: 136px 20px 54px;
  }

  h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(2.85rem, 13vw, 3.25rem);
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .hero-media {
    margin-top: 0;
  }

  .scroll-cue {
    color: var(--text-light);
    text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
  }

  .journal-row {
    grid-template-columns: 1fr auto;
  }

  .journal-row strong {
    grid-column: 1 / -1;
  }

  .scene-text {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@keyframes intro-out {
  0% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.note-page {
  background: var(--bg-light);
}

.note-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 242, 236, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.note-logo img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.note-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
}

.article-shell {
  padding: clamp(42px, 8vw, 92px) clamp(20px, 5vw, 72px) clamp(64px, 10vw, 120px);
}

.article {
  max-width: 1120px;
  margin: 0 auto;
}

.article-label {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: .74rem;
  font-weight: 900;
}

.article h1 {
  max-width: 11em;
  margin: 0 0 clamp(24px, 5vw, 52px);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1.05;
  color: var(--text-dark);
  text-shadow: none;
  overflow-wrap: anywhere;
}

.article-hero {
  margin: 0 0 clamp(42px, 7vw, 84px);
  border-top: 1px solid var(--strong-line);
  padding-top: 16px;
}

.article-hero img {
  width: 100%;
  max-height: 860px;
  object-fit: cover;
  object-position: 52% 45%;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 2.05;
}

.article-body p {
  margin: 0 0 1.65em;
}

.article-back {
  max-width: 760px;
  margin: clamp(38px, 7vw, 80px) auto 0;
}

@media (max-width: 520px) {
  .note-logo img {
    width: 70px;
    height: 70px;
  }

  .article h1 {
    max-width: none;
  }

  .article-hero img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }
}
