/* L1 — editorial homepage layout */
html.photo-l1-root {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  background-color: #0a0a0a;
  color-scheme: dark;
}

html.photo-l1-root body,
body.photo-l1 {
  overflow-x: hidden;
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100svh;
  --serif-zh: "Noto Serif SC", "Songti SC", serif;
  --logo-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  background-color: #0a0a0a;
  color: #fff;
}

/* L1 tokens — scoped to page chrome only (keep hub schedule tokens intact) */
.pl1-page {
  --pl1-bg: #0a0a0a;
  --pl1-fg: #fff;
  --pl1-muted: rgba(255, 255, 255, 0.48);
  --pl1-line: rgba(255, 255, 255, 0.12);
  --pl1-line-soft: rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
  background: var(--pl1-bg);
  color: var(--pl1-fg);
}

/* Cancel global `section { padding: 70px+ }` — main layout killer */
body.photo-l1 section.pl1-scene {
  padding: 0;
  max-width: none;
  margin: 0;
}

/* Hide booking block until a date is picked */
body.photo-l1 #pl1Book:not(.pl1-book--active) {
  display: none;
}

/* Legacy motion.js reveals — keep instant on L1 */
body.photo-l1 .reveal:not(.pl1-scroll-in),
body.photo-l1 .line-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

/* —— L1 motion system —— */
.pl1-page {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --pl1-dur: 0.8s;
}

.pl1-motion-item {
  transition:
    opacity var(--pl1-dur) var(--ease-out-expo),
    transform var(--pl1-dur) var(--ease-out-expo),
    filter calc(var(--pl1-dur) * 0.7) var(--ease-out-expo);
}

