:root {
  color-scheme: dark;
  --bg: #050504;
  --fg: #f7f3eb;
  --paper: #f6f6f3;
  --paper-texture:
    linear-gradient(90deg, rgba(29, 33, 31, 0.01), transparent 18%, transparent 82%, rgba(29, 33, 31, 0.01)),
    repeating-radial-gradient(circle at 50% 0%, rgba(29, 33, 31, 0.007) 0 1px, transparent 1px 5px);
  --muted: rgba(247, 243, 235, 0.68);
  --dim: rgba(247, 243, 235, 0.42);
  --line: rgba(247, 243, 235, 0.18);
  --panel: rgba(0, 0, 0, 0.36);
  --nav: 126px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

.home-sanpou {
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background: #050504;
}

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

.site-rail {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-rows: auto 1fr;
  width: var(--nav);
  padding: 34px 0 28px;
  border-right: 1px solid rgba(247, 243, 235, 0.14);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  color: var(--fg);
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease;
  pointer-events: none;
}

.site-rail a {
  pointer-events: auto;
}

.rail-light .site-rail {
  border-right-color: rgba(29, 33, 31, 0.11);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  color: #1d211f;
}

.rail-logo {
  position: relative;
  align-self: start;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 86px;
  height: 86px;
  overflow: hidden;
}

.rail-logo img {
  width: 42px;
  height: auto;
  filter: brightness(1.08);
}

.rail-logo .rail-calligraphy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  object-fit: contain;
  object-position: center;
  max-width: none;
  transform: translate(-50%, -50%);
}

.rail-light .rail-logo .rail-calligraphy {
  filter: invert(1) contrast(1.08);
}

.rail-dark .site-rail {
  border-right-color: rgba(247, 243, 235, 0.14);
  background: #050504;
  color: var(--fg);
}

.home-sanpou:not(.video-started) .site-rail {
  border-right-color: transparent;
  background: #050504;
}

.rail-dark .rail-logo .rail-calligraphy {
  filter: brightness(1.08);
}

.rail-nav {
  align-self: center;
  display: grid;
  gap: 26px;
  justify-items: center;
}

.rail-nav a {
  display: grid;
  gap: 4px;
  justify-items: center;
  width: 100%;
  min-height: 48px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--muted);
  transition: color 180ms ease;
}

.rail-light .rail-nav a {
  color: rgba(29, 33, 31, 0.64);
}

.rail-nav a::before {
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  opacity: 0.7;
}

.rail-nav span {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.rail-nav .nav-ja {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.rail-nav .nav-en {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.045em;
  line-height: 1.02;
  color: rgba(247, 243, 235, 0.48);
}

.rail-light .rail-nav .nav-en {
  color: rgba(29, 33, 31, 0.48);
}

.rail-dark .rail-nav a {
  color: var(--muted);
}

.rail-dark .rail-nav .nav-en {
  color: rgba(247, 243, 235, 0.48);
}

.rail-nav a:hover,
.rail-nav a[aria-current="page"] {
  color: var(--fg);
}

.rail-light .rail-nav a:hover,
.rail-light .rail-nav a[aria-current="page"] {
  color: #1d211f;
}

.rail-dark .rail-nav a:hover,
.rail-dark .rail-nav a[aria-current="page"] {
  color: var(--fg);
}

.reserve-link {
  position: fixed;
  top: 38px;
  right: 34px;
  z-index: 20;
  writing-mode: vertical-rl;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.mobile-reserve-bar {
  display: none;
}

.mobile-bar {
  display: none;
}

.mobile-menu-panel {
  display: none;
}

.page {
  min-height: 100svh;
  padding-left: var(--nav);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.image-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.36)),
    var(--hero-image, url("desktop-smoke-background-perf-1600.webp")) center / cover;
}

.hero::after,
.image-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, transparent 0 28%, rgba(0, 0, 0, 0.24) 70%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.36));
}

.hero-home {
  --hero-image: url("desktop-smoke-background-perf-1600.webp");
}

.home-page {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  background: #050504 url("momiji-video-poster-v2.webp") center center / cover no-repeat fixed;
}

.home-page::before {
  display: none;
  content: none;
  pointer-events: none;
}

.video-started .home-page::before {
  visibility: hidden;
  opacity: 0;
}

.video-ready .home-page {
  background-color: #050504;
  background-image: none;
}

.home-page::after {
  display: none;
  content: none;
}

.home-sanpou .page {
  padding-left: 0;
}

.home-sanpou .mobile-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(28px, 4vw, 62px);
  border-bottom: 1px solid rgba(247, 243, 235, 0.24);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08));
}

.home-sanpou .mobile-bar .bar-calligraphy {
  justify-self: start;
  width: clamp(78px, 8vw, 112px);
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

.home-sanpou .mobile-bar .bar-status {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: clamp(190px, 18vw, 260px);
  padding: 0 clamp(32px, 3vw, 54px);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  text-align: center;
}

.home-sanpou .mobile-bar .bar-status::before,
.home-sanpou .mobile-bar .bar-status::after {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 34px;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.home-sanpou .mobile-bar .bar-status::before {
  left: 0;
}

.home-sanpou .mobile-bar .bar-status::after {
  right: 0;
}

.home-sanpou .mobile-bar .bar-status-ja {
  font-size: clamp(1.1rem, 1.45vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.home-sanpou .mobile-bar .bar-status-en {
  margin-top: 5px;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(247, 243, 235, 0.82);
}

.home-sanpou .mobile-bar .bar-menu {
  justify-self: end;
  display: grid;
  gap: 7px;
  width: 48px;
  border: 0;
  padding: 0;
  background: transparent;
}

.home-sanpou .mobile-bar .bar-menu span {
  display: block;
  height: 1px;
  background: rgba(247, 243, 235, 0.84);
}

.home-sanpou:not(.video-started) .mobile-bar {
  border-bottom-color: transparent;
  background: #050504;
}

.home-hero {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.home-sanpou .home-hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background: transparent;
  opacity: 0;
}

.video-started .home-hero::before {
  opacity: 0;
}

.home-hero-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050504 url("momiji-video-poster-v2.webp") center center / cover no-repeat;
  opacity: 1;
  filter: saturate(0.82) contrast(1.08) brightness(0.62);
  transition: none;
}

.video-ready .home-hero-video {
  opacity: 1;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: transparent;
}

.home-center {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  width: min(40vw, 560px);
  transform: translate(-50%, -50%);
}

.home-sanpou .home-center {
  top: 45%;
  left: 50%;
  z-index: 4;
  width: min(44vw, 650px);
}

.home-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.42));
  animation: logo-fade-in 900ms ease 0.06s forwards;
}

.home-side-copy {
  position: absolute;
  left: calc(var(--nav) + 18vw);
  top: 65%;
  z-index: 3;
  display: grid;
  gap: 12px;
  max-width: 540px;
}

.home-sanpou .home-side-copy {
  left: 50%;
  top: 63%;
  width: min(620px, 86vw);
  max-width: none;
  justify-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.home-side-copy p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.72vw, 1.95rem);
  line-height: 1.28;
  letter-spacing: 0.015em;
  color: rgba(247, 243, 235, 0.9);
}

.home-sanpou .home-side-copy p {
  max-width: 580px;
  font-weight: 400;
  font-size: clamp(1.36rem, 2vw, 2.18rem);
  line-height: 1.18;
  letter-spacing: 0.035em;
}

.home-story-reveal {
  position: relative;
  display: grid;
  z-index: 3;
  min-height: 90svh;
  scroll-margin-top: 82px;
  justify-items: center;
  overflow: hidden;
  padding: 0 clamp(30px, 7vw, 110px);
  isolation: isolate;
  background: transparent;
  color: var(--fg);
}

.home-story-reveal::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  content: "";
  background: transparent;
}

.home-story-reveal::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: transparent;
}

.story-copy {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  padding: 0 clamp(30px, 7vw, 110px);
  text-align: center;
}

.story-copy::before {
  display: none;
}

.story-kicker {
  margin: 0 0 22px;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.58);
}

.story-kicker-image {
  width: clamp(72px, 7vw, 108px);
  height: auto;
  opacity: 0.92;
  filter: brightness(1.12) drop-shadow(0 0 12px rgba(0, 0, 0, 0.36));
}

.story-kicker-badge {
  position: absolute;
  top: clamp(34px, 6vh, 64px);
  left: 50%;
  display: block;
  width: clamp(300px, 21vw, 430px);
  max-height: 42svh;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.4));
  transform: translateX(-50%);
}

.story-copy h1 {
  position: absolute;
  top: 70%;
  left: 50%;
  width: min(78vw, 900px);
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.62rem, 1.82vw, 2.18rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
  transform: translate(-50%, -50%);
}

.story-copy p {
  max-width: 560px;
  margin: clamp(22px, 3.5vh, 30px) 0 0;
  color: rgba(247, 243, 235, 0.74);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.08vw, 1.24rem);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.045em;
}

.scroll-cue-next {
  bottom: 34px;
  color: rgba(247, 243, 235, 0.82);
}

.sanpou-story {
  position: absolute;
  inset: clamp(110px, 14vh, 150px) clamp(38px, 9vw, 160px) auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: clamp(28px, 4.4vw, 76px);
  max-width: 860px;
  margin: 0 auto;
  opacity: 0.68;
  pointer-events: none;
}

.sanpou-story p {
  margin: 0;
  justify-self: center;
  max-width: 148px;
  color: rgba(247, 243, 235, 0.86);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.94rem, 1vw, 1.18rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.07em;
  text-align: center;
}

.play-movie {
  position: absolute;
  left: 50%;
  bottom: clamp(118px, 15vh, 164px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 186px;
  min-height: 52px;
  border: 1px solid rgba(247, 243, 235, 0.72);
  border-radius: 7px;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(247, 243, 235, 0.96);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateX(-50%);
}

.play-dot {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.play-dot::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-40%, -50%);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  display: block;
  width: 72px;
  height: 48px;
  color: rgba(247, 243, 235, 0.88);
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
}

.scroll-cue::before,
.scroll-cue::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  display: block;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: center;
}

.scroll-cue::before {
  transform: translateX(-15px) rotate(42deg);
}

.scroll-cue::after {
  transform: translateX(-3px) rotate(-42deg);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

.momiji-concept {
  position: relative;
  display: grid;
  min-height: 94svh;
  padding: clamp(116px, 10vw, 166px) clamp(42px, 8vw, 140px) clamp(108px, 9vw, 154px);
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: #1d211f;
}

.momiji-concept::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 33, 31, 0.018), transparent 34%),
    linear-gradient(90deg, rgba(29, 33, 31, 0.012), transparent 18%, transparent 82%, rgba(29, 33, 31, 0.012));
  pointer-events: none;
}

.momiji-concept-mark {
  position: absolute;
  right: clamp(-360px, -14vw, -160px);
  bottom: clamp(24px, 7vw, 116px);
  width: clamp(320px, 38vw, 620px);
  height: auto;
  opacity: 0.2;
  pointer-events: none;
}

.momiji-concept-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
  text-align: center;
  transform: none;
}

.momiji-concept-copy::before {
  display: none;
  width: 1px;
  height: clamp(70px, 10vh, 116px);
  margin: 0 auto clamp(34px, 5vh, 52px);
  content: "";
  background: rgba(29, 33, 31, 0.36);
}

.concept-kicker {
  margin: 6px 0 clamp(34px, 5vw, 56px);
  color: rgba(29, 33, 31, 0.68);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.35vw, 1.58rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.045em;
  text-transform: lowercase;
}

.momiji-concept h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.3vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
}

.momiji-concept p:not(.concept-kicker) {
  max-width: 590px;
  margin: 0;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.28vw, 1.46rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

.inline-kanji {
  font-family: "Yuji Syuku", "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  font-size: 1.08em;
  letter-spacing: 0;
}

.momiji-concept p:not(.concept-kicker) + p {
  margin-top: 22px;
}

.concept-link {
  position: relative;
  display: inline-grid;
  grid-template-columns: 86px auto;
  align-items: center;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 54px);
  color: rgba(29, 33, 31, 0.9);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.concept-link span {
  position: relative;
  display: block;
  height: 1px;
  background: currentColor;
}

.concept-link span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(22deg);
  transform-origin: right center;
}

.photo-story {
  position: relative;
  min-height: 92svh;
  padding: clamp(46px, 5vw, 78px) 0 clamp(66px, 6.6vw, 108px);
  overflow: hidden;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  color: #1d211f;
}

.photo-story::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: none;
  opacity: 0;
  pointer-events: none;
}

.photo-story + .photo-story {
  margin-top: 0;
}

.photo-story-label {
  --image-overlap-start: clamp(30px, 4vw, 56px);
  position: absolute;
  top: clamp(50px, 5.4vw, 88px);
  z-index: 5;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 7px;
  color: rgba(29, 33, 31, 0.84);
}

.photo-story-label span,
.photo-story-label h2 {
  position: relative;
  --title-clip-top: var(--image-overlap-start);
  --title-clip-right: 0px;
  --title-clip-bottom: 0px;
  --title-clip-left: 0px;
}

.photo-story-label-right {
  right: clamp(92px, 8.8vw, 154px);
}

.photo-story-label-left {
  left: clamp(34px, 4.8vw, 82px);
}

.photo-story-chicken .photo-story-label-left {
  left: clamp(150px, 14vw, 230px);
  right: auto;
}

.photo-story-label span {
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.44rem, 1.58vw, 1.92rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.045em;
  color: rgba(29, 33, 31, 0.52);
}

.photo-story-label h2 {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Yuji Syuku", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-size: clamp(3.7rem, 5.55vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
  color: rgba(29, 33, 31, 0.88);
}

.photo-story-label span::after,
.photo-story-label h2::after {
  position: absolute;
  inset: 0;
  content: attr(data-title);
  color: rgba(247, 243, 235, 0.96);
  clip-path: inset(
    var(--title-clip-top, 100%)
    var(--title-clip-right, 0px)
    var(--title-clip-bottom, 0px)
    var(--title-clip-left, 0px)
  );
  pointer-events: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.26);
  display: block;
}

.photo-story-image {
  position: relative;
  z-index: 2;
  width: min(90vw, 1380px);
  aspect-ratio: 16 / 8;
  height: auto;
  margin: clamp(30px, 4vw, 56px) auto 0 0;
  overflow: hidden;
}

.photo-story-image::after {
  position: absolute;
  inset: -2px;
  z-index: 3;
  content: "";
  background: var(--paper);
  background-image: var(--paper-texture);
  pointer-events: none;
  transform: translateX(0);
  will-change: transform;
}

.photo-story-chicken .photo-story-image {
  width: min(90vw, 1380px);
  aspect-ratio: 16 / 8;
  height: auto;
  margin-right: 0;
  margin-left: auto;
}

.photo-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-story-yakitori .photo-story-image img {
  object-position: center 52%;
}

.photo-story-chicken .photo-story-image img {
  object-position: center 66%;
}

.photo-story-card {
  position: relative;
  z-index: 4;
  width: min(620px, 44vw);
  margin: -76px 0 0 clamp(150px, 14vw, 230px);
  padding: clamp(34px, 3.4vw, 52px) clamp(36px, 3.8vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 58px rgba(29, 33, 31, 0.08);
}

.photo-story-card-right {
  margin-right: clamp(54px, 7vw, 120px);
  margin-left: auto;
}

.photo-story-card p,
.photo-story-card h2 {
  margin: 0;
}

.photo-story-card p {
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.28vw, 1.48rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.photo-story-card p + p {
  margin-top: 18px;
}

.photo-story-card h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 2vw, 2.42rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.035em;
  color: #1d211f;
}

.photo-story-subhead {
  margin-bottom: 18px;
  font-family: "Archivo Narrow", Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.96rem, 1vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(29, 33, 31, 0.86);
}

.photo-story-card .concept-link {
  margin-top: clamp(24px, 3vw, 38px);
}

@media (min-width: 761px) {
  .photo-story {
    --story-banner-edge: clamp(140px, 10vw, 240px);
    --story-banner-width: min(calc(100vw - var(--nav) - var(--story-banner-edge)), 1500px);
    --story-title-inset: clamp(54px, 4vw, 82px);
    --story-title-width: clamp(220px, 12vw, 250px);
    min-height: auto;
    padding: clamp(62px, 4.7vw, 86px) 0 clamp(54px, 4.2vw, 82px);
  }

  .photo-story + .photo-story {
    padding-top: clamp(34px, 2.8vw, 54px);
  }

  .photo-story-label {
    top: clamp(132px, 8.8vw, 178px);
  }

  .photo-story-yakitori .photo-story-label-right {
    right: auto;
    left: calc(var(--nav) + clamp(28px, 2.8vw, 54px));
  }

  .photo-story-label-left {
    left: clamp(190px, 11.6vw, 264px);
  }

  .photo-story-chicken .photo-story-label-left {
    right: clamp(30px, 3.2vw, 62px);
    left: auto;
  }

  .photo-story-label span,
  .photo-story-label h2 {
    --title-clip-top: 0px;
  }

  .photo-story-image {
    width: var(--story-banner-width);
    aspect-ratio: 16 / 7.7;
    margin-top: 0;
  }

  .photo-story-chicken .photo-story-image {
    width: var(--story-banner-width);
    aspect-ratio: 16 / 7.7;
    margin-top: 0;
  }

  .photo-story-yakitori .photo-story-image {
    margin-right: auto;
    margin-left: 0;
  }

  .photo-story-chicken .photo-story-image {
    margin-right: 0;
    margin-left: auto;
  }

  .photo-story-card {
    width: min(590px, 40vw);
    margin-top: -62px;
    margin-left: clamp(198px, 13vw, 300px);
    padding: clamp(28px, 2.7vw, 42px) clamp(30px, 3vw, 48px);
  }

  .photo-story-card-right {
    margin-right: clamp(86px, 6vw, 132px);
    margin-left: auto;
  }

  .photo-story-card p {
    font-size: clamp(1.04rem, 1.05vw, 1.28rem);
    line-height: 1.52;
  }
}

.access-section {
  position: relative;
  display: grid;
  min-height: 74svh;
  padding: clamp(38px, 3.8vw, 68px) 0 0;
  justify-items: center;
  overflow: hidden;
  border-top: 0;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  color: #1d211f;
}

.access-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: none;
  pointer-events: none;
}