body.pl1-motion-boot .pl1-motion-item:not(.is-in) {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

body.pl1-motion-boot .pl1-motion-item.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

body.photo-l1 .nav--cinema {
  transition:
    background 0.55s var(--ease-out-expo),
    border-color 0.55s var(--ease-out-expo),
    padding 0.45s var(--ease-out-expo),
    backdrop-filter 0.45s var(--ease-out-expo);
}

body.photo-l1 .nav--cinema.nav--scrolled-pl1 {
  background: rgba(10, 10, 10, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

body.photo-l1 .btn--solid {
  transition:
    transform 0.38s var(--ease-out-expo),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.38s var(--ease-out-expo);
}

body.photo-l1 .btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

body.photo-l1 .btn--solid:active {
  transform: translateY(0);
}

body.photo-l1 .btn--ghost {
  transition:
    transform 0.38s var(--ease-out-expo),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

body.photo-l1 .btn--ghost:hover {
  transform: translateY(-2px);
}

body.photo-l1 .btn--ghost:active {
  transform: translateY(0);
}

.pl1-cal__day--open,
.pl1-cal__day--partial {
  transition:
    border-color 0.28s var(--ease-out-expo),
    background 0.28s var(--ease-out-expo),
    color 0.28s var(--ease-out-expo),
    transform 0.22s var(--ease-out-expo);
}

.pl1-cal__day--open:hover,
.pl1-cal__day--partial:hover {
  transform: translateY(-1px);
}

.pl1-cal__day--open:active,
.pl1-cal__day--partial:active {
  transform: scale(0.96);
}

.pl1-hub__gallery--open .pl1-section-head {
  animation: pl1GalleryIn 0.75s var(--ease-out-expo) both;
}

body.photo-l1--personal .footer__sign.pl1-motion-item {
  transform: translateY(12px) scale(0.98);
}

body.photo-l1--personal .footer__sign.pl1-motion-item.is-in {
  transform: none;
}

.founder-modal.is-open .founder-modal__sign-img {
  animation: pl1SignIn 0.85s var(--ease-out-expo) 0.28s both;
}

@keyframes pl1SignIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 0.9;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pl1-motion-boot .pl1-motion-item,
  body.pl1-motion-boot .pl1-motion-item:not(.is-in) {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
  body.photo-l1 .btn--solid:hover,
  body.photo-l1 .btn--ghost:hover,
  .pl1-cal__day--open:hover,
  .pl1-cal__day--partial:hover {
    transform: none;
  }
  .founder-modal.is-open .founder-modal__sign-img {
    animation: none;
  }
  .pl1-hub__gallery--open .pl1-section-head {
    animation: none;
  }
}

body.photo-l1 .nav {
  mix-blend-mode: normal;
  color: #fff;
}

body.photo-l1 .gridlines--cinema {
  opacity: 0.1;
  mix-blend-mode: normal;
}
body.photo-l1 .gridlines span {
  border-color: rgba(255, 255, 255, 0.06);
}

/* —— Nav (editorial, minimal chrome) —— */
body.photo-l1 .nav--cinema {
  mix-blend-mode: normal;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.6s var(--ease), border-color 0.6s var(--ease);
  pointer-events: auto;
}
@media (min-width: 901px) {
  body.photo-l1 .nav__links--cinema {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
}
body.photo-l1 .nav__toggle {
  opacity: 1;
  pointer-events: auto;
}
body.photo-l1.photo-l1--nav-dark .nav--cinema {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.photo-l1.photo-l1--nav-dark .nav__toggle { color: #fff; }

@media (max-width: 900px) {
  body.photo-l1 .nav {
    color: #fff;
    padding:
      max(18px, env(safe-area-inset-top))
      max(var(--gutter), env(safe-area-inset-right))
      18px
      max(var(--gutter), env(safe-area-inset-left));
  }
  body.photo-l1 .nav.nav--menu-open {
    background: #0a0a0a !important;
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }
  body.photo-l1 .nav.nav--menu-open .nav__brand {
    color: #fff;
  }
  body.photo-l1 .nav__links--cinema {
    background: #0a0a0a;
    color: #fff;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.5s var(--ease);
    justify-content: flex-start;
    padding:
      calc(72px + env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }
  body.photo-l1 .nav__links--cinema.is-open {
    transform: none;
    pointer-events: auto;
  }
  body.photo-l1 .nav__links--cinema a,
  body.photo-l1 .nav__links--cinema .nav__link-btn {
    color: #fff;
    font-size: 17px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(320px, 88vw);
    padding: 10px 16px;
    text-align: center;
  }
  body.photo-l1 .nav__links--cinema .nav__link-btn {
    background: none;
    border: none;
    font-family: var(--sans);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
  }
  body.photo-l1 .nav__links--cinema .nav__lang,
  body.photo-l1 .nav__links--cinema .nav__lang-dropdown {
    color: #fff !important;
    width: min(320px, 88vw);
    margin-top: 16px;
  }
  body.photo-l1 .nav__links--cinema .nav__lang-dropdown.is-mobile-inline {
    display: none;
  }
  body.photo-l1 .nav.nav--menu-open .nav__links--cinema .nav__lang-dropdown.is-mobile-inline {
    display: block;
  }
  body.photo-l1 .nav__lang-quick {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
  }
  body.photo-l1 .nav.nav--menu-open .nav__lang-quick {
    opacity: 0;
    pointer-events: none;
  }
  body.photo-l1 .nav__links--cinema .nav__lang-trigger {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
  }
  body.photo-l1 .nav__links--cinema .nav__lang-menu {
    right: 0;
    left: auto;
    min-width: min(220px, calc(100vw - 48px));
  }
  body.photo-l1 .nav__links--cinema .nav__lang-dropdown.is-mobile-inline .nav__lang-menu {
    min-width: 0;
  }
  body.photo-l1 .nav__toggle {
    display: flex;
    z-index: 60;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin: -6px;
    padding: 6px;
    color: #fff;
  }
  body.photo-l1 .nav.nav--menu-open .nav__toggle {
    color: #fff;
  }
  body.photo-l1 .nav.nav--menu-open .nav__links a,
  body.photo-l1 .nav.nav--menu-open .nav__lang,
  body.photo-l1 .nav.nav--menu-open .nav__lang-dropdown,
  body.photo-l1 .nav.nav--menu-open .nav__lang-trigger,
  body.photo-l1 .nav.nav--menu-open .nav__link-btn {
    color: #fff;
  }
}

/* —— Hub announcements (admin CMS) —— */
body.photo-l1 .pl1-announcements {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(72px + 8px) var(--gutter) 0;
}
body.photo-l1 .pl1-announcements[hidden] { display: none; }
body.photo-l1 .pl1-announce {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}
html[lang="zh-CN"] body.photo-l1 .pl1-announce { font-family: var(--serif-zh); }
body.photo-l1 .pl1-announce strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
body.photo-l1 .pl1-announce a {
  color: inherit;
  text-decoration: none;
}
body.photo-l1 .pl1-announce a:hover { color: #fff; }

#hubAnnouncements:not([hidden]) + main .pl1-scene__inner--split {
  padding-top: clamp(32px, 4vh, 48px);
  min-height: min(calc(100svh - 120px), calc(100vh - 120px), 820px);
}

/* —— Scroll sections —— */
.pl1-scene {
  position: relative;
  overflow-x: hidden;
  background: var(--pl1-bg, #0a0a0a);
  color: var(--pl1-fg, #fff);
}
.pl1-scene--light,
.pl1-scene--dark,
.pl1-scene--paper,
.pl1-scene--cta {
  background: var(--pl1-bg, #0a0a0a);
  color: var(--pl1-fg, #fff);
}

.pl1-scene:first-child,
.pl1-scene--split,
.pl1-scene--hub {
  min-height: auto;
  padding-bottom: clamp(48px, 8vh, 96px);
  overflow-x: hidden;
  overflow-x: clip;
}

.pl1-scene__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
  box-sizing: border-box;
}

.pl1-scene__inner--split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: min(calc(100svh - 72px), calc(100vh - 72px), 880px);
  padding-top: clamp(80px, 10vh, 112px);
  padding-bottom: clamp(48px, 6vh, 72px);
}

.pl1-scene__inner.pl1-scene__inner--book {
  padding-top: clamp(28px, 4vh, 44px);
  padding-bottom: clamp(48px, 7vh, 80px);
}

.pl1-scene__inner.pl1-hub__gallery {
  max-width: none;
  padding-top: clamp(64px, 9vh, 104px);
  padding-bottom: clamp(64px, 9vh, 104px);
  padding-left: 0;
  padding-right: 0;
}
.pl1-split__intro {
  text-align: left;
  max-width: 560px;
}
.pl1-split__calendar {
  width: 100%;
  max-width: 380px;
  justify-self: end;
}

@media (max-width: 900px) {
  .pl1-scene__inner--split {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: clamp(72px, 10vh, 96px);
  }
  body.photo-l1--personal .pl1-scene__inner--split {
    gap: clamp(40px, 8vh, 56px);
    padding-top: clamp(88px, 12vh, 112px);
  }
  body.photo-l1--personal .pl1-split__intro {
    gap: clamp(24px, 4vh, 36px);
  }
  .pl1-split__intro {
    max-width: none;
    text-align: left;
  }
  .pl1-split__intro .pl1-scene__actions {
    justify-content: flex-start;
  }
  .pl1-split__calendar {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* Mini calendar — editorial with light structure */
.pl1-cal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(18px, 2.5vw, 24px);
}
.pl1-cal__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.pl1-cal__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.pl1-cal__next {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}
.pl1-cal__next strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}
html[lang="zh-CN"] .pl1-cal__next strong { font-family: var(--serif-zh); }
.pl1-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.pl1-cal__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  flex: 1;
  text-align: center;
}
html[lang="zh-CN"] .pl1-cal__title { font-family: var(--serif-zh); }
.pl1-cal__arrow {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: color 0.3s;
}
.pl1-cal__arrow:hover:not(:disabled) {
  color: #fff;
}
.pl1-cal__arrow:disabled { cursor: default; }
.pl1-cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}
.pl1-cal__legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pl1-cal__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.pl1-cal__dot--open { background: #6fcf97; }
.pl1-cal__dot--partial { background: #e2c878; }
.pl1-cal__dot--full { background: rgba(255, 255, 255, 0.22); }
.pl1-cal__weekdays,
.pl1-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.pl1-cal__weekdays {
  margin-bottom: 6px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}
.pl1-cal__day {
  position: relative;
  aspect-ratio: 1;
  min-height: 44px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.pl1-cal__day--empty {
  background: none;
  border: none;
  pointer-events: none;
}
.pl1-cal__day--past {
  opacity: 0.28;
  cursor: default;
}
.pl1-cal__day--open:hover,
.pl1-cal__day--partial:hover {
  background: rgba(255, 255, 255, 0.06);
}
.pl1-cal__day--open .pl1-cal__dot { background: #6fcf97; }
.pl1-cal__day--partial .pl1-cal__dot { background: #e2c878; }
.pl1-cal__day--full .pl1-cal__dot,
.pl1-cal__day--advance .pl1-cal__dot { background: rgba(255, 255, 255, 0.2); }
.pl1-cal__day--today {
  color: #fff;
  font-weight: 500;
}
.pl1-cal__day--selected {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.pl1-cal__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl1-cal__day > .pl1-cal__dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
}
.pl1-cal__link {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  transition: color 0.3s;
}
.pl1-cal__link:hover { color: #fff; }

.pl1-cal__link {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 0;
  border: none;
  background: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  cursor: pointer;
  transition: color 0.3s;
}
.pl1-cal__link:hover { color: #fff; }

.pl1-cal__intl {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
}

/* Booking + gallery blocks (same page) */
.pl1-scene__inner--book {
  padding-top: clamp(24px, 3vh, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
}
.pl1-book__themes {
  margin-bottom: clamp(20px, 3vh, 32px);
}
.pl1-hub__gallery {
  padding-top: clamp(56px, 8vh, 96px);
  border-top: none;
  margin-top: clamp(48px, 7vh, 80px);
}
.pl1-hub__gallery[hidden] { display: none; }
.pl1-hub__gallery--open { animation: pl1GalleryIn 0.6s var(--ease-out-expo) both; }
@keyframes pl1GalleryIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

body.photo-l1 .nav__link-btn {
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.3s;
}
body.photo-l1 .nav__link-btn:hover { opacity: 1; }
body.photo-l1 .nav.nav--menu-open .nav__link-btn {
  font-size: 16px;
  color: #fff;
  opacity: 1;
}

/* —— Booking sheet (after date click) —— */
body.photo-l1 .pl1-scene__inner--book {
  padding-top: clamp(20px, 3vh, 36px);
  border-top: none;
  margin-top: 0;
}
body.photo-l1 .pl1-scene__inner--book:not(.pl1-book--active) {
  padding-top: 0;
  border-top: none;
}
body.photo-l1 .pl1-book--active {
  padding-top: clamp(40px, 5vh, 56px);
  margin-top: clamp(24px, 3vh, 32px);
}

body.photo-l1 .pl1-book-sheet,
body.photo-l1 .pl1-book-sheet.slot-panel {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  overflow: visible;
}
body.photo-l1 .pl1-book-sheet .slot-panel__head {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
body.photo-l1 .pl1-book-sheet .slot-book {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
body.photo-l1 .pl1-book-sheet:not([hidden]) {
  animation: pl1BookIn 0.55s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) both;
}
@keyframes pl1BookIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

body.photo-l1 .pl1-book-sheet__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 0 0 clamp(28px, 4vw, 40px);
  padding: 0;
  border-bottom: none;
  background: transparent;
}
body.photo-l1 .pl1-book-sheet__eyebrow {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
body.photo-l1 .pl1-book-sheet__date {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
}
html[lang="zh-CN"] body.photo-l1 .pl1-book-sheet__date {
  font-family: var(--serif-zh);
}

body.photo-l1 .pl1-book-sheet__summary {
  flex: 1 1 220px;
  max-width: 420px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}
body.photo-l1 .pl1-book-sheet__summary .slot-day-summary__open {
  color: #6fcf97;
  font-size: 13px;
}
body.photo-l1 .pl1-book-sheet__summary .slot-day-summary__notice {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
body.photo-l1 .pl1-book-sheet__summary .slot-day-summary__notice--warn {
  color: #e2c878;
}
body.photo-l1 .pl1-book-sheet__summary .slot-day-summary__booked {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body.photo-l1 .pl1-book-sheet__summary .slot-day-summary__booked-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
body.photo-l1 .pl1-book-sheet__summary .slot-day-summary__badge {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

body.photo-l1 .pl1-book-sheet__col-label {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

body.photo-l1 .pl1-book-sheet__themes {
  margin: 0 0 clamp(28px, 4vw, 40px);
  padding: 0;
  border-bottom: none;
}
body.photo-l1 .schedule-themes__grid--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
body.photo-l1 .schedule-themes__grid--compact .schedule-theme {
  flex: 1 1 auto;
  min-width: min(100%, 140px);
  max-width: 220px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
body.photo-l1 .schedule-themes__grid--compact .schedule-theme:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: none;
}
body.photo-l1 .schedule-themes__grid--compact .schedule-theme.is-active {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
body.photo-l1 .schedule-themes__grid--compact .schedule-theme__name {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 2px;
}
html[lang="zh-CN"] body.photo-l1 .schedule-themes__grid--compact .schedule-theme__name {
  font-family: var(--serif-zh);
}
body.photo-l1 .schedule-themes__grid--compact .schedule-theme__desc {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}
body.photo-l1 .schedule-themes__grid--compact .schedule-theme.is-active .schedule-theme__desc {
  color: rgba(255, 255, 255, 0.55);
}

body.photo-l1 .pl1-book-sheet__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin: 0;
}
body.photo-l1 .pl1-book-sheet__times,
body.photo-l1 .pl1-book-sheet__form {
  padding: 0;
}
body.photo-l1 .pl1-book-sheet__times {
  border-right: none;
}
body.photo-l1 .pl1-book-sheet__form.slot-book {
  margin: 0;
  padding-top: clamp(18px, 2.8vw, 24px);
  border-top: none;
  gap: 12px;
}

body.photo-l1 .pl1-day-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  border: none;
  background: transparent;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
body.photo-l1 .pl1-day-timeline .timeline-row {
  display: grid;
  grid-template-columns: 3.8rem 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 14px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: default;
  transition: background 0.2s;
}
body.photo-l1 .pl1-day-timeline .timeline-row:last-child {
  border-bottom: none;
}
body.photo-l1 .pl1-day-timeline .timeline-row__time {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.85);
}
body.photo-l1 .pl1-day-timeline .timeline-row__track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
body.photo-l1 .pl1-day-timeline .timeline-row__fill {
  height: 100%;
  border-radius: inherit;
}
body.photo-l1 .pl1-day-timeline .timeline-row__state {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  min-width: 2.8em;
  text-align: right;
}
body.photo-l1 .pl1-day-timeline .timeline-row--open {
  cursor: pointer;
}
body.photo-l1 .pl1-day-timeline .timeline-row--open .timeline-row__fill {
  background: #6fcf97;
}
body.photo-l1 .pl1-day-timeline .timeline-row--open:hover {
  background: rgba(111, 207, 151, 0.1);
}
body.photo-l1 .pl1-day-timeline .timeline-row--selected {
  background: rgba(255, 255, 255, 0.08);
}
body.photo-l1 .pl1-day-timeline .timeline-row--selected .timeline-row__fill,
body.photo-l1 .pl1-day-timeline .timeline-row--selected.timeline-row--range .timeline-row__fill {
  background: #fff;
}
body.photo-l1 .pl1-day-timeline .timeline-row--selected .timeline-row__time {
  font-weight: 500;
  color: #fff;
}
body.photo-l1 .pl1-day-timeline .timeline-row--range .timeline-row__fill {
  background: rgba(111, 207, 151, 0.45);
}
body.photo-l1 .pl1-day-timeline .timeline-row--booked .timeline-row__fill {
  background: rgba(226, 200, 120, 0.55);
}
body.photo-l1 .pl1-day-timeline .timeline-row--pending .timeline-row__fill {
  background: linear-gradient(90deg, rgba(226, 200, 120, 0.5), rgba(226, 200, 120, 0.75));
}
body.photo-l1 .pl1-day-timeline .timeline-row--past .timeline-row__fill,
body.photo-l1 .pl1-day-timeline .timeline-row--advance .timeline-row__fill {
  background: rgba(255, 255, 255, 0.06);
}
body.photo-l1 .pl1-day-timeline .timeline-row--past,
body.photo-l1 .pl1-day-timeline .timeline-row--advance {
  opacity: 0.45;
}
body.photo-l1 .pl1-day-timeline .day-timeline__break {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  margin: 4px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
}

body.photo-l1 .pl1-book-sheet__form .slot-book__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
body.photo-l1 .pl1-book-sheet__form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 11px 14px;
  font-size: 13px;
  min-height: 42px;
  border-radius: 0;
  appearance: auto;
}
body.photo-l1 .pl1-book-sheet__form select option {
  background: #1a1a1a;
  color: #fff;
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusions {
  padding: 14px 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusions-label {
  color: rgba(255, 255, 255, 0.45);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusion {
  color: rgba(255, 255, 255, 0.55);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusion.is-yes {
  color: rgba(255, 255, 255, 0.82);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusion.is-yes::before {
  background: #6fcf97;
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusion.is-no::before {
  background: #e0a060;
}
body.photo-l1 .pl1-book-sheet__form .slot-book__inclusions-label--sub {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__policy-label {
  color: rgba(255, 255, 255, 0.72);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__policy-text {
  color: rgba(255, 255, 255, 0.48);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__quote {
  padding: 14px 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__quote-row strong {
  color: #fff;
  font-weight: 500;
}
body.photo-l1 .pl1-book-sheet__form .slot-book__quote-deposit {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__quote-deposit-title {
  color: rgba(255, 255, 255, 0.92);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__quote-deposit-hint {
  color: rgba(255, 255, 255, 0.48);
}
body.photo-l1 .pl1-book-sheet__form .slot-book__quote-deposit-amount {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
body.photo-l1 .pl1-book-sheet__form .slot-book__submit {
  width: 100%;
  margin-top: 4px;
}

body.photo-l1 .pl1-book-sheet__foot {
  padding: clamp(28px, 4vw, 40px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
body.photo-l1 .pl1-book-sheet__foot .slot-book__hint {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}
body.photo-l1 .pl1-book-sheet__inquiry {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.photo-l1 .pl1-book-sheet__inquiry .schedule-inquiry__title {
  margin: 0 0 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
body.photo-l1 .pl1-book-sheet__inquiry .schedule-inquiry__desc {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 56ch;
}

body.photo-l1 .pl1-book__list .upcoming__title {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: clamp(24px, 3vh, 32px);
}
body.photo-l1 .pl1-book__list .upcoming__item {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  body.photo-l1 .pl1-book-sheet__grid {
    grid-template-columns: 1fr;
  }
  body.photo-l1 .pl1-book-sheet__hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: clamp(20px, 4vw, 28px);
  }
  body.photo-l1 .pl1-book-sheet__summary {
    flex: none;
    max-width: none;
  }
  body.photo-l1 .pl1-book-sheet__times {
    border-bottom: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.photo-l1 .pl1-day-timeline {
    max-height: none;
  }
  body.photo-l1 .pl1-day-timeline .timeline-row {
    grid-template-columns: 3.2rem 1fr auto;
    padding: 12px 10px;
    min-height: 44px;
  }
  body.photo-l1 .pl1-book-sheet__form {
    position: relative;
    bottom: auto;
    padding-bottom: 0;
    background: transparent;
  }
  body.photo-l1 .pl1-book-sheet__form .slot-book__submit {
    width: 100%;
    min-height: 48px;
  }
  body.photo-l1 .schedule-themes__grid--compact .schedule-theme {
    max-width: none;
    flex: 1 1 calc(50% - 12px);
    min-height: 44px;
  }
  .pl1-scene__actions .btn--solid,
  .pl1-scene__actions .btn--ghost {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }
  body.photo-l1--personal .pl1-scene__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  body.photo-l1--personal .pl1-scene__actions .btn {
    width: 100%;
    flex: none;
  }
  .pl1-cal__legend {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .pl1-cal__arrow {
    width: 44px;
    height: 44px;
  }
  .pl1-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer--cinema {
    padding-bottom: max(40px, calc(24px + env(safe-area-inset-bottom)));
  }
}

.pl1-scene__inner--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.pl1-scene__inner--center .pl1-scene__actions {
  justify-content: center;
}
.pl1-scene__inner--about {
  max-width: 720px;
}

.pl1-scene__eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: clamp(24px, 3vh, 32px);
}

.pl1-scene__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
html[lang="zh-CN"] .pl1-scene__title { font-family: var(--serif-zh); }

.pl1-scene__sub {
  margin-top: clamp(20px, 2.5vh, 28px);
  font-size: clamp(14px, 1.5vw, 15px);
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
}

.pl1-scene__lead {
  margin-top: clamp(20px, 3vh, 28px);
  max-width: 36em;
  font-family: var(--serif);
  font-size: clamp(15px, 1.65vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}
html[lang="zh-CN"] .pl1-scene__lead { font-family: var(--serif-zh); }

.pl1-split__intro .pl1-scene__actions {
  justify-content: flex-start;
}

body.photo-l1--personal .pl1-scene__inner--split {
  gap: clamp(56px, 8vw, 112px);
  padding-top: clamp(96px, 12vh, 136px);
  padding-bottom: clamp(64px, 8vh, 96px);
}

body.photo-l1--personal .pl1-split__intro {
  max-width: min(680px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4.5vh, 44px);
}

body.photo-l1--personal .pl1-scene__eyebrow {
  margin-bottom: 0;
}

body.photo-l1--personal .pl1-scene__title {
  font-size: clamp(64px, 11vw, 120px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

body.photo-l1--personal .pl1-scene__sub {
  margin-top: 0;
  font-size: clamp(15px, 1.65vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}

body.photo-l1--personal .pl1-scene__types {
  margin-top: clamp(10px, 1.5vh, 14px);
  font-size: clamp(12px, 1.35vw, 14px);
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
}

body.photo-l1--personal .pl1-scene__scope {
  margin: 0;
  max-width: 28em;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

body.photo-l1--personal .pl1-scene__lead {
  margin-top: 0;
  max-width: 34em;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

body.photo-l1--personal .pl1-scene__actions {
  margin-top: clamp(20px, 3vh, 32px);
  gap: 20px 28px;
}

body.photo-l1--personal .nav__brand--personal {
  font-family: var(--logo-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

body.photo-l1--personal .footer__brand {
  font-family: var(--logo-display);
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.02em;
  text-transform: none;
}

body.photo-l1--personal .footer__legal {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.28);
  max-width: 28em;
  line-height: 1.5;
}

body.photo-l1--personal .footer__base {
  flex-wrap: wrap;
  gap: 8px 20px;
}

body.photo-l1--personal .footer__sign {
  margin: clamp(4px, 1vh, 12px) 0 clamp(28px, 4vw, 40px);
  opacity: 0.38;
}

body.photo-l1--personal .footer__sign-img {
  display: block;
  width: min(96px, 26vw);
  height: auto;
}

.pl1-scene__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: clamp(40px, 5vh, 56px);
}

body.photo-l1 .btn--solid {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
body.photo-l1 .btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 16px 30px;
  text-decoration: none;
}
body.photo-l1 .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

/* Section heads */
.pl1-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(32px, 5vw, 48px);
  padding-bottom: 0;
  border-bottom: none;
}
.pl1-section-head--light { border-bottom: none; }
.pl1-section-head__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
}
html[lang="zh-CN"] .pl1-section-head__title { font-family: var(--serif-zh); }
.pl1-hub__gallery--open .pl1-section-head {
  max-width: min(900px, 94vw);
  margin-inline: auto;
}
.pl1-section-head--light .pl1-section-head__title { color: #fff; }
.pl1-section-head__link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.pl1-section-head--light .pl1-section-head__link { color: rgba(255, 255, 255, 0.48); }
.pl1-section-head__link:hover { color: #fff; }

/* Services */
.pl1-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pl1-svc {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
}
.pl1-svc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s;
}
.pl1-svc:hover img {
  transform: scale(1.04);
  filter: contrast(1.04) brightness(1.02);
}
.pl1-svc__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
}
.pl1-svc__name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
}
html[lang="zh-CN"] .pl1-svc__name { font-family: var(--serif-zh); }
.pl1-svc__hint {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Gallery — horizontal editorial strip (portrait-native, no crop) */
.pl1-hub__gallery .pl1-section-head {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(12px, 2vh, 20px);
}

.pl1-section-head__hint {
  margin: 10px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.pl1-gallery--marquee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(32px, 8vw, 72px);
  background: linear-gradient(to right, #050505 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.pl1-gallery--marquee {
  position: relative;
  width: 100%;
  margin: 0;
}

.pl1-gallery__viewport {
  overflow: hidden;
  width: 100%;
}

.pl1-gallery__viewport--manual {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
  cursor: grab;
}

.pl1-gallery__viewport--manual:active {
  cursor: grabbing;
}

.pl1-gallery__viewport--manual::-webkit-scrollbar {
  height: 6px;
}

.pl1-gallery__viewport--manual::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.pl1-gallery__marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: pl1-gallery-marquee var(--marquee-duration, 80s) linear infinite;
}

.pl1-gallery__marquee:hover,
.pl1-gallery__marquee.is-paused {
  animation-play-state: paused;
}

.pl1-hub__gallery[hidden] .pl1-gallery__marquee {
  animation-play-state: paused;
}

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

.pl1-gallery__strip {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  gap: clamp(14px, 2vw, 22px);
  padding-right: clamp(14px, 2vw, 22px);
  padding-bottom: clamp(8px, 1.5vh, 12px);
}

.pl1-gallery__strip:first-child {
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
}

.pl1-gallery__strip--solo {
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
}

.pl1-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(32px, 8vw, 72px);
  background: linear-gradient(to left, #050505 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.pl1-gal {
  position: relative;
  overflow: hidden;
  display: block;
  flex: 0 0 auto;
  margin: 0;
  width: clamp(220px, 32vw, 400px);
  scroll-snap-align: start;
  background: #101010;
  aspect-ratio: var(--gal-ar, 2 / 3);
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(min(var(--gal-i, 0), 12) * 0.05s);
}

.pl1-gal--ready {
  opacity: 1;
  transform: none;
}

.pl1-gal__frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.pl1-gal img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: var(--gal-pos, center center);
  display: block;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.pl1-gal:hover img,
.pl1-gal:focus-visible img {
  transform: scale(1.015);
}

.pl1-gal__cap {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: clamp(32px, 5vw, 48px) clamp(14px, 2vw, 20px) clamp(12px, 2vw, 16px);
  font-family: var(--serif);
  font-size: clamp(11px, 1.2vw, 12px);
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 45%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
html[lang="zh-CN"] .pl1-gal__cap { font-family: var(--serif-zh); }

.pl1-gal:hover .pl1-gal__cap,
.pl1-gal:focus-visible .pl1-gal__cap {
  opacity: 1;
  transform: none;
}

.photo-showcase__empty {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--gutter);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transform: none;
}

@media (max-width: 540px) {
  .pl1-gal {
    width: clamp(200px, 72vw, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl1-gal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pl1-gal img { transition: none; }
  .pl1-gal__cap { transition: none; transform: none; opacity: 0; }
  .pl1-gal:hover .pl1-gal__cap { opacity: 1; }
}

/* About */
.pl1-about__label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.pl1-about__text {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.85;
  font-weight: 300;
}
.pl1-about__text strong { font-weight: 500; }
.pl1-about__tags {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

/* Pricing + process */
.pl1-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}
.pl1-pricing__list { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.pl1-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: inherit;
  transition: padding-left 0.3s;
}
.pl1-price-row:hover { padding-left: 6px; }
.pl1-price-row__name { font-size: 13px; }
.pl1-price-row__val {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
}
html[lang="zh-CN"] .pl1-price-row__val { font-family: var(--serif-zh); }
.pl1-price-row__val small { font-family: var(--sans); font-size: 10px; color: rgba(255, 255, 255, 0.45); }
.pl1-pricing__note { margin-top: 12px; font-size: 11px; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }

.pl1-process__steps {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pl1-process__steps li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  line-height: 1.55;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}
.pl1-process__steps li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.pl1-process__steps { counter-reset: step; }

/* CTA scene */
.pl1-cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.12;
}
html[lang="zh-CN"] .pl1-cta__title { font-family: var(--serif-zh); }
.pl1-cta__sub {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}
.pl1-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pl1-faq--compact { margin-top: 40px; max-width: 480px; }
.pl1-faq__item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.pl1-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.pl1-faq__item summary::-webkit-details-marker { display: none; }
.pl1-faq__item p {
  padding-bottom: 14px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

.footer--cinema {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer--cinema .footer__brand-k { color: #fff; }
.footer--cinema a { color: rgba(255,255,255,0.7); }

body.photo-l1 .footer__cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.footer__subscribe-desc {
  margin: 8px 0 12px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
}

.footer-subscribe {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 8px;
  align-items: center;
}

.footer-subscribe__field input {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
}

.footer-subscribe__field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-subscribe__field input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-subscribe__btn {
  padding: 10px 16px;
  font: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-subscribe__btn:hover { opacity: 0.9; }
.footer-subscribe__btn:disabled { opacity: 0.5; cursor: not-allowed; }

.footer-subscribe__err {
  margin: 8px 0 0;
  font-size: 12px;
  color: #f0a8a8;
}

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

@media (max-width: 1024px) {
  body.photo-l1 .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-subscribe {
    grid-template-columns: 1fr 1fr;
  }
  .footer-subscribe__btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 520px) {
  body.photo-l1 .footer__cols {
    grid-template-columns: 1fr;
  }
  .footer-subscribe {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pl1-hub__gallery--open { animation: none; }
  .pl1-gallery__marquee { animation: none; }
  .pl1-gallery__viewport { overflow-x: auto; overflow-y: hidden; }
  body.photo-l1 .pl1-book-sheet:not([hidden]) { animation: none; }
  .nav__links--cinema { transition: none; }
  html.photo-l1-root { scroll-behavior: auto; }
  .pl1-motion-item { opacity: 1; transform: none; filter: none; transition: none; }
}

@media (max-width: 1024px) {
  .pl1-info { grid-template-columns: 1fr; }
}

/* —— Tablet (521px – 1024px) —— */
@media (min-width: 521px) and (max-width: 1024px) {
  html.photo-l1-root {
    --gutter: clamp(28px, 4.5vw, 48px);
  }

  .pl1-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  body.photo-l1--personal .pl1-scene__title {
    font-size: clamp(52px, 8.5vw, 80px);
    letter-spacing: -0.028em;
  }

  body.photo-l1--personal .pl1-scene__inner--split {
    gap: clamp(40px, 6vh, 64px);
    padding-bottom: clamp(48px, 7vh, 72px);
  }

  body.photo-l1--personal .pl1-scene__actions .btn {
    min-height: 48px;
    padding-inline: 28px;
  }

  .pl1-gal {
    width: clamp(240px, 38vw, 340px);
  }

  body.photo-l1 .pl1-book-sheet__grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }

  body.photo-l1 .pl1-book-sheet__hero {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }

  body.photo-l1 .pl1-book-sheet__date {
    font-size: clamp(30px, 4.5vw, 42px);
  }

  .pl1-section-head__title {
    font-size: clamp(28px, 4vw, 44px);
  }
}

/* iPad 横屏 / 小平板桌面宽度：双栏 hero 收紧 */
@media (min-width: 901px) and (max-width: 1024px) {
  .pl1-scene__inner--split {
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: clamp(32px, 4.5vw, 52px);
    min-height: auto;
    padding-top: clamp(80px, 10vh, 104px);
  }

  body.photo-l1--personal .pl1-scene__inner--split {
    padding-top: clamp(88px, 11vh, 112px);
  }

  body.photo-l1--personal .pl1-split__intro {
    max-width: min(560px, 100%);
  }

  body.photo-l1 .pl1-book-sheet__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 36px);
  }
}

/* iPad 竖屏：日历居中、Hero 单列后的间距 */
@media (min-width: 521px) and (max-width: 900px) {
  body.photo-l1--personal .pl1-scene__inner--split {
    padding-top: clamp(84px, 11vh, 108px);
  }

  .pl1-split__calendar {
    max-width: min(440px, 100%);
    margin-inline: auto;
  }

  body.photo-l1 .pl1-cal {
    padding: clamp(20px, 3vw, 28px);
  }
}

/* —— Mobile polish (phones) —— */
@media (max-width: 520px) {
  html.photo-l1-root {
    --gutter: max(18px, 4.8vw);
  }

  body.photo-l1--personal .pl1-scene__inner--split {
    padding-top: clamp(72px, 16vh, 92px);
    padding-bottom: clamp(40px, 6vh, 56px);
    gap: 28px;
  }

  body.photo-l1--personal .pl1-scene__title {
    font-size: clamp(40px, 12.5vw, 58px);
    letter-spacing: -0.025em;
    line-height: 1.04;
  }

  body.photo-l1--personal .pl1-scene__sub {
    font-size: 13px;
    line-height: 1.65;
  }

  body.photo-l1--personal .pl1-scene__lead {
    font-size: 15px;
    line-height: 1.85;
  }

  body.photo-l1--personal .pl1-scene__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 8px;
  }

  body.photo-l1--personal .pl1-scene__actions .btn {
    width: 100%;
    flex: none;
  }

  body.photo-l1--personal .nav__brand--personal {
    font-size: 19px;
    max-width: calc(100vw - 88px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.photo-l1--personal .footer__brand {
    font-size: clamp(24px, 7vw, 32px);
  }

  body.photo-l1 .pl1-book-sheet__date {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  body.photo-l1 .schedule-themes__grid--compact .schedule-theme {
    flex: 1 1 100%;
  }

  .pl1-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .pl1-gal {
    width: min(78vw, 300px);
  }

  .pl1-gallery::after {
    width: 28px;
  }

  .pl1-section-head__title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .pl1-cta__actions {
    flex-direction: column;
  }

  .pl1-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  body.photo-l1 .pl1-announcements {
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
  }
}

/* ============================================================
   2026-07 visual refresh — hero photograph, frosted calendar,
   blue-hour accent, focus visibility. Scoped additive layer.
   ============================================================ */
.pl1-page { --pl1-tide: #9fc3d0; }

/* —— Hero photograph layer —— */
.pl1-scene--hub {
  position: relative;
  isolation: isolate;
}
.pl1-scene--hub .pl1-scene__inner--split {
  position: relative;
  z-index: 1;
}
.pl1-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 65% at 50% 12%, rgba(22, 32, 52, 0.95) 0%, transparent 62%),
    radial-gradient(ellipse 55% 40% at 78% 32%, rgba(159, 195, 208, 0.07), transparent 68%),
    radial-gradient(ellipse 45% 38% at 14% 58%, rgba(90, 110, 150, 0.06), transparent 65%),
    #040508;
}
.pl1-hero-bg__canvas,
.pl1-hero-bg .hero__canvas-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.92;
}
.pl1-hero-bg #heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
}
.pl1-hero-bg::after {
  /* nebula scrims — text legibility + bottom blend */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(4, 5, 8, 0.82) 0%,
      rgba(4, 5, 8, 0.52) 36%,
      rgba(4, 5, 8, 0.08) 62%,
      rgba(4, 5, 8, 0.22) 100%),
    linear-gradient(to bottom,
      rgba(4, 5, 8, 0.55) 0%,
      rgba(4, 5, 8, 0) 20%,
      rgba(4, 5, 8, 0) 58%,
      rgba(10, 10, 10, 0.94) 92%,
      #0a0a0a 100%);
}
.pl1-hero-bg--stars-static {
  background-color: #040508;
  background-image:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(30, 42, 68, 0.55), transparent 70%),
    radial-gradient(ellipse 50% 35% at 75% 30%, rgba(159, 195, 208, 0.1), transparent 65%),
    radial-gradient(1px 1px at 12% 18%, rgba(220, 230, 255, 0.9), transparent),
    radial-gradient(1px 1px at 28% 62%, rgba(196, 210, 240, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 44% 34%, rgba(255, 248, 235, 0.95), transparent),
    radial-gradient(1px 1px at 58% 78%, rgba(180, 200, 230, 0.65), transparent),
    radial-gradient(1px 1px at 72% 22%, rgba(210, 220, 255, 0.8), transparent),
    radial-gradient(2px 2px at 86% 48%, rgba(255, 245, 220, 0.85), transparent),
    radial-gradient(1px 1px at 18% 88%, rgba(190, 205, 235, 0.6), transparent),
    radial-gradient(1px 1px at 92% 12%, rgba(220, 230, 255, 0.75), transparent),
    radial-gradient(1px 1px at 36% 44%, rgba(175, 195, 225, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 64% 56%, rgba(255, 250, 240, 0.9), transparent);
}
body.photo-l1 .pl1-hero-bg.hero--stars-static .hero__canvas-wrap,
body.photo-l1 #hero.hero--stars-static .hero__canvas-wrap {
  display: none;
}
@media (max-width: 900px) {
  .pl1-hero-bg::after {
    background:
      linear-gradient(to bottom,
        rgba(4, 5, 8, 0.72) 0%,
        rgba(4, 5, 8, 0.32) 28%,
        rgba(4, 5, 8, 0.42) 62%,
        rgba(10, 10, 10, 0.94) 90%,
        #0a0a0a 100%);
  }
}

/* keep hero type crisp over the starfield */
.pl1-scene--hub .pl1-split__intro {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 14px 44px rgba(0, 0, 0, 0.38);
}
.pl1-scene--hub .pl1-scene__actions { text-shadow: none; }

/* —— Eyebrow: blue-hour hairline tick —— */
body.photo-l1--personal .pl1-scene__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
body.photo-l1--personal .pl1-scene__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(to right, var(--pl1-tide, #9fc3d0), rgba(159, 195, 208, 0.12));
}

/* —— Calendar card: frosted glass over the photograph —— */
.pl1-scene--hub .pl1-cal {
  background: linear-gradient(180deg, rgba(17, 20, 24, 0.60), rgba(10, 12, 14, 0.52));
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  border-color: rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .pl1-scene--hub .pl1-cal { background: rgba(12, 14, 16, 0.93); }
}

/* —— Focus visibility on the dark theme —— */
body.photo-l1 a:focus-visible,
body.photo-l1 button:focus-visible,
body.photo-l1 input:focus-visible,
body.photo-l1 select:focus-visible,
body.photo-l1 textarea:focus-visible,
body.photo-l1 [tabindex]:focus-visible {
  outline: 2px solid var(--pl1-tide, #9fc3d0);
  outline-offset: 3px;
}

/* —— Ghost button: tide hover —— */
body.photo-l1 .btn--ghost:hover {
  border-color: rgba(159, 195, 208, 0.6);
}

/* —— Gallery edge fades match the page ground —— */
.pl1-gallery--marquee::before {
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}
.pl1-gallery::after {
  background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

/* —— KJ shoot log: modular journal panel —— */
.kj-log {
  --kj-bg: #0a0a0a;
  --kj-surface: #111111;
  --kj-gap: 0;
  --kj-radius: 12px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--kj-bg);
}

.kj-log__container {
  max-width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 11vh, 112px) var(--gutter) clamp(48px, 7vh, 72px);
  box-sizing: border-box;
}

.kj-log__header {
  margin-bottom: clamp(20px, 3vh, 28px);
  text-align: center;
}

.kj-log__eyebrow {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.kj-log__title {
  margin: 0;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

html[lang="zh-CN"] .kj-log__title {
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  letter-spacing: 0.12em;
}

.kj-log__tagline {
  margin: 10px auto 0;
  max-width: 28rem;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.kj-log__nav {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(22px, 3.5vh, 32px);
}

.kj-log__nav-pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.kj-log__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.kj-log__nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.kj-log__nav-count {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  min-width: 3.2em;
  text-align: center;
}

.kj-log__viewport,
.pl1-log-stage__viewport {
  overflow: hidden;
  width: 100%;
}

.kj-log__track,
.pl1-log-stage__track {
  display: flex;
  transition: transform 0.55s var(--ease-out-expo);
  will-change: transform;
}

.kj-log__sheet,
.pl1-log-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
  gap: 0;
  align-items: stretch;
  min-height: min(68vh, 620px);
  max-height: min(78vh, 720px);
  box-sizing: border-box;
  border-radius: var(--kj-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

/* — left: XHS-style media, borderless — */
.kj-log__media {
  position: relative;
  min-height: inherit;
  max-height: inherit;
  background: #000;
  border: none;
  overflow: hidden;
}

.kj-log__media .kj-works__strip,
.kj-log__media .pl1-log-photo {
  height: 100%;
  min-height: inherit;
  max-height: inherit;
}

.kj-log__media .kj-works__zoom,
.kj-log__media .pl1-log-photo__zoom {
  background: #000;
}

.kj-log__media .kj-works__zoom img,
.kj-log__media .pl1-log-photo__zoom img {
  object-fit: contain;
  min-height: min(68vh, 620px);
  max-height: min(78vh, 720px);
}

.kj-mod--works:hover .kj-works__arrow,
.kj-log__media:hover .kj-works__arrow,
.kj-log__media:focus-within .kj-works__arrow {
  opacity: 1;
}

/* — right: diary feed panel — */
.kj-log__feed {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  padding: 18px 14px 20px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 120px),
    #0e0e0e;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}

.kj-diary__stamp {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-align: center;
  color: rgba(255, 255, 255, 0.36);
}

.kj-diary__intro {
  margin-bottom: 14px;
}

.kj-diary__log-title {
  margin: 0 0 8px;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

html[lang="zh-CN"] .kj-diary__log-title {
  font-family: var(--serif-zh, "Noto Serif SC", serif);
}

.kj-diary__intro .kj-diary__meta {
  margin-bottom: 0;
}

.kj-diary__timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kj-diary__teaser {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.kj-diary__teaser--photographer,
.kj-diary__teaser--participant {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.kj-diary__teaser--photographer {
  background: rgba(0, 0, 0, 0.22);
}

.kj-diary__teaser--participant {
  background: rgba(0, 0, 0, 0.2);
}

.kj-diary__teaser:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.kj-diary__teaser--empty {
  cursor: default;
  opacity: 0.72;
}

.kj-diary__teaser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.kj-diary__teaser-badge {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}

.kj-diary__teaser-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.kj-diary__teaser-preview {
  margin: 0;
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  font-size: 13px;
  line-height: var(--nb-line-step, 26px);
  color: var(--nb-ink, #2c2622);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  white-space: pre-wrap;
}

html:not([lang="zh-CN"]) .kj-diary__teaser-preview {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 14px;
}

.kj-diary__empty {
  margin: 0;
  font-size: 13px;
  line-height: var(--nb-line-step, 26px);
  color: var(--nb-muted, rgba(44, 38, 34, 0.5));
  font-style: italic;
}

/* —— Journal quotes: dark editorial (2026-07 restyle, was notebook paper) —— */
.kj-notebook {
  --nb-ink: rgba(240, 237, 232, 0.9);
  --nb-muted: rgba(240, 237, 232, 0.48);
  --nb-line-step: 26px;
  --nb-accent: #c46852;
}

.kj-notebook--pt {
  --nb-accent: #b89848;
}

.kj-notebook--ph {
  --nb-accent: #c46852;
}

.kj-notebook__sheet {
  position: relative;
  padding: 2px 0 2px 16px;
  color: var(--nb-ink);
}

.kj-notebook__sheet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--nb-accent), rgba(255, 255, 255, 0.04));
  opacity: 0.65;
}

.kj-notebook--teaser {
  margin-top: 2px;
}

.kj-notebook--teaser .kj-notebook__sheet {
  min-height: 0;
}

.kj-notebook__line {
  margin: 0 0 calc(var(--nb-line-step) * 0.6);
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  font-size: 14px;
  line-height: 1.85;
  color: var(--nb-ink);
  white-space: pre-wrap;
}

html:not([lang="zh-CN"]) .kj-notebook__line {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 15px;
}

.kj-notebook__title {
  margin: 0 0 12px;
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}

html:not([lang="zh-CN"]) .kj-notebook__title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
}

.kj-xhs__scroll.kj-notebook {
  padding: 18px;
  background: #0a0a0a;
}

.kj-xhs__scroll .kj-notebook__sheet--detail {
  min-height: calc(100% - 8px);
  padding-bottom: 24px;
}

.kj-xhs__scroll.kj-notebook .kj-xhs__post-title {
  color: #fff;
}

.kj-xhs__scroll.kj-notebook .kj-xhs__para {
  color: var(--nb-ink);
}

.kj-xhs__scroll.kj-notebook .kj-xhs__inline-img {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.kj-diary__teaser-cta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(159, 195, 208, 0.92);
}

.kj-diary__entry {
  position: relative;
  padding: 14px 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.kj-diary__entry--photographer {
  background: linear-gradient(155deg, rgba(72, 38, 34, 0.28), rgba(12, 11, 11, 0.92));
  border-color: rgba(196, 108, 88, 0.24);
  box-shadow: inset 3px 0 0 rgba(196, 108, 88, 0.5);
}

.kj-diary__entry--participant {
  background: linear-gradient(155deg, rgba(62, 50, 24, 0.26), rgba(12, 11, 10, 0.92));
  border-color: rgba(196, 168, 78, 0.22);
  box-shadow: inset 3px 0 0 rgba(196, 168, 78, 0.46);
}

.kj-diary__entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.kj-diary__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.kj-diary__entry--photographer .kj-diary__label {
  color: rgba(232, 160, 140, 0.88);
}

.kj-diary__entry--participant .kj-diary__label {
  color: rgba(220, 196, 120, 0.88);
}

.kj-diary__sublabel {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.34);
}

.kj-diary__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.kj-diary__profile .kj-mod__avatar {
  width: 36px;
  height: 36px;
}

.kj-diary__name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.kj-diary__title {
  margin: 0 0 8px;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

html[lang="zh-CN"] .kj-diary__title {
  font-family: var(--serif-zh, "Noto Serif SC", serif);
}

.kj-diary__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.kj-diary__tag {
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
}

.kj-diary__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kj-diary__text {
  margin: 0;
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  white-space: pre-wrap;
}

html:not([lang="zh-CN"]) .kj-diary__text {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 15px;
  line-height: 1.75;
}

.kj-diary__entry--participant .kj-diary__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.kj-diary__para.is-clamped .kj-diary__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.kj-diary__expand {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(159, 195, 208, 0.92);
  cursor: pointer;
}

.kj-diary__expand:hover {
  color: #fff;
}

.kj-diary__album-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kj-diary__album {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.kj-diary__album-item {
  flex: 0 0 auto;
  width: min(152px, 44vw);
  height: 114px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: transform 0.2s, border-color 0.2s;
}

.kj-diary__album-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.kj-diary__album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kj-diary__album-hint {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.32);
}

.kj-diary__empty {
  margin: 0;
  font-size: 13px;
  line-height: var(--nb-line-step, 26px);
  color: var(--nb-muted, rgba(44, 38, 34, 0.5));
  font-style: italic;
}

/* legacy feed aliases (admin previews etc.) */
.kj-feed__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kj-feed__author .kj-mod__avatar {
  width: 40px;
  height: 40px;
}

.kj-feed__author-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.kj-feed__author-role {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
}

.kj-feed__title {
  margin: 0 0 10px;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

.kj-feed__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}

.kj-feed__tag {
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.kj-feed__caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  white-space: pre-wrap;
}

.kj-feed__blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kj-feed__blocks--comment .kj-feed__caption {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.kj-feed__text-block.is-clamped .kj-feed__caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.kj-feed__expand {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(159, 195, 208, 0.92);
  cursor: pointer;
}

.kj-feed__expand:hover {
  color: #fff;
}

.kj-feed__note-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}

.kj-feed__note-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
}

.kj-feed__note-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kj-feed__comment {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kj-feed__comment .kj-mod__avatar {
  width: 36px;
  height: 36px;
}

.kj-feed__comment-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}

.kj-feed__comment-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.kj-log__aside {
  display: flex;
  flex-direction: column;
  gap: var(--kj-gap);
  min-height: 0;
}

.kj-mod {
  position: relative;
  min-height: 0;
}

.kj-mod__surface {
  height: 100%;
  border-radius: var(--kj-radius);
  border: 1px solid;
  box-sizing: border-box;
}

.kj-mod__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

/* legacy module hooks — unused in feed layout */
.kj-mod--works,
.kj-mod__surface--works,
.kj-mod--meta,
.kj-mod--artist,
.kj-mod--voice {
  display: none;
}

.kj-works__strip,
.pl1-log-photo {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.kj-works__viewport,
.pl1-log-photo__viewport {
  overflow: hidden;
  height: 100%;
  min-height: inherit;
  touch-action: pan-y;
  cursor: grab;
}

.kj-works__viewport:active,
.pl1-log-photo__viewport:active {
  cursor: grabbing;
}

.kj-works__track,
.pl1-log-photo__track {
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 0.42s var(--ease-out-expo);
}

.kj-works__slide,
.pl1-log-photo__slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  height: 100%;
  min-height: inherit;
}

.kj-works__zoom,
.pl1-log-photo__zoom {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: none;
  background: #000;
  cursor: zoom-in;
}

.kj-works__zoom img,
.pl1-log-photo__zoom img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(68vh, 620px);
  max-height: min(78vh, 720px);
  object-fit: contain;
  object-position: center;
}

.kj-works__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.kj-works__arrow,
.pl1-log-photo__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.22s;
}

.kj-mod--works:hover .kj-works__arrow,
.kj-log__media:hover .kj-works__arrow,
.kj-log__media:focus-within .kj-works__arrow {
  opacity: 1;
}

.pl1-log-photo__arrow--prev,
.kj-works__arrow:first-child { left: 12px; }
.pl1-log-photo__arrow--next,
.kj-works__arrow:last-child { right: 12px; }

.kj-works__dots,
.pl1-log-photo__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.kj-works__dot,
.pl1-log-photo__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.kj-works__dot.is-active,
.pl1-log-photo__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.kj-mod__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.kj-mod__avatar--ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif, serif);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
}

.kj-mod__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.kj-mod__empty {
  color: rgba(255, 255, 255, 0.32);
}

.pl1-hub__gallery--lead {
  padding: 0;
}

#photoShowcaseGrid {
  max-width: none;
  margin: 0;
  padding: 0;
}

.pl1-log-stage__nav {
  margin-bottom: 0;
}

.pl1-log-stage__arrow {
  /* legacy hook — styled via .kj-log__nav-btn */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

.pl1-log-stage__counter {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

/* — Xiaohongshu-style diary detail modal — */
.kj-xhs {
  position: fixed;
  inset: 0;
  z-index: 11500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.kj-xhs[hidden] {
  display: none !important;
}

.kj-xhs__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.kj-xhs--visible .kj-xhs__backdrop {
  opacity: 1;
}

.kj-xhs__card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  height: min(680px, calc(100vh - 32px));
  border-radius: 16px;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.kj-xhs--visible .kj-xhs__card {
  transform: none;
  opacity: 1;
}

.kj-xhs__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.kj-xhs__split {
  display: flex;
  height: 100%;
}

.kj-xhs__media {
  flex: 1 1 54%;
  min-width: 0;
  background: #0a0a0a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kj-xhs__side {
  flex: 1 1 46%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.kj-xhs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.kj-xhs__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.kj-xhs__profile .kj-mod__avatar {
  width: 40px;
  height: 40px;
}

.kj-xhs__profile-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.kj-xhs__profile-role {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
}

.kj-xhs__journal-tag {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kj-xhs__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px 20px;
  -webkit-overflow-scrolling: touch;
}

.kj-xhs__post-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.kj-xhs__para {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  white-space: pre-wrap;
}

.kj-xhs__inline-album {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.kj-xhs__inline-img {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.kj-xhs__inline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kj-xhs__foot {
  flex-shrink: 0;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kj-xhs__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
}

.kj-xhs__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kj-xhs__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.kj-xhs__slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.kj-xhs__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.kj-xhs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
}

.kj-xhs__arrow--prev { left: 12px; }
.kj-xhs__arrow--next { right: 12px; }

.kj-xhs__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.kj-xhs__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.kj-xhs__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.kj-xhs__text-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(160deg, #1e1e1e, #101010);
}

.kj-xhs__text-hero p {
  margin: 0;
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
  max-height: 100%;
  overflow-y: auto;
}

.kj-xhs__text-hero--empty {
  font-size: 3rem;
  opacity: 0.35;
}

body.kj-xhs-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .kj-xhs {
    padding: 0;
    align-items: stretch;
  }

  .kj-xhs__card {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .kj-xhs__split {
    flex-direction: column;
  }

  .kj-xhs__media {
    flex: 0 0 min(52vh, 420px);
  }

  .kj-xhs__side {
    flex: 1;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Lightbox */
.pl1-log-lb {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl1-log-lb[hidden] {
  display: none !important;
}

.pl1-log-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.pl1-log-lb__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 12px 24px;
}

.pl1-log-lb__frame {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-height: calc(92vh - 72px);
}

.pl1-log-lb__frame img {
  max-width: 100%;
  max-height: calc(92vh - 48px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.pl1-log-lb__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.pl1-log-lb__arrow {
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.pl1-log-lb__counter {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.pl1-log-lb--visible .pl1-log-lb__backdrop {
  animation: pl1LbIn 0.3s ease both;
}

body.pl1-log-lb-open {
  overflow: hidden;
}

@keyframes pl1LbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .kj-log__sheet,
  .pl1-log-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .kj-log__tagline {
    max-width: none;
    padding: 0 8px;
  }

  .kj-log__feed {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-height: none;
  }

  .kj-log__media .kj-works__zoom img,
  .kj-works__zoom img,
  .pl1-log-photo__zoom img {
    min-height: min(48vh, 400px);
    max-height: min(56vh, 480px);
  }

  .kj-works__arrow,
  .pl1-log-photo__arrow {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl1-log-stage__track,
  .pl1-log-photo__track {
    transition: none;
  }
}

/* —— Homepage v2: intro-first + booking drawer —— */
.pl1-scene__inner--intro {
  display: flex;
  align-items: center;
  min-height: min(72vh, 720px);
  padding-top: clamp(88px, 12vh, 128px);
  padding-bottom: clamp(32px, 5vh, 56px);
  max-width: min(720px, 100%);
}

body.photo-l1--personal .pl1-scene__inner--intro .pl1-split__intro {
  max-width: none;
}

body.photo-l1 .nav__book-btn {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
body.photo-l1 .nav__book-btn:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.pl1-book-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.pl1-book-drawer[hidden] { display: none; }
.pl1-book-drawer.is-open { pointer-events: auto; }

.pl1-book-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pl1-book-drawer.is-open .pl1-book-drawer__backdrop { opacity: 1; }

.pl1-book-drawer__panel {
  position: relative;
  width: min(100%, 520px);
  max-width: 100%;
  height: 100%;
  background: #0e1012;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.45s var(--ease);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45);
}
.pl1-book-drawer.is-open .pl1-book-drawer__panel { transform: none; }

.pl1-book-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: max(18px, env(safe-area-inset-top)) 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.pl1-book-drawer__eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.pl1-book-drawer__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.pl1-book-drawer__close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
}
.pl1-book-drawer__close:hover { color: #fff; }

.pl1-book-drawer__scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 20px max(28px, env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}

.pl1-book-drawer .pl1-split__calendar {
  max-width: none;
  margin-bottom: 28px;
}

.pl1-book-drawer .pl1-scene__inner--book {
  padding: 0;
  max-width: none;
}

body.pl1-book-drawer-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .pl1-book-drawer__panel { width: 100%; border-left: 0; }
  body.photo-l1 .nav__links .nav__book-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (min-width: 901px) {
  body.photo-l1 .nav__links--cinema .nav__book-btn {
    order: 10;
    margin-left: 4px;
  }
}

/* ============================================================
   Guest comments — teaser card + modal (2026-07-18)
   ============================================================ */
.kj-diary__teaser--comments {
  background: rgba(0, 0, 0, 0.16);
}

.kj-cmt__teaser-preview {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.62);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.kj-cmt {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.kj-cmt--visible {
  opacity: 1;
}

.kj-cmt__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.kj-cmt__card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(80vh, 720px);
  display: flex;
  flex-direction: column;
  background: #101113;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6);
  transform: translateY(10px);
  transition: transform 0.24s ease;
}

.kj-cmt--visible .kj-cmt__card {
  transform: translateY(0);
}

.kj-cmt__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.kj-cmt__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.kj-cmt__head {
  padding: 20px 54px 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kj-cmt__title {
  margin: 0 0 4px;
  font-family: var(--serif-zh, "Noto Serif SC", serif);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

html:not([lang="zh-CN"]) .kj-cmt__title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
}

.kj-cmt__sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(240, 237, 232, 0.5);
}

.kj-cmt__list {
  flex: 1;
  min-height: 120px;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kj-cmt__empty {
  margin: auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(240, 237, 232, 0.45);
}

.kj-cmt__item {
  display: flex;
  gap: 12px;
}

.kj-cmt__item-main {
  flex: 1;
  min-width: 0;
}

.kj-cmt__item-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.kj-cmt__author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.kj-cmt__time {
  font-size: 11px;
  color: rgba(240, 237, 232, 0.38);
}

.kj-cmt__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.82);
  white-space: pre-wrap;
  word-break: break-word;
}

.kj-cmt__composer {
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kj-cmt__login {
  display: block;
  text-align: center;
}

.kj-cmt__input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 237, 232, 0.9);
  font-size: 13.5px;
  line-height: 1.7;
  resize: vertical;
  min-height: 72px;
}

.kj-cmt__input:focus {
  outline: none;
  border-color: rgba(159, 195, 208, 0.55);
}

.kj-cmt__form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.kj-cmt__as {
  font-size: 12px;
  color: rgba(240, 237, 232, 0.45);
}

.kj-cmt__submit {
  padding: 8px 20px;
  font-size: 13px;
}

.kj-cmt__error {
  margin: 8px 0 0;
  font-size: 12px;
  color: #e08c7d;
}

body.kj-cmt-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .kj-cmt {
    padding: 0;
    align-items: flex-end;
  }
  .kj-cmt__card {
    width: 100%;
    max-height: 86vh;
    border-radius: 14px 14px 0 0;
  }
}

/* ============================================================
   Homepage hero — a real site opening above the work carousel
   (2026-07-19). Reuses existing dark cinematic tokens.
   ============================================================ */
.pl1-hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(100px, 16vh, 190px) var(--gutter) clamp(80px, 12vh, 128px);
  overflow: hidden;
  isolation: isolate;
}

.pl1-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}

.pl1-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  animation: pl1HeroKen 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes pl1HeroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}

.pl1-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(255, 214, 150, 0.16) 0%, rgba(10, 10, 10, 0) 46%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.5) 0%, rgba(8, 8, 10, 0.1) 38%, rgba(8, 8, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.72) 0%, rgba(8, 8, 10, 0.06) 60%);
}

/* Film-grain + vignette for cinematic depth */
.pl1-hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.pl1-hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 22px);
}

.pl1-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.pl1-hero__eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.pl1-hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.42);
}

html[lang="zh-CN"] .pl1-hero__title,
html[lang="zh-TW"] .pl1-hero__title {
  font-family: var(--serif-zh);
}

.pl1-hero__sub {
  margin: 0;
  max-width: 46ch;
  font-family: var(--serif);
  font-size: clamp(16px, 2.1vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

html[lang="zh-CN"] .pl1-hero__sub,
html[lang="zh-TW"] .pl1-hero__sub {
  font-family: var(--serif-zh);
}

.pl1-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(12px, 2vh, 22px);
}

.pl1-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.3s var(--ease-out-expo),
    background 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo),
    color 0.3s var(--ease-out-expo);
}

.pl1-hero__cta--solid {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #fff;
}

.pl1-hero__cta--solid:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.pl1-hero__cta--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.pl1-hero__cta--ghost:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.pl1-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.pl1-hero__scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: pl1HeroScroll 1.7s var(--ease-out-expo) infinite;
}

@keyframes pl1HeroScroll {
  0% { opacity: 0; transform: translateY(-3px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(11px); }
  100% { opacity: 0; }
}

@media (max-width: 640px) {
  .pl1-hero {
    min-height: min(90svh, 720px);
    padding-top: clamp(112px, 20vh, 168px);
  }
  .pl1-hero__cta { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .pl1-hero__scroll-dot { animation: none; opacity: 0.8; }
  .pl1-hero__bg img { animation: none; transform: scale(1.04); }
}

.kj-xhs__para--muted {
  color: rgba(255, 255, 255, 0.48);
  font-style: italic;
}