.access-heading {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(34px, 5vw, 58px);
  text-align: center;
}

.access-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.28rem, 3.35vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.access-heading p {
  margin: 4px 0 0;
  color: rgba(29, 33, 31, 0.78);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.1vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.map-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(420px, 52vw, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 56% 48%, rgba(29, 33, 31, 0.16) 0 7px, transparent 8px),
    linear-gradient(148deg, transparent 0 38%, rgba(29, 33, 31, 0.13) 39% 40%, transparent 41%),
    linear-gradient(18deg, transparent 0 46%, rgba(29, 33, 31, 0.1) 47% 48%, transparent 49%),
    linear-gradient(96deg, transparent 0 30%, rgba(29, 33, 31, 0.08) 31% 32%, transparent 33%),
    repeating-linear-gradient(0deg, #e7e7e3 0 34px, #deded9 35px 36px);
}

.map-frame::after {
  position: absolute;
  top: calc(48% + 14px);
  left: 56%;
  z-index: 1;
  content: "YAKITORI MOMIJI";
  color: rgba(29, 33, 31, 0.42);
  font-family: "Archivo Narrow", Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  pointer-events: none;
}

.map-frame iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.78;
  filter: grayscale(1) contrast(0.9) brightness(1.04);
}

.open-map {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  border: 1px solid rgba(29, 33, 31, 0.14);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(29, 33, 31, 0.76);
  font-family: "Archivo Narrow", Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.access-link {
  position: relative;
  z-index: 2;
}

.site-footer {
  position: relative;
  min-height: 58svh;
  padding: clamp(72px, 8vw, 120px) clamp(30px, 8vw, 130px) 42px calc(var(--nav) + clamp(42px, 8vw, 130px));
  overflow: hidden;
  border-top: 0;
  isolation: isolate;
  background: #050504;
  color: rgba(247, 243, 235, 0.9);
}

.home-sanpou .site-footer {
  background: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-item {
    opacity: 0;
    transform: translateY(25px);
  }

  .motion-item.motion-in {
    animation: sanpou-fade-in-up 1s ease var(--motion-delay, 0s) both;
  }

  .momiji-concept .motion-item {
    transform: none;
  }

  .momiji-concept .motion-item.motion-in {
    animation: sanpou-simple-fade-in 1s ease var(--motion-delay, 0s) both;
  }

  .photo-story-image.motion-item {
    opacity: 1;
    transform: none;
  }

  .photo-story-image.motion-in {
    animation: none;
  }

  .photo-story-image.motion-item::after {
    transform: translateX(0);
  }

  .photo-story-image.motion-in::after {
    animation: sanpou-photo-slide-reveal 0.95s cubic-bezier(0.77, 0, 0.175, 1) var(--motion-delay, 0s) both;
  }

  .photo-story-chicken .photo-story-image.motion-in::after {
    animation-name: sanpou-photo-slide-reveal-reverse;
  }

  .photo-story-image.motion-item img,
  .about-banner img.motion-item {
    transform: scale(1.035);
    transform-origin: center;
    transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) var(--motion-delay, 0s);
  }

  .photo-story-image.motion-in img,
  .about-banner img.motion-in {
    transform: scale(1);
  }

  .photo-story-card.motion-item {
    opacity: 0;
    transform: translateY(25px);
  }

  .photo-story-card.motion-in {
    animation: sanpou-card-rise 0.82s ease var(--motion-delay, 0s) both;
  }

  .photo-story-card p,
  .photo-story-card .concept-link {
    opacity: 1;
    transform: none;
  }

  .photo-story-card.motion-in p {
    animation: none;
  }

  .photo-story-card.motion-in .concept-link {
    animation: none;
  }

  .about-banner img.motion-item,
  .about-story-row figure.motion-item,
  .about-gallery-shell.motion-item,
  .chicken-intro-figure.motion-item,
  .chicken-feature figure.motion-item {
    opacity: 1;
    transform: none;
  }

  .about-banner img.motion-in,
  .about-story-row figure.motion-in,
  .about-gallery-shell.motion-in,
  .chicken-intro-figure.motion-in,
  .chicken-feature figure.motion-in {
    animation: none;
  }

  .chicken-intro-figure.motion-item .chicken-intro-illustration,
  .chicken-feature figure.motion-item img {
    opacity: 0;
    transform: scale(1.035);
    transform-origin: center;
    transition:
      opacity 1s ease var(--motion-delay, 0s),
      transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) var(--motion-delay, 0s);
  }

  .chicken-intro-figure.motion-in .chicken-intro-illustration,
  .chicken-feature figure.motion-in img {
    opacity: 1;
    transform: scale(1);
  }

  .chicken-feature article.motion-item {
    opacity: 0;
    transform: translateY(calc(var(--chicken-article-offset, 0px) + 25px));
  }

  .chicken-feature article.motion-in {
    animation: sanpou-chicken-article-in 1s ease var(--motion-delay, 0s) both;
  }

  .story-kicker-badge.motion-item {
    transform: translateX(-50%) translateY(25px);
  }

  .story-kicker-badge.motion-in {
    animation: sanpou-badge-fade-in-up 1s ease var(--motion-delay, 0s) both;
  }

  .story-copy h1.motion-item {
    transform: translate(-50%, calc(-50% + 25px));
  }

  .story-copy h1.motion-in {
    animation: sanpou-centered-fade-in-up 1s ease var(--motion-delay, 0s) both;
  }

  .footer-mark.motion-item {
    transform: translateY(calc(-50% + 25px));
  }

  .footer-mark.motion-in {
    animation: sanpou-footer-fade-in-up 1s ease var(--motion-delay, 0s) both;
  }
}

@keyframes sanpou-photo-slide-reveal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(110%);
  }
}

@keyframes sanpou-photo-slide-reveal-reverse {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-110%);
  }
}

@keyframes sanpou-photo-soft-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(1.018);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sanpou-chicken-article-in {
  from {
    opacity: 0;
    transform: translateY(calc(var(--chicken-article-offset, 0px) + 25px));
  }

  to {
    opacity: 1;
    transform: translateY(var(--chicken-article-offset, 0px));
  }
}

@keyframes sanpou-simple-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes sanpou-card-rise {
  from {
    opacity: 1;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sanpou-text-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes sanpou-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sanpou-badge-fade-in-up {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(25px);
  }

  to {
    opacity: 0.96;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes sanpou-centered-fade-in-up {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 25px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes sanpou-footer-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 25px));
  }

  to {
    opacity: 0.22;
    transform: translateY(-50%);
  }
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 70% 42%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.44) 54%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.footer-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.72;
  filter: saturate(0.84) contrast(1.05) brightness(0.62);
}

.footer-socials {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 26px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(247, 243, 235, 0.84);
}

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

.site-footer address {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(247, 243, 235, 0.76);
  font-style: normal;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.045em;
}

.footer-links {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  width: fit-content;
  margin-top: clamp(48px, 6vw, 78px);
  color: rgba(247, 243, 235, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.footer-mark {
  position: absolute;
  right: clamp(18px, 2.2vw, 36px);
  top: 50%;
  z-index: 1;
  width: clamp(170px, 18vw, 280px);
  height: auto;
  opacity: 0.14;
  transform: translateY(-50%);
  filter: invert(1);
}

.footer-copy {
  position: relative;
  z-index: 2;
  margin: clamp(74px, 8vw, 110px) 0 0;
  color: rgba(247, 243, 235, 0.54);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  letter-spacing: 0.045em;
  text-align: center;
}

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 100svh;
  border-top: 1px solid rgba(5, 5, 4, 0.12);
  background: #f7f5ef;
  color: #1d211f;
}

.home-feature-counter {
  background: #fbfaf6;
}

.feature-media {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(238, 235, 226, 0.44) 46%, rgba(12, 14, 13, 0.08)),
    #e9e6dc;
}

.feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.06), transparent 34%);
  pointer-events: none;
}

.feature-media img {
  width: min(58vw, 620px);
  max-height: 80svh;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.62;
  mix-blend-mode: multiply;
}

.feature-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 26px;
  padding: clamp(72px, 8vw, 130px);
}

.feature-kicker {
  margin: 0;
  color: #8d6c44;
  font-family: "Archivo Narrow", Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.feature-kicker::before {
  content: ". ";
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.feature-copy p:not(.feature-kicker) {
  max-width: 420px;
  margin: 0;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Archivo Narrow", Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.72;
  letter-spacing: 0.035em;
}

.hero-about {
  --hero-image: url("placeholder-counter.svg");
}

.hero-chicken {
  --hero-image: url("placeholder-farm.svg");
}

.hero-contact {
  --hero-image: url("placeholder-door.svg");
}

.hero-mark {
  display: grid;
  justify-items: center;
  width: min(78vw, 760px);
  text-align: center;
}

.hero-mark .kamon {
  width: clamp(48px, 5vw, 72px);
  margin-bottom: clamp(28px, 6vh, 58px);
  filter: brightness(1.08) drop-shadow(0 0 12px rgba(0, 0, 0, 0.36));
}

.wordmark {
  width: clamp(260px, 32vw, 520px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.34));
  transform: translateY(12px);
  animation: fade-up 1.8s ease-out 0.2s forwards;
}

.hero-copy {
  margin-top: clamp(58px, 10vh, 110px);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
.lead {
  font-family: Asul, Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5.4vw, 6rem);
  line-height: 1.04;
  letter-spacing: 0.03em;
}

.lead {
  max-width: 660px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.86);
}

.name-note {
  position: absolute;
  right: clamp(30px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 64px);
  max-width: 410px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--muted);
  text-align: left;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
  min-height: 100svh;
  padding: clamp(90px, 10vw, 150px) clamp(36px, 8vw, 140px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.04), transparent 28%),
    #050504;
}

.section-title {
  position: sticky;
  top: 90px;
  align-self: start;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.06em;
}

.copy-stack {
  display: grid;
  gap: 34px;
  max-width: 760px;
}

.copy-stack p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 2;
  color: rgba(247, 243, 235, 0.78);
}

.quote {
  margin: 10px 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  font-family: Asul, Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.7rem);
  line-height: 1.28;
}

.image-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.caption-card {
  position: absolute;
  right: clamp(34px, 8vw, 130px);
  bottom: clamp(44px, 8vw, 120px);
  max-width: 420px;
}

.caption-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1;
}

.caption-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.pillar-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.pillar {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  background: #050504;
}

.pillar h3 {
  margin: 0;
  font-family: Asul, Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
}

.pillar p {
  font-size: 0.98rem;
  line-height: 1.9;
}

.text-link {
  justify-self: start;
  margin-top: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
}

.visit-panel {
  display: grid;
  gap: 38px;
  width: min(88vw, 560px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.visit-panel h1 {
  font-size: clamp(2.3rem, 4vw, 4.7rem);
}

.details {
  display: grid;
  gap: 22px;
}

.detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.detail span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.detail p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.notify-form {
  display: grid;
  gap: 12px;
}

.notify-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  padding: 0 0 14px;
  background: transparent;
  color: var(--fg);
  font: 400 0.86rem/1.4 Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.08em;
  outline: 0;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.notify-form button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.1);
  color: var(--fg);
  font: 400 0.74rem/1 Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
}

.corner-kanji,
.corner-yakitori {
  position: fixed;
  z-index: 18;
  display: block;
  height: auto;
  pointer-events: none;
}

.corner-kanji {
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 70px);
  width: clamp(48px, 5vw, 72px);
  filter: brightness(1.08) drop-shadow(0 0 10px rgba(0, 0, 0, 0.34));
}

.corner-yakitori {
  right: clamp(26px, 5vw, 72px);
  bottom: clamp(26px, 4.8vw, 68px);
  width: clamp(28px, 3vw, 46px);
  opacity: 0.94;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.about-sanpou {
  overflow-x: hidden;
  background: var(--paper);
  color: #1d211f;
}

.about-page {
  background-color: var(--paper);
  background-image: var(--paper-texture);
}

.about-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050504;
}

.about-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 38%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.about-hero > img {
  display: block;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.82) contrast(1.06) brightness(0.8);
}

.about-hero-title {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(68vw, 620px);
  color: var(--fg);
  text-align: center;
  transform: translate(-50%, -50%);
}

.about-hero-title img {
  width: min(46vw, 460px);
  height: auto;
  margin-bottom: clamp(22px, 3vw, 42px);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.42));
}

.about-hero-title p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.24rem, 1.9vw, 2.22rem);
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 0.045em;
  color: rgba(247, 243, 235, 0.92);
}

.about-intro {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(118px, 11vw, 190px) clamp(46px, 8vw, 140px);
  background: #fff;
  color: #1d211f;
}

.about-intro::before,
.about-editorial::before,
.about-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--paper-texture);
  pointer-events: none;
}

.about-watermark {
  position: absolute;
  height: auto;
  pointer-events: none;
  opacity: 0.1;
  filter: grayscale(1);
}

.about-watermark-right {
  right: clamp(-260px, -11vw, -110px);
  bottom: clamp(12px, 4vw, 82px);
  width: clamp(430px, 45vw, 760px);
}

.about-intro-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100%, 780px);
  text-align: center;
}

.about-intro-copy h1,
.about-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.7vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.045em;
}

.about-kicker {
  margin: 8px 0 clamp(36px, 5vw, 62px);
  color: rgba(29, 33, 31, 0.68);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.22vw, 1.38rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.055em;
  text-transform: lowercase;
}

.about-intro-copy p:not(.about-kicker),
.about-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.28vw, 1.46rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

.about-intro-copy p:not(.about-kicker) + p {
  margin-top: 22px;
}

.about-editorial {
  position: relative;
  min-height: 100svh;
  padding: clamp(136px, 10vw, 190px) 0 clamp(112px, 8vw, 150px);
  overflow: hidden;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  color: #1d211f;
}

.about-vertical-title {
  position: absolute;
  top: clamp(118px, 9vw, 156px);
  z-index: 4;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 8px;
  color: rgba(29, 33, 31, 0.88);
}

.about-vertical-title-right {
  right: clamp(98px, 9vw, 168px);
}

.about-vertical-title-left {
  left: clamp(66px, 7vw, 128px);
}

.about-vertical-title span {
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.34vw, 1.56rem);
  font-style: italic;
  letter-spacing: 0.045em;
  color: rgba(29, 33, 31, 0.68);
}

.about-vertical-title h2 {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Yuji Syuku", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-editorial-image {
  position: relative;
  z-index: 2;
  width: min(88vw, 1320px);
  aspect-ratio: 16 / 8;
  margin: clamp(62px, 6vw, 104px) 0 0 auto;
  overflow: hidden;
}

.about-editorial-left .about-editorial-image {
  margin-right: auto;
  margin-left: 0;
}

.about-editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-editorial-right .about-editorial-image img {
  object-position: center 62%;
}

.about-editorial-left .about-editorial-image img {
  object-position: center 52%;
}

.about-editorial-card {
  position: relative;
  z-index: 3;
  width: min(650px, 45vw);
  margin: -104px clamp(64px, 8vw, 140px) 0 auto;
  padding: clamp(34px, 3.4vw, 52px) clamp(38px, 4vw, 62px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 58px rgba(29, 33, 31, 0.08);
}

.about-editorial-left .about-editorial-card {
  margin-right: auto;
  margin-left: clamp(150px, 14vw, 230px);
}

.about-editorial-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 2vw, 2.38rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.about-editorial-card p {
  margin: 0;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.18vw, 1.32rem);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.035em;
}

.about-editorial-card p + p {
  margin-top: 14px;
}

.about-band {
  position: relative;
  display: grid;
  min-height: 58svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(72px, 8vw, 126px) clamp(38px, 8vw, 140px);
  isolation: isolate;
  background: #050504;
  color: var(--fg);
  text-align: center;
}

.about-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, transparent 0 28%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 42%, rgba(0, 0, 0, 0.72));
}

.about-band > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.about-band div {
  width: min(100%, 720px);
}

.about-band .about-kicker {
  margin-bottom: 22px;
  color: rgba(247, 243, 235, 0.62);
}

.about-band p:not(.about-kicker) {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.8vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.045em;
  color: rgba(247, 243, 235, 0.9);
}

.about-cta {
  position: relative;
  display: grid;
  min-height: 64svh;
  place-items: center;
  padding: clamp(90px, 9vw, 145px) clamp(34px, 8vw, 130px);
  overflow: hidden;
  background: #fff;
  color: #1d211f;
  text-align: center;
}

.about-cta > * {
  position: relative;
  z-index: 2;
}

.about-cta p {
  margin-top: 26px;
}

.about-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(34px, 4vw, 56px);
}

.about-cta .concept-link {
  margin-top: 0;
}

.about-page {
  padding-left: var(--nav);
  background: #f6f6f3;
  background-image: var(--paper-texture);
}

body.about-sanpou:not(.rail-light) .site-rail {
  border-right-color: rgba(247, 243, 235, 0.14);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  color: var(--fg);
}

.about-hero {
  min-height: 100svh;
  width: calc(100% + var(--nav));
  margin-left: calc(var(--nav) * -1);
  padding: 0;
}

.about-hero > img {
  height: 100svh;
  object-position: center center;
  filter: saturate(0.86) contrast(1.08) brightness(0.78);
}

.about-hero-title {
  top: 50%;
  width: min(48vw, 620px);
}

.about-hero-title img {
  width: min(32vw, 430px);
  margin-bottom: 0;
}

.about-hero-title .about-hero-kanji {
  width: min(30vw, 420px);
  max-height: 62svh;
  object-fit: contain;
}

.about-hero-caption {
  display: grid;
  gap: 4px;
  margin-top: clamp(18px, 2vw, 28px);
  color: rgba(247, 243, 235, 0.82);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.22vw, 1.3rem);
  font-style: italic;
  line-height: 1.08;
  letter-spacing: 0.07em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.about-banner {
  --banner-top: clamp(30px, 3.2vw, 54px);
  --banner-bottom: clamp(10px, 1.4vw, 24px);
  --banner-left: clamp(24px, 3vw, 50px);
  --banner-right: 0px;
  position: relative;
  min-height: auto;
  padding: var(--banner-top) 0 var(--banner-bottom);
  background: #f6f6f3;
  background-image: var(--paper-texture);
  color: #1d211f;
  overflow: hidden;
}

.about-banner img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - var(--banner-left) - var(--banner-right));
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.8) contrast(1.02);
}

.about-banner::after {
  position: absolute;
  z-index: 3;
  top: var(--banner-top);
  right: var(--banner-right);
  bottom: var(--banner-bottom);
  left: var(--banner-left);
  content: "";
  background: #f6f6f3;
  background-image: var(--paper-texture);
  transform: translateX(0);
  transform-origin: right center;
  pointer-events: none;
}

.about-banner.motion-in-group::after {
  animation: sanpou-photo-slide-reveal 1.05s cubic-bezier(0.77, 0, 0.175, 1) 0.1s both;
}

#about-story {
  margin-top: clamp(34px, 4.2vw, 76px);
}

.about-banner-left img {
  margin-left: var(--banner-left);
  object-position: center 55%;
}

.about-banner-right img {
  margin-left: var(--banner-left);
  object-position: center 48%;
}

.about-banner-right {
  --banner-left: clamp(24px, 3vw, 50px);
  --banner-right: 0px;
}

.about-banner-title {
  position: absolute;
  z-index: 4;
  top: clamp(8px, 1.3vw, 22px);
  display: flex;
  flex-direction: row-reverse;
  gap: 6px;
  min-height: clamp(178px, 15vw, 260px);
  padding: clamp(17px, 1.5vw, 23px) clamp(7px, 0.62vw, 10px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(29, 33, 31, 0.06);
  backdrop-filter: blur(2px);
}

.about-banner-left .about-banner-title {
  left: clamp(52px, 5.3vw, 92px);
}

.about-banner-right .about-banner-title {
  right: clamp(32px, 4vw, 68px);
}

.about-banner-title p,
.about-gallery-slide .about-kicker,
.about-story-row .about-kicker {
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(29, 33, 31, 0.68);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: lowercase;
}

.about-banner-title h1,
.about-banner-title h2 {
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "Yuji Syuku", "Noto Serif JP", serif;
  font-size: clamp(1.22rem, 1.48vw, 1.9rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.about-story-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(460px, 0.78fr);
  gap: clamp(48px, 6vw, 104px);
  align-items: center;
  padding: clamp(18px, 2vw, 34px) clamp(48px, 5.5vw, 94px) clamp(42px, 4.5vw, 78px);
  background: #f6f6f3;
  background-image: var(--paper-texture);
  color: #1d211f;
}

.about-story-row figure {
  margin: 0;
}

.about-story-row figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.02);
}

.about-story-row article {
  max-width: 680px;
}

.about-story-row article p:not(.about-kicker),
.about-gallery-slide p:not(.about-kicker) {
  margin: 0;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.16vw, 1.28rem);
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.035em;
}

.about-story-row article p:not(.about-kicker) + p,
.about-gallery-slide p:not(.about-kicker) + p {
  margin-top: 16px;
}

.about-story-row .about-kicker,
.about-gallery-slide .about-kicker {
  writing-mode: horizontal-tb;
  margin-bottom: 22px;
  color: #1d211f;
  font-size: clamp(1.22rem, 1.3vw, 1.52rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.055em;
  text-transform: none;
}

.about-story-row-gallery {
  display: block;
  padding-top: clamp(22px, 2.6vw, 44px);
}

.about-gallery-shell {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 2px 0 0);
}

.about-gallery-track {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.about-gallery-track::-webkit-scrollbar {
  display: none;
}

.about-gallery-slide {
  position: relative;
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(420px, 0.72fr);
  gap: clamp(48px, 6vw, 104px);
  align-items: center;
  padding: 0;
  scroll-snap-align: start;
}

.about-story-row .about-gallery-slide {
  max-width: none;
}

.about-gallery-slide figure {
  position: relative;
  margin: 0;
}

.about-gallery-slide figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
}

.about-gallery-slide > div {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 560px;
  min-height: clamp(410px, 39vw, 545px);
  padding-top: clamp(60px, 6vw, 105px);
  box-sizing: border-box;
  overflow: hidden;
}

.about-gallery-link {
  display: block;
  width: fit-content;
  margin: clamp(36px, 4vw, 62px) 0 0;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.02vw, 1.12rem);
  letter-spacing: 0.055em;
}

.about-gallery-link span {
  display: none;
}

.about-gallery-hint {
  display: none;
}

.about-gallery-hint span {
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(29, 33, 31, 0.34);
}

.about-gallery-controls {
  position: absolute;
  right: clamp(28px, 3.5vw, 54px);
  bottom: clamp(8px, 1vw, 14px);
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: auto;
  padding: 0;
  margin-top: 0;
}

.about-gallery-controls button {
  position: relative;
  display: grid;
  width: 40px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(29, 33, 31, 0.58);
  cursor: pointer;
}

.about-gallery-controls button span,
.about-gallery-controls button span::before,
.about-gallery-controls button span::after {
  display: block;
  content: "";
  background: currentColor;
}

.about-gallery-controls button span {
  position: relative;
  width: 34px;
  height: 1px;
}

.about-gallery-controls button span::before,
.about-gallery-controls button span::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 1px;
  transform-origin: right center;
}

.about-gallery-controls button span::before {
  transform: rotate(18deg);
}

.about-gallery-controls button span::after {
  transform: rotate(-18deg);
}

.about-gallery-prev span {
  transform: scaleX(-1);
}

.chicken-page {
  background: var(--paper);
  background-image: var(--paper-texture);
  color: #1d211f;
}

.chicken-hero {
  position: relative;
  min-height: 100svh;
  width: calc(100% + var(--nav));
  margin-left: calc(var(--nav) * -1);
  overflow: hidden;
  isolation: isolate;
  background: #050504;
}

.chicken-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.86) contrast(1.05) brightness(0.56);
}

.chicken-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5) 68%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
}

.chicken-hero-copy {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(78vw, 680px);
  color: rgba(247, 243, 235, 0.92);
  text-align: center;
  transform: translate(-50%, -50%);
}

.chicken-kicker {
  margin: 0 0 18px;
  color: rgba(29, 33, 31, 0.68);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.24vw, 1.38rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.chicken-hero-copy img {
  display: block;
  width: min(34vw, 500px);
  max-height: 68svh;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.48));
}

.chicken-intro-copy h2,
.chicken-feature h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.04em;
}

.chicken-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  grid-template-rows: auto auto;
  gap: clamp(18px, 2vw, 34px) clamp(42px, 5.4vw, 92px);
  align-items: start;
  min-height: 92svh;
  padding: clamp(76px, 6.4vw, 112px) clamp(36px, 5.6vw, 88px) clamp(62px, 5.8vw, 104px);
  background: #f6f6f3;
  background-image: var(--paper-texture);
}

.chicken-intro-figure {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  align-self: end;
  width: min(70vw, 1060px);
  margin: 0;
  padding-top: clamp(118px, 10.5vw, 180px);
}

.chicken-intro-illustration {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.08);
}

.chicken-intro-copy {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  justify-self: end;
  max-width: min(100%, 790px);
  padding-top: 0;
  transform: translateY(clamp(-18px, -1vw, -10px));
}

.chicken-intro-copy h2 {
  margin-bottom: 22px;
  color: #1d211f;
  font-size: clamp(1.38rem, 1.55vw, 1.9rem);
  line-height: 1.18;
}

.chicken-feature h2 {
  margin-bottom: 22px;
  color: #1d211f;
  font-size: clamp(1.22rem, 1.3vw, 1.52rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.055em;
  text-transform: none;
  white-space: normal;
}

.chicken-feature h2::after {
  display: block;
  width: min(100%, 360px);
  height: 1px;
  margin-top: 18px;
  content: "";
  background: rgba(29, 33, 31, 0.26);
}

.chicken-intro-copy p:not(.chicken-kicker),
.chicken-feature p:not(.chicken-kicker),
.chicken-closing p {
  margin: 0;
  color: rgba(29, 33, 31, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.18vw, 1.34rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.035em;
}

.chicken-feature p:not(.chicken-kicker) + p {
  margin-top: 18px;
}

.chicken-feature {
  display: grid;
  grid-template-columns: minmax(660px, 1fr) minmax(360px, 0.48fr);
  gap: clamp(54px, 5.4vw, 86px);
  align-items: center;
  padding: clamp(34px, 3.2vw, 58px) clamp(40px, 4vw, 70px) clamp(26px, 2.6vw, 42px);
  background: #f6f6f3;
  background-image: var(--paper-texture);
}

.chicken-feature-right {
  grid-template-columns: minmax(360px, 0.48fr) minmax(660px, 1fr);
}

.chicken-feature-right figure {
  order: 2;
}

.chicken-feature-right article {
  order: 1;
}

.chicken-feature figure {
  margin: 0;
  overflow: hidden;
}

.chicken-feature figure img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
}

.chicken-feature:nth-of-type(4) figure img {
  aspect-ratio: 5 / 4;
  object-position: center 55%;
}

.chicken-feature:nth-of-type(5) figure img {
  aspect-ratio: 5 / 4;
  object-position: center;
}

.chicken-feature article {
  --chicken-article-offset: clamp(18px, 2.4vw, 42px);
  max-width: 520px;
  transform: translateY(var(--chicken-article-offset));
}

.chicken-closing {
  position: relative;
  display: grid;
  justify-items: center;
  width: calc(100% + var(--nav));
  margin-left: calc(var(--nav) * -1);
  padding: clamp(90px, 10vw, 168px) clamp(32px, 8vw, 138px);
  background: #fff;
  text-align: center;
}

.chicken-closing p {
  max-width: 760px;
  font-size: clamp(1.28rem, 1.65vw, 1.9rem);
  line-height: 1.62;
  color: rgba(29, 33, 31, 0.9);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-blur-in {
  0% {
    opacity: 0;
    filter: blur(22px) brightness(1.5) drop-shadow(0 0 18px rgba(0, 0, 0, 0.42));
    transform: scale(1.035);
  }

  56% {
    opacity: 0.7;
    filter: blur(8px) brightness(1.18) drop-shadow(0 0 18px rgba(0, 0, 0, 0.42));
    transform: scale(1.014);
  }

  100% {
    opacity: 1;
    filter: blur(0) brightness(1) drop-shadow(0 0 18px rgba(0, 0, 0, 0.42));
    transform: scale(1);
  }
}

@keyframes logo-fade-in {
  to {
    opacity: 1;
  }
}

@media (max-width: 760px) {
  :root {
    --nav: 0px;
  }

  .site-rail,
  .reserve-link,
  .corner-kanji,
  .corner-yakitori {
    display: none;
  }

  .has-mobile-reserve {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .mobile-reserve-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    align-items: center;
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding: 0 18px env(safe-area-inset-bottom);
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    text-decoration: none;
    background: #232321;
    box-shadow: 0 -12px 26px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(105%);
    transition:
      transform 420ms cubic-bezier(0.23, 1, 0.32, 1),
      opacity 260ms ease;
  }

  .mobile-reserve-bar span {
    grid-column: 2;
    justify-self: center;
    text-align: center;
  }

  .mobile-reserve-visible .mobile-reserve-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-reserve-bar i {
    position: relative;
    display: block;
    grid-column: 3;
    justify-self: end;
    width: 54px;
    height: 1px;
    background: rgba(255, 255, 255, 0.72);
  }

  .mobile-reserve-bar i::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.72);
    transform: rotate(22deg);
    transform-origin: right center;
  }

  .mobile-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    display: block;
    min-height: 70px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    pointer-events: none;
  }

  .mobile-bar > a {
    display: none;
  }

  .mobile-bar .bar-kanji {
    justify-self: start;
    width: 46px;
    transform: translateX(-15px);
  }

  .mobile-bar .bar-calligraphy {
    width: 76px;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .mobile-bar .bar-status {
    display: none;
  }

  .mobile-bar .bar-status::before,
  .mobile-bar .bar-status::after {
    position: absolute;
    top: 50%;
    width: 1px;
    height: 28px;
    content: "";
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%);
  }

  .mobile-bar .bar-status::before {
    left: 0;
  }

  .mobile-bar .bar-status::after {
    right: 0;
  }

  .mobile-bar .bar-status-ja {
    font-size: 0.92rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }

  .mobile-bar .bar-status-en {
    margin-top: 2px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
  }

  .mobile-bar .bar-menu {
    position: absolute;
    top: 24px;
    right: 22px;
    z-index: 31;
    display: grid;
    gap: 7px;
    width: 38px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    mix-blend-mode: difference;
    pointer-events: auto;
  }

  .mobile-bar .bar-menu span {
    display: block;
    height: 1px;
    background: #fff;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    grid-template-rows: auto auto auto auto;
    align-content: center;
    align-items: center;
    justify-items: center;
    min-height: 100svh;
    padding: 74px 18px 42px;
    overflow-y: auto;
    background-color: #f8f8f5;
    background-image: var(--paper-texture);
    color: #1d211f;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity 360ms ease, transform 360ms ease, visibility 0s linear 360ms;
    pointer-events: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    pointer-events: auto;
  }

  .mobile-menu-langs {
    display: none;
    gap: 28px;
    padding: 0 0 0 18px;
    color: rgba(29, 33, 31, 0.58);
    font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .mobile-menu-close {
    position: absolute;
    top: 34px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    padding: 0 42px 0 0;
    background: transparent;
    color: rgba(29, 33, 31, 0.68);
    font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu-close::before,
  .mobile-menu-close::after {
    position: absolute;
    right: 0;
    width: 34px;
    height: 1px;
    content: "";
    background: rgba(29, 33, 31, 0.72);
    transform-origin: center;
  }

  .mobile-menu-close::before {
    transform: rotate(45deg);
  }

  .mobile-menu-close::after {
    transform: rotate(-45deg);
  }

  .mobile-menu-brand {
    display: grid;
    place-items: center;
    margin: 0 auto 36px;
  }

  .mobile-menu-brand img {
    width: min(58vw, 238px);
    height: auto;
    filter: invert(1) contrast(1.08);
  }

  .mobile-menu-nav {
    display: grid;
    justify-items: center;
    gap: 28px;
    margin: 0 auto;
    text-align: center;
  }

  .mobile-menu-nav a,
  .mobile-menu-actions a {
    display: grid;
    justify-items: center;
    gap: 3px;
  }

  .mobile-menu-nav span,
  .mobile-menu-actions span {
    order: 2;
    color: rgba(29, 33, 31, 0.58);
    font-family: "Yuji Syuku", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 0.82rem;
    line-height: 1.16;
    letter-spacing: 0.08em;
  }

  .mobile-menu-nav em,
  .mobile-menu-actions em {
    order: 1;
    color: rgba(29, 33, 31, 0.9);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 1.34rem;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.06em;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 12px;
    width: min(100%, 360px);
    margin: 54px auto 34px;
  }

  .mobile-menu-actions a {
    min-height: 42px;
    place-content: center;
    border: 1px solid rgba(29, 33, 31, 0.32);
  }

  .mobile-menu-actions a[href$="#access"] {
    display: none;
  }

  .mobile-menu-actions span {
    font-size: 0.76rem;
  }

  .mobile-menu-actions em {
    font-size: 1.12rem;
  }

  .mobile-menu-social {
    display: grid;
    place-items: center;
    justify-self: center;
    width: 34px;
    height: 34px;
    color: rgba(29, 33, 31, 0.58);
  }

  .mobile-menu-social svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }

  .page {
    padding-left: 0;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero::before {
    background: transparent;
  }

  .home-center {
    top: 37%;
    left: 50%;
    width: min(82vw, 330px);
  }

  .home-side-copy {
    right: 28px;
    left: 28px;
    top: 59%;
    max-width: none;
    justify-items: center;
    text-align: center;
  }

  .home-side-copy p {
    max-width: 315px;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.14rem, 5.2vw, 1.42rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .hero {
    min-height: 100svh;
    padding: 92px 24px 46px;
  }

  .hero::before,
  .image-section::before {
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.045), transparent 30%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.34)),
      var(--hero-image, url("smoke-background-perf-1350.webp")) center / cover;
  }

  .hero-home {
    --hero-image: url("smoke-background-perf-1350.webp");
  }

  .hero-mark {
    width: min(88vw, 370px);
  }

  .hero-mark .kamon {
    width: 50px;
    margin-bottom: 28px;
  }

  .wordmark {
    width: min(78vw, 310px);
  }

  .hero-copy {
    margin-top: 70px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .name-note {
    position: static;
    max-width: 320px;
    margin: 60px auto 0;
    text-align: center;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding: 82px 24px;
  }

  .section-title {
    position: static;
    writing-mode: horizontal-tb;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .copy-stack {
    gap: 26px;
  }

  .copy-stack p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .quote {
    padding-left: 20px;
    font-size: clamp(1.55rem, 8vw, 2.3rem);
  }

  .image-section {
    min-height: 78svh;
  }

  .about-page {
    padding-left: 0;
  }

  .about-hero {
    min-height: 82svh;
    padding-top: 72px;
  }

  .about-hero > img {
    height: 82svh;
    object-position: center 50%;
  }

  .about-hero-title {
    top: 54%;
    width: min(82vw, 340px);
  }

  .about-hero-title img {
    width: min(76vw, 300px);
    margin-bottom: 26px;
  }

  .about-hero-title p {
    font-size: clamp(1.08rem, 4.7vw, 1.42rem);
    line-height: 1.28;
  }

  .about-intro {
    min-height: auto;
    padding: 106px 28px 118px;
  }

  .about-watermark-right {
    right: -160px;
    bottom: 42px;
    width: 390px;
  }

  .about-intro-copy {
    width: min(100%, 340px);
  }

  .about-intro-copy h1,
  .about-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
    letter-spacing: 0.035em;
  }

  .about-kicker {
    margin: 6px 0 34px;
    font-size: 0.96rem;
  }

  .about-intro-copy p:not(.about-kicker),
  .about-cta p {
    font-size: 1.03rem;
    line-height: 1.78;
    letter-spacing: 0.03em;
  }

  .about-editorial {
    min-height: auto;
    padding: 92px 0 64px;
  }

  .about-vertical-title {
    top: 198px;
    gap: 6px;
  }

  .about-vertical-title-right {
    right: 34px;
  }

  .about-vertical-title-left {
    left: 30px;
  }

  .about-vertical-title span {
    font-size: 1rem;
  }

  .about-vertical-title h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .about-editorial-image,
  .about-editorial-left .about-editorial-image {
    width: 100%;
    aspect-ratio: 5 / 4;
    margin: 118px 0 0;
  }

  .about-editorial-card,
  .about-editorial-left .about-editorial-card {
    width: calc(100% - 48px);
    margin: -30px auto 0 0;
    padding: 30px 24px 34px;
  }

  .about-editorial-left .about-editorial-card {
    margin-right: 0;
    margin-left: auto;
  }

  .about-editorial-card h3 {
    font-size: clamp(1.55rem, 7vw, 2.12rem);
  }

  .about-editorial-card p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .about-band {
    min-height: 66svh;
    padding: 82px 30px;
  }

  .about-band p:not(.about-kicker) {
    font-size: clamp(1.18rem, 5.2vw, 1.6rem);
    line-height: 1.46;
  }

  .about-cta {
    min-height: auto;
    padding: 86px 28px 92px;
  }

  .about-cta-links {
    display: grid;
    gap: 22px;
    justify-items: center;
  }

  .about-page {
    padding-left: 0;
  }

  .about-hero {
    min-height: 100svh;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .about-hero > img {
    height: 100svh;
    object-position: center center;
  }

  .about-hero-title {
    top: 50%;
    width: min(82vw, 340px);
  }

  .about-hero-title img {
    width: min(76vw, 300px);
    margin-bottom: 22px;
  }

  .about-hero-title .about-hero-kanji {
    width: min(70vw, 310px);
    max-height: 68svh;
  }

  .about-hero-caption {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.04;
  }

  .about-banner {
    --banner-top: 34px;
    --banner-bottom: 16px;
    --banner-left: 0px;
    --banner-right: 0px;
    min-height: auto;
    padding: var(--banner-top) 0 var(--banner-bottom);
  }

  .about-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-banner-left img,
  .about-banner-right img {
    margin-left: 0;
  }

  .about-banner-title {
    top: 18px;
    min-height: 170px;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.94);
  }

  .about-banner-title p {
    display: none;
  }

  .about-banner-left .about-banner-title {
    left: 0;
  }

  .about-banner-right .about-banner-title {
    right: 16px;
  }

  .about-banner-title h1,
  .about-banner-title h2 {
    font-size: clamp(0.98rem, 4.25vw, 1.28rem);
    line-height: 1.34;
  }

  .about-story-row,
  .about-story-row-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px 54px;
  }

  .about-story-row figure img {
    aspect-ratio: 4 / 5;
  }

  .about-story-row-first figure img,
  .about-story-row-chef figure img {
    aspect-ratio: 4 / 3;
  }

  .about-story-row article {
    max-width: none;
  }

  .about-story-row article p:not(.about-kicker),
  .about-gallery-slide p:not(.about-kicker) {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .about-gallery-shell {
    width: 100%;
    margin-right: 0;
  }

  .about-gallery-track {
    padding-right: 0;
  }

  .about-gallery-slide {
    position: relative;
    grid-template-columns: 1fr;
    align-items: start;
    align-content: start;
    gap: 24px;
  }

  .about-gallery-slide figure img {
    aspect-ratio: 4 / 3;
  }

  .about-gallery-slide > div {
    position: static;
    max-width: 100%;
    min-height: 0;
    padding-top: 8px;
  }

  .about-gallery-controls {
    position: absolute;
    top: calc((100vw - 36px) * 0.75 - 46px);
    right: 14px;
    bottom: auto;
    z-index: 3;
    gap: 12px;
    width: auto;
    margin-top: 0;
  }

  .about-gallery-controls button {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
  }

  .chicken-page {
    padding-left: 0;
  }

  .chicken-hero {
    min-height: 100svh;
    width: 100%;
    margin-left: 0;
  }

  .chicken-hero > img {
    object-position: center 52%;
  }

  .chicken-hero-copy {
    top: 54%;
    width: min(84vw, 330px);
  }

  .chicken-hero-copy img {
    width: min(70vw, 310px);
    max-height: 68svh;
  }

  .chicken-intro,
  .chicken-feature,
  .chicken-feature-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
    min-height: auto;
    padding: 40px 18px;
  }

  .chicken-intro {
    padding: 42px 0 52px;
    text-align: center;
  }

  .chicken-intro-figure {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .chicken-intro-illustration {
    width: 100%;
    max-width: 100%;
  }

  .chicken-intro-copy {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    padding: 18px 18px 0;
    margin: 0 auto;
    transform: none;
  }

  .chicken-feature-right figure,
  .chicken-feature-right article {
    order: initial;
  }

  .chicken-feature figure img,
  .chicken-feature:nth-of-type(4) figure img,
  .chicken-feature:nth-of-type(5) figure img {
    aspect-ratio: 4 / 3;
  }

  .chicken-feature article {
    --chicken-article-offset: 0px;
    transform: none;
  }

  .chicken-intro-copy h2,
  .chicken-feature h2 {
    margin-bottom: 18px;
  }

  .chicken-intro-copy h2 {
    font-size: clamp(1.32rem, 5.6vw, 1.72rem);
    line-height: 1.13;
  }

  .chicken-feature h2 {
    font-size: clamp(1.16rem, 4.9vw, 1.38rem);
    font-weight: 600;
    line-height: 1.32;
  }

  .chicken-feature h2::after {
    width: 100%;
    margin-top: 18px;
  }

  .chicken-intro-copy p:not(.chicken-kicker),
  .chicken-feature p:not(.chicken-kicker),
  .chicken-closing p {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .chicken-closing {
    width: 100%;
    margin-left: 0;
    padding: 70px 20px 92px;
    text-align: left;
  }

  .caption-card {
    right: 24px;
    bottom: 42px;
    left: 24px;
  }

  .visit-panel {
    width: min(100%, 420px);
    padding: 28px;
  }

  .detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-sanpou .mobile-bar {
    display: block;
    height: 72px;
    min-height: 0;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    pointer-events: none;
  }

  .home-sanpou .mobile-bar > a {
    display: none;
  }

  .home-sanpou .mobile-bar .bar-status {
    display: none;
  }

  .home-sanpou .mobile-bar .bar-calligraphy {
    width: 88px;
    max-height: 54px;
  }

  .home-sanpou .mobile-bar .bar-status {
    min-width: 168px;
    padding: 0 24px;
  }

  .home-sanpou .mobile-bar .bar-status-ja {
    font-size: 1.08rem;
  }

  .home-sanpou .mobile-bar .bar-menu {
    position: absolute;
    top: 24px;
    right: 22px;
    pointer-events: auto;
    width: 38px;
    gap: 6px;
  }

  .home-sanpou .mobile-bar .bar-menu span {
    background: rgba(247, 243, 235, 0.82);
  }

  .home-sanpou .home-center {
    top: 45%;
    left: 50%;
    width: min(84vw, 350px);
  }

  .home-sanpou .sanpou-story {
    display: none;
  }

  .home-sanpou .home-side-copy {
    top: 56%;
    right: 28px;
    left: 28px;
    width: auto;
    transform: none;
  }

  .home-story-reveal {
    min-height: 92svh;
    scroll-margin-top: 70px;
    padding: 0 28px;
  }

  .home-story-reveal::before {
    background: transparent;
  }

  .story-copy {
    width: 100%;
    padding: 0 28px;
  }

  .story-copy::before {
    display: none;
  }

  .story-kicker {
    margin-bottom: 18px;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }

  .story-kicker-image {
    width: 82px;
  }

  .story-kicker-badge {
    top: 36px;
    width: 252px;
  }

  .story-copy h1 {
    top: 57%;
    width: min(100%, 330px);
    max-width: 330px;
    font-size: clamp(1.28rem, 5.55vw, 1.72rem);
    line-height: 1.3;
    letter-spacing: 0.035em;
  }

  .story-copy p {
    display: none;
    max-width: 320px;
    margin-top: 22px;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .momiji-concept {
    min-height: 94svh;
    padding: 118px 30px 112px;
  }

  .momiji-concept-mark {
    right: -152px;
    bottom: 72px;
    width: 408px;
    opacity: 0.2;
  }

  .momiji-concept-copy {
    width: min(100%, 330px);
    transform: none;
  }

  .momiji-concept-copy::before {
    display: none;
    height: 74px;
    margin-bottom: 34px;
  }

  .concept-kicker {
    margin: 4px 0 34px;
    font-size: 0.92rem;
  }

  .momiji-concept h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .momiji-concept p:not(.concept-kicker) {
    font-size: 1.04rem;
    line-height: 1.82;
    letter-spacing: 0.03em;
  }

  .momiji-concept p:not(.concept-kicker) + p {
    margin-top: 20px;
  }

  .concept-link {
    grid-template-columns: 76px auto;
    gap: 16px;
    margin-top: 36px;
    font-size: 0.86rem;
  }

  .photo-story {
    min-height: auto;
    padding: 34px 0 48px;
  }

  .photo-story + .photo-story {
    padding-top: 20px;
  }

  .photo-story-label {
    top: 28px;
    gap: 6px;
  }

  .photo-story-yakitori .photo-story-label {
    --image-overlap-start: 98px;
  }

  .photo-story-chicken .photo-story-label {
    --image-overlap-start: 46px;
  }

  .photo-story-label-right {
    right: 42px;
  }

  .photo-story-label-left {
    left: 30px;
  }

  .photo-story-chicken .photo-story-label-left {
    right: auto;
    left: 30px;
  }

  .photo-story-label span {
    font-size: 1.16rem;
    letter-spacing: 0.025em;
  }

  .photo-story-label h2 {
    font-size: clamp(3rem, 14.5vw, 4.5rem);
  }

  .photo-story-image,
  .photo-story-chicken .photo-story-image {
    width: 100%;
    aspect-ratio: 5 / 4;
    height: auto;
    margin: 92px 0 0;
  }

  .photo-story-yakitori .photo-story-image img {
    object-position: center 50%;
  }

  .photo-story-chicken .photo-story-image {
    margin-top: 54px;
  }

  .photo-story-chicken .photo-story-image img {
    object-position: center 58%;
  }

  .photo-story-card,
  .photo-story-card-right {
    width: calc(100% - 48px);
    margin: -28px auto 0 0;
    padding: 29px 24px 32px;
  }

  .photo-story-card-right {
    margin-right: 0;
    margin-left: auto;
  }

  .photo-story-card p {
    font-size: 1.08rem;
    line-height: 1.58;
    letter-spacing: 0.03em;
  }

  .photo-story-card h2 {
    font-size: clamp(1.72rem, 8vw, 2.36rem);
    line-height: 1.12;
  }

  .photo-story-subhead {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .access-section {
    min-height: auto;
    padding: 62px 0 54px;
  }

  .access-heading {
    margin-bottom: 32px;
  }

  .access-heading h2 {
    font-size: 1.9rem;
  }

  .access-heading p {
    font-size: 0.96rem;
    font-style: italic;
  }

  .map-frame {
    width: 100%;
    height: 240px;
  }

  .open-map {
    top: 10px;
    left: 10px;
    font-size: 0.76rem;
  }

  .site-footer {
    min-height: 500px;
    padding: 58px 30px 36px;
  }

  .footer-video-bg {
    object-position: 54% center;
    opacity: 0.66;
  }

  .footer-socials {
    gap: 24px;
    margin-bottom: 36px;
  }

  .footer-socials svg {
    width: 20px;
    height: 20px;
  }

  .site-footer address {
    max-width: 230px;
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .footer-links {
    gap: 20px;
    margin-top: 50px;
    font-size: 0.76rem;
  }

  .footer-mark {
    right: 16px;
    top: 48%;
    width: 132px;
    opacity: 0.2;
  }

  .footer-copy {
    margin-top: 70px;
    font-size: 0.7rem;
  }

  .home-sanpou .home-side-copy p {
    max-width: 315px;
    font-size: clamp(1.08rem, 4.8vw, 1.32rem);
    line-height: 1.24;
    letter-spacing: 0.035em;
  }

  .home-sanpou .play-movie {
    bottom: 116px;
    min-width: 162px;
    min-height: 46px;
    border-radius: 6px;
    font-size: 0.82rem;
  }

  .home-sanpou .scroll-cue {
    bottom: 24px;
  }

}

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

  .wordmark,
  .home-logo,
  .reveal,
  .motion-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .footer-mark.motion-item {
    transform: translateY(-50%);
  }

  .story-kicker-badge.motion-item {
    transform: translateX(-50%);
  }

  .story-copy h1.motion-item {
    transform: translate(-50%, -50%);
  }

  .photo-story-image::after {
    display: none;
  }

  .about-banner::after {
    display: none;
  }

  .photo-story-card p,
  .photo-story-card .concept-link {
    opacity: 1;
    transform: none;
  }
}
