/* =============================================================
   YUKI MURANO — Official Site
   Cinematic · Minimal · Bilingual (EN/JP)
   Aesthetic reference: Joe Hisaishi official site
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Colors — stillness, prayer, moonlight */
  --bg:            #F9F9F8;   /* washi-white ground */
  --bg-soft:       #F3F1EC;   /* subtle panel */
  --ink:           #1C1E21;   /* deep sumi-black */
  --ink-2:         #3B3E42;
  --ink-3:         #6B6E72;   /* meta */
  --gold:          #C5BDB3;   /* pale silver-gold (moonlight) */
  --gold-2:        #A8A196;
  --midnight:      #2C3539;   /* midnight aether */
  --line:          rgba(28, 30, 33, 0.10);
  --line-strong:   rgba(28, 30, 33, 0.22);

  /* Typography
     JP body/display: Klee One  — a soft, hand-drawn Japanese serif that
     preserves the elegant editorial tone across the entire site.
     EN body/display: Cormorant Garamond (unchanged).
     UI/eyebrow/meta: Montserrat (unchanged). */
  --f-serif-en:    "Cormorant Garamond", "EB Garamond", "Times New Roman", serif;
  --f-serif-jp:    "Klee One", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --f-sans:        "Montserrat", "Inter", -apple-system, system-ui, sans-serif;

  /* Spacing */
  --pad-x:         clamp(24px, 6vw, 96px);
  --gap-section:   clamp(96px, 16vw, 240px);

  /* Motion */
  --ease:          cubic-bezier(.2, .7, .2, 1);
  --ease-slow:     cubic-bezier(.19, 1, .22, 1);

  /* Nav height */
  --nav-h:         72px;
}

/* ==================== GLOBAL JP FONT ====================
   Any element carrying .lang-jp — or any content-bearing element
   inside a JP-language document (`<html lang="jp">`) — renders in
   the Klee One stack. Eyebrow / meta / UI elements keep Montserrat
   because they use `font-family: var(--f-sans)` at higher specificity. */
.lang-jp,
.exp-card__desc.lang-jp,
.news-item__title .lang-jp,
.news-item__title.lang-jp,
html[lang="jp"] p,
html[lang="jp"] h2,
html[lang="jp"] h4,
html[lang="jp"] .exp-card__desc,
html[lang="jp"] .news-item__title,
html[lang="jp"] .lead,
html[lang="jp"] .prose,
html[lang="jp"] .back-link .jp,
html[lang="jp"] body {
  font-family: var(--f-serif-jp) !important;
}

/* Latin-script display titles always stay in Cormorant Garamond,
   even in JP mode. These are proper names / brand marks
   (YUTORI, Christmas in Tokyo, Yuki Murano, Kaguya's Light). */
.hero__title,
.detail-hero__title,
.exp-card__title,
.section__title,
html[lang="jp"] .hero__title,
html[lang="jp"] .detail-hero__title,
html[lang="jp"] .exp-card__title,
html[lang="jp"] .section__title {
  font-family: var(--f-serif-en) !important;
  font-style: italic;
}

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===================== BILINGUAL TOGGLE ======================
   <html lang="en"> shows .en, <html lang="jp"> shows .jp.
   Default: both, controlled by lang attribute + JS.
   ============================================================= */
html[lang="en"] .lang-jp { display: none !important; }
html[lang="jp"] .lang-en { display: none !important; }

/* ===================== NAV =====================
   Fixed top, hairline, ultra-minimal.
   ================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 60;
  background: transparent;
  transition: background 400ms var(--ease), backdrop-filter 400ms var(--ease), border-color 400ms var(--ease);
  border-bottom: 1px solid transparent;
  overflow: visible;
}
.nav.is-scrolled,
.nav.is-solid {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom-color: var(--line);
}
/* On dark hero, invert the mark until scrolled */
.nav__mark {
  font-family: var(--f-serif-en);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #fff;
  transition: color 400ms var(--ease), text-shadow 400ms var(--ease);
  white-space: nowrap;
  /* Subtle shadow keeps the mark legible over hero video/photo backgrounds */
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
  z-index: 2;
  position: relative;
}
.nav.is-scrolled .nav__mark,
.nav.is-solid .nav__mark {
  color: var(--ink);
  text-shadow: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin: 0; padding: 0;
  list-style: none;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--bg);
  padding: 6px 0;
  position: relative;
  transition: color 300ms var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 400ms var(--ease), left 400ms var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current]::after {
  width: 100%; left: 0;
}
.nav.is-scrolled .nav__links a,
.nav.is-solid .nav__links a { color: var(--ink); }

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: inherit;
}
.nav__lang button {
  background: none;
  border: none;
  padding: 4px 6px;
  color: var(--bg);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  opacity: 0.6;
  transition: opacity 300ms var(--ease), color 300ms var(--ease);
}
.nav__lang button.is-active { opacity: 1; }
.nav__lang .sep { opacity: 0.35; color: var(--bg); }
.nav.is-scrolled .nav__lang button,
.nav.is-solid .nav__lang button { color: var(--ink); }
.nav.is-scrolled .nav__lang .sep,
.nav.is-solid .nav__lang .sep { color: var(--ink); }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px; height: 32px;
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1px;
  background: var(--bg);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease), background 300ms var(--ease);
}
.nav__toggle span:nth-child(1) { top: 11px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav.is-scrolled .nav__toggle span,
.nav.is-solid .nav__toggle span { background: var(--ink); }

/* ===================== HERO (video / slideshow) ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--bg);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --------- Image slideshow (top page) --------- */
/* The uploaded slides have burnt-in typography (YUKI / MURANO / tagline)
   AND the singer positioned inside the frame. To guarantee that neither
   the top of the head nor the burnt-in title is EVER cropped on any
   viewport, the hero container matches each source image's own aspect
   ratio and uses `object-fit: contain`.

   PC:     images are 1024×576 (16:9)  → hero is 16:9.
   Mobile: images are 576×1024 (9:16)  → hero is 9:16.

   The image's own background (warm off-white) is matched by --bg-soft on
   the hero ground, so any `contain` letterbox is invisible. `max-height`
   is intentionally NOT set — clamping the hero to 100vh on a short
   desktop window makes the container narrower than 16:9 and forces
   letterbox bars, which the user reads as "the image is cut off". */
.hero--slideshow {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--bg-soft);
}
@media (max-aspect-ratio: 3/4) {
  /* Portrait viewports (phones held upright): lock the hero to the
     viewport height and let the image `contain` inside the area BELOW
     the fixed nav. This guarantees the burnt-in "YUKI / MURANO"
     wordmark at the top of the mobile artwork is never overlapped by
     the nav bar and is fully visible on load.
     Using `orientation` (aspect ratio) instead of `max-width` so that
     narrow-but-wide preview iframes on desktop still receive the
     landscape PC crop. */
  .hero--slideshow {
    aspect-ratio: auto;
    height: 100svh;
    min-height: 560px;
  }
  .hero--slideshow .hero__slides {
    top: var(--nav-h);
  }
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1600ms var(--ease);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  /* Contract: NEVER crop the burnt-in typography or the top of the head.
     `contain` is enforced with !important so any legacy `cover` rule
     that survives a stale cache cannot override it. */
  object-fit: contain !important;
  object-position: center center !important;
  background: var(--bg-soft);
  display: block;
}
@media (max-aspect-ratio: 3/4) {
  /* Portrait viewports: keep the head and burnt-in wordmark anchored to
     the top of the frame — any letterbox falls to the bottom instead
     of the head. */
  .hero__slide img {
    object-position: center top !important;
  }
}
/* No Ken-Burns on slideshow — scaling would clip the burnt-in typography. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(28,30,33,0.28) 0%,
      rgba(28,30,33,0.14) 30%,
      rgba(28,30,33,0.10) 60%,
      rgba(28,30,33,0.42) 100%);
  pointer-events: none;
}
.hero__body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "—";
  margin: 0 12px;
  opacity: 0.7;
}
.hero__title {
  font-family: var(--f-serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(44px, 7.6vw, 108px);
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__title-jp {
  margin-top: 20px;
  font-family: var(--f-serif-jp);
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.4em;
  color: color-mix(in oklab, var(--bg) 84%, transparent);
}
.hero__cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px;
  border: 1px solid color-mix(in oklab, var(--gold) 65%, transparent);
  color: var(--bg);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: background 400ms var(--ease), border-color 400ms var(--ease), color 400ms var(--ease);
}
.hero__cta .arrow {
  transition: transform 400ms var(--ease);
}
.hero__cta:hover {
  background: color-mix(in oklab, var(--gold) 15%, transparent);
  border-color: var(--gold);
  color: var(--bg);
}
.hero__cta:hover .arrow { transform: translateX(6px); }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 78%, transparent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
/* On the light image slideshow, invert the scroll hint to ink */
.hero--slideshow .hero__scroll {
  color: color-mix(in oklab, var(--ink) 72%, transparent);
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollHint 2.6s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0);   opacity: 0; }
  25%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(1);   opacity: 0; }
}

/* ===================== SECTION ===================== */
.section {
  padding: var(--gap-section) var(--pad-x);
}
.section--tight { padding: clamp(64px, 10vw, 140px) var(--pad-x); }
.section--band {
  background: var(--bg-soft);
}

.section__head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section__eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
}
.section__title {
  font-family: var(--f-serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.section__title-jp {
  margin-top: 14px;
  font-family: var(--f-serif-jp);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--ink-3);
}

/* ===================== FEATURED EXPERIENCE CARDS ===================== */
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 88px);
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .featured { grid-template-columns: 1fr 1fr; }
}
.exp-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--ink);
}
.exp-card__media {
  position: relative;
  /* Cover artworks (yutori.jpg / wifi.jpg) are 1:1 with burnt-in typography
     and a person centered in the frame. Keep the card square so nothing —
     the top typography, the singer's head — is ever cropped. */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.exp-card__media img,
.exp-card__media .exp-card__img {
  display: block;
  width: 100%;
  height: 100%;
  /* 1024×1024 の正方形カバーアート。焼き込みタイポと頭部が上寄りにあるため、
     aspect-ratio 1/1 のコンテナに `cover` で完全にフィットさせつつ、
     `object-position: center center` で中央に配置してどちらの側面も切れないようにする。 */
  object-fit: cover;
  object-position: center center;
  transition: transform 1600ms var(--ease-slow);
}
.exp-card:hover .exp-card__media img,
.exp-card:hover .exp-card__media .exp-card__img { transform: scale(1.04); }
.exp-card__body {
  padding: 32px 0 0;
}
.exp-card__title {
  font-family: var(--f-serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.exp-card__title-jp {
  margin-top: 8px;
  font-family: var(--f-serif-jp);
  font-size: 12px;
  letter-spacing: 0.45em;
  color: var(--ink-3);
}
.exp-card__desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
  max-width: 44ch;
}
.exp-card__more {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--midnight);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: color 300ms var(--ease), border-color 300ms var(--ease), gap 300ms var(--ease);
}
.exp-card:hover .exp-card__more { color: var(--ink); border-color: var(--ink); gap: 18px; }

/* ===================== NEWS ===================== */
.news-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; }
}
.news-item__date {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.news-item__title {
  font-family: var(--f-serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
}
.news-item__title-jp {
  display: block;
  margin-top: 4px;
  font-family: var(--f-serif-jp);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}
.news-item__tag {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* ===================== ABOUT / PROSE ===================== */
.prose {
  max-width: 640px;
  margin: 0 auto;
}
.prose p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  text-wrap: pretty;
}
.prose .lang-jp p {
  font-family: var(--f-serif-jp);
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.06em;
}
.prose em {
  font-style: italic;
  font-family: var(--f-serif-en);
  color: var(--ink);
}
.prose__divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 56px auto;
}
.prose__portrait {
  margin: 0 auto 64px;
  /* portrait-new.jpg is roughly square (subject centered with the head
     just above center). Match the image so the top of the head is never
     cropped on either mobile or PC. */
  aspect-ratio: 1 / 1;
  max-width: 520px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.prose__portrait img,
.prose__portrait .prose__portrait-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor toward the top so the crown of the head has breathing room. */
  object-position: 50% 20%;
}

/* ===================== EXPERIENCE DETAIL ===================== */
.detail-hero {
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 40px;
  text-align: center;
}
.detail-hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 24px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .detail-hero__eyebrow {
    font-size: 8px;
    letter-spacing: 0.38em;
  }
}
.detail-hero__title {
  font-family: var(--f-serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}
.detail-hero__title-jp {
  margin-top: 18px;
  font-family: var(--f-serif-jp);
  font-size: 13px;
  letter-spacing: 0.55em;
  color: var(--ink-3);
}
.detail-hero__visual {
  margin: 64px auto 0;
  max-width: 1120px;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.detail-hero__visual img,
.detail-hero__visual .detail-hero__visual-img,
.detail-hero__visual video {
  display: block;
  width: 100%;
  height: 100%;
  /* 1024×1024 の正方形カバーアートを 1:1 コンテナに完全フィット。
     焚き込みタイポと頭部を守りつつレターボックスを回避。 */
  object-fit: cover;
  object-position: center center;
}
/* Videos still fill the frame (they're intentionally framed to crop). */
.detail-hero__visual video {
  object-fit: cover;
  object-position: 50% 30%;
}
.detail-hero__visual--video {
  background: var(--midnight);
}

.lead {
  font-family: var(--f-serif-en);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
  text-wrap: balance;
}
.lead em {
  font-style: italic;
  color: var(--midnight);
}
.lead-jp {
  margin-top: 24px;
  font-family: var(--f-serif-jp);
  font-size: 14px;
  line-height: 2.1;
  color: var(--ink-2);
  text-align: center;
  letter-spacing: 0.15em;
  text-wrap: pretty;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ===================== TRACKLIST ===================== */
.tracklist {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.tracklist__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.tracklist__num {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold-2);
}
.tracklist__name {
  font-family: var(--f-serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.tracklist__name-jp {
  font-family: var(--f-serif-jp);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
}

/* ===================== CREDITS ===================== */
.credits {
  max-width: 520px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.credits__eyebrow {
  text-align: center;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
}
.credits__list { margin: 0; padding: 0; }
.credits__row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.credits__row:last-child { border-bottom: 1px solid var(--line); }
.credits__row dt {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.6;
}
.credits__row dd {
  font-family: var(--f-serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.credits__note {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 640px) {
  .credits__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
}

/* ===================== DETAIL HERO TAGLINE ===================== */
.detail-hero__tagline {
  margin-top: 20px;
  font-family: var(--f-serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.08em;
  color: var(--gold-2);
  text-wrap: balance;
}

/* ===================== BACK LINK ===================== */
.back-link {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  margin-top: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: color 300ms var(--ease);
}
.back-link .arrow {
  transition: transform 300ms var(--ease);
}
.back-link:hover { color: var(--midnight); }
.back-link:hover .arrow { transform: translateX(-6px); }
.back-link .jp {
  font-family: var(--f-serif-jp);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: none;
  color: var(--ink-3);
  margin-left: auto;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.field label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field textarea,
.field select {
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 10px 0;
  font-family: var(--f-serif-en);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 300ms var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--midnight);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
  font-family: var(--f-sans);
  font-size: 15px;
}
.submit-btn {
  justify-self: start;
  margin-top: 12px;
  padding: 16px 36px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
.submit-btn:hover { background: var(--ink); color: var(--bg); }

/* ===================== FOOTER ===================== */
.footer {
  padding: 72px var(--pad-x) 48px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "mark social copy"
    "legal legal legal";
  gap: 20px 32px;
  align-items: center;
}
.footer__mark   { grid-area: mark; }
.footer__social { grid-area: social; }
.footer__copy   { grid-area: copy; }
.footer__legal  { grid-area: legal; }
@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mark"
      "social"
      "copy"
      "legal";
    text-align: center;
    gap: 20px;
  }
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__legal a {
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 240ms var(--ease), border-color 240ms var(--ease);
}
.footer__legal a:hover {
  color: var(--midnight);
  border-bottom-color: var(--line-strong);
}
.footer__legal .sep { color: var(--ink-3); opacity: 0.6; }
.footer__mark {
  font-family: var(--f-serif-en);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.footer__social {
  display: inline-flex;
  gap: 18px;
  justify-self: center;
}
.footer__social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: color 300ms var(--ease);
}
.footer__social a:hover { color: var(--midnight); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.footer__copy {
  justify-self: end;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__copy .brand {
  text-transform: none;
  font-family: var(--f-serif-en);
  font-style: italic;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--ink-2);
}
@media (max-width: 720px) { .footer__copy { justify-self: center; } }

/* ===================== REVEAL ON SCROLL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1200ms var(--ease), transform 1200ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
}

/* ===================== MOBILE NAV ===================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  /* Ensure mark stays visible & doesn't get clipped on mobile */
  .nav__mark {
    display: inline-block !important;
    font-size: 17px;
    letter-spacing: 0.10em;
    max-width: none;
    overflow: visible;
  }
  /* Right cluster stays tight; mark on left, controls on right */
  .nav__lang { flex: 0 0 auto; }
  .nav__toggle { flex: 0 0 auto; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--bg);
    padding: calc(var(--nav-h) + 40px) var(--pad-x) 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms var(--ease);
  }
  .menu.is-open { opacity: 1; pointer-events: auto; }
  .menu a {
    font-family: var(--f-serif-en);
    font-style: italic;
    font-size: 32px;
    color: var(--ink);
    letter-spacing: 0.05em;
  }
  .menu a small {
    display: block;
    margin-top: 6px;
    font-family: var(--f-sans);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .menu__lang {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
}
@media (min-width: 901px) {
  .menu { display: none; }
}

/* Very small phones — keep everything readable and un-clipped */
@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .nav { gap: 10px; }
  .nav__mark {
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .nav__lang { font-size: 9px; letter-spacing: 0.22em; gap: 6px; }
  .nav__lang button { padding: 4px 3px; }
}


/* ================================================================
   EDITORIAL LAYER — 2026 refresh
   Non-obtrusive additions used by the editorial hero + experience
   sections. Old .exp-card / .featured / .section__head classes remain
   intact for other pages.
   ================================================================ */

:root {
  --deep-mist: #2a3230;    /* dark green-gray panel (参考画像に忠実) */
  --paper:     #ffffff;    /* pure white ground for editorial blocks */
  --hairline:  #e6e2d9;
}

/* ---- Editorial section head (left-aligned, large) ---- */
.section--editorial {
  background: var(--paper);
  padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 120px);
}
.section__head--editorial {
  text-align: left;
  max-width: 1280px;
  margin: 0 auto clamp(56px, 8vw, 100px);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section__head--editorial .section__eyebrow {
  margin-bottom: 0;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  color: var(--ink-3);
}
.section__head--editorial .section__index {
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* ---- Editorial work slot (one work = one big frame) ---- */
.exp-work {
  position: relative;
  display: block;
  color: var(--ink);
  background: var(--paper);
  padding: clamp(48px, 8vw, 120px) 0;
}
.exp-work + .exp-work { border-top: 1px solid var(--hairline); }

.exp-work__grid {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: min(78vh, 780px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0 var(--pad-x);
}
@media (min-width: 900px) {
  .exp-work__grid {
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: clamp(32px, 5vw, 88px);
    padding-left: clamp(24px, 6vw, 96px);
    padding-right: 0;
  }
}

/* Left column — text block, generous vertical whitespace */
.exp-work__text {
  position: relative;
  padding: clamp(24px, 5vw, 80px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.exp-work__index {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--ink-3);
  margin-bottom: 40px;
  padding-left: 2px;
  /* vertical stroke to the left */
  position: relative;
}
.exp-work__index::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink-3);
}
.exp-work__title {
  font-family: var(--f-serif-en) !important;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 0 0 clamp(20px, 3vw, 36px);
  color: var(--ink);
}
.exp-work__title .exp-work__subtitle {
  display: block;
  font-family: var(--f-serif-en) !important;
  font-style: italic;
  font-weight: 300;
  font-size: 0.28em;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-top: 10px;
}
.exp-work__desc {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
  max-width: 40ch;
  margin: 0 0 clamp(32px, 4vw, 56px);
}
.exp-work__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: gap 400ms var(--ease), letter-spacing 400ms var(--ease);
}
.exp-work:hover .exp-work__more { gap: 22px; letter-spacing: 0.5em; }

/* Right column — image slot; two treatments */
.exp-work__media {
  position: relative;
  width: 100%;
}

/* Treatment A — SILLAGE type: image bleeds off the right edge */
.exp-work--bleed .exp-work__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}
@media (min-width: 900px) {
  .exp-work--bleed .exp-work__media {
    /* bleed to the right edge of the viewport */
    aspect-ratio: auto;
    height: min(78vh, 720px);
    /* push into the right gutter so the image bleeds */
    margin-right: calc(-1 * var(--pad-x));
  }
}
.exp-work--bleed .exp-work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 2000ms var(--ease-slow);
}

/* Treatment B — KAWARA type: image floats on a dark panel */
.exp-work--panel .exp-work__media {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 88px);
  background: transparent;
}
.exp-work--panel .exp-work__media::before {
  /* the dark green-gray backdrop */
  content: '';
  position: absolute;
  inset: 8% 0 8% 8%;
  background: var(--deep-mist);
  z-index: 0;
}
@media (min-width: 900px) {
  .exp-work--panel .exp-work__media::before {
    /* bleed to the right edge */
    right: calc(-1 * var(--pad-x));
    inset-block: 6%;
  }
}
.exp-work--panel .exp-work__media img {
  position: relative;
  z-index: 1;
  width: min(70%, 480px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35);
  transition: transform 2000ms var(--ease-slow);
}
.exp-work:hover .exp-work__media img { transform: scale(1.02); }

/* Order swap: option to put image on the left */
.exp-work--reverse .exp-work__grid {
  direction: rtl;
}
.exp-work--reverse .exp-work__grid > * {
  direction: ltr;
}

/* ================================================================
   Treatment C — KAWARA (SEI YAMAZAKI reference):
   • Vertical portrait image bleeds off the right edge of the viewport
   • Sits on a dark winter panel (deep indigo / sumi)
   • Left column uses a tategaki (vertical) title + small english sub
   ================================================================ */
:root {
  --winter-panel: #2b3542;   /* deep sumi-indigo — winter, cold, hushed */
}

.exp-work--kawara {
  overflow: hidden; /* clip the right-bleed on any viewport */
  background: var(--paper);
  padding-top: clamp(64px, 10vw, 140px);
  padding-bottom: clamp(64px, 10vw, 140px);
}

.exp-work--kawara .exp-work__grid {
  min-height: min(84vh, 820px);
  align-items: stretch;
  padding-right: 0;
}
@media (min-width: 900px) {
  .exp-work--kawara .exp-work__grid {
    grid-template-columns: 38% 62%;
    gap: clamp(24px, 3vw, 56px);
  }
}

/* Left column — editorial text stack */
.exp-work--kawara .exp-work__text {
  padding-block: clamp(24px, 6vw, 80px);
  padding-right: clamp(12px, 2vw, 32px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* Vertical stroke + index (縦に "0 / 1 / 2" の縦棒) */
.exp-work--kawara .exp-work__index {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 32px;
  padding-left: 0;
  padding-block: 8px;
  letter-spacing: 0.6em;
  color: var(--ink-3);
  font-size: 10.5px;
}
.exp-work--kawara .exp-work__index::before {
  /* rotate the hairline to vertical */
  content: '';
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 1px;
  height: 14px;
  background: var(--ink-3);
}

/* Vertical (tate-gaki) Japanese-inspired title */
.exp-work--kawara .exp-work__title {
  font-family: var(--f-serif-jp) !important;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 clamp(28px, 3.5vw, 48px);
}
.exp-work--kawara .exp-work__title .lang-jp {
  font-family: var(--f-serif-jp) !important;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap; /* 「Wi-Fiだけ」を一列に固定（け が折り返さない） */
}
.exp-work--kawara .exp-work__title em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.exp-work--kawara .exp-work__title .lang-en {
  font-family: var(--f-serif-en) !important;
  font-style: italic;
  font-weight: 300;
  font-size: 0.9em;
  line-height: 1.05;
}
.exp-work--kawara .exp-work__title .exp-work__subtitle {
  display: block;
  font-family: var(--f-serif-en) !important;
  font-style: italic;
  font-weight: 300;
  font-size: 0.32em;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-top: 14px;
}

/* Small meta rows (Size / Material style — reference does this too) */
.exp-work--kawara .exp-work__meta {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: clamp(40px, 5vw, 72px);
  row-gap: 6px;
  margin: 0 0 clamp(36px, 5vw, 56px);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.exp-work--kawara .exp-work__meta dt {
  color: var(--ink-3);
  font-weight: 400;
  margin: 0;
}
.exp-work--kawara .exp-work__meta dd {
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.08em;
}

.exp-work--kawara .exp-work__desc {
  font-size: 14px;
  line-height: 1.95;
  max-width: 34ch;
  color: var(--ink-2);
  margin: 0 0 clamp(36px, 4vw, 56px);
}

/* Right column — image slab that bleeds off the right edge */
.exp-work--kawara .exp-work__media {
  position: relative;
  min-height: min(84vh, 820px);
  padding: 0;
  display: block;
}

/* Dark winter backdrop panel — vertical, bleeds right */
.exp-work--kawara .exp-work__media::before {
  content: '';
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 6%;
  right: calc(-1 * var(--pad-x)); /* bleed to viewport right edge */
  background: var(--winter-panel);
  z-index: 0;
}

/* Absolute-positioned frame that spans the panel & over-bleeds right.
   The <img> inside just fills the frame → avoids intrinsic-size collapse. */
.exp-work--kawara .exp-work__media-frame {
  position: absolute;
  top: 12%;
  bottom: 4%;
  left: 22%;
  right: calc(-1 * var(--pad-x) - clamp(20px, 4vw, 80px)); /* over-bleed */
  z-index: 1;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.5),
              0 12px 32px -12px rgba(0,0,0,0.35);
  overflow: hidden;
  background: #0d1218;  /* keeps look clean while lazy-loading */
}
.exp-work--kawara .exp-work__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 顔が画像の上寄りにあるため、center top で頭・顔が切れないようにする */
  object-position: center 18%;
  display: block;
  transition: transform 2200ms var(--ease-slow);
}
.exp-work--kawara:hover .exp-work__media-frame img { transform: scale(1.015); }
.exp-work--kawara:hover .exp-work__media img {
  transform: scale(1.015);
}

/* Discover — subtle underline treatment like reference */
.exp-work--kawara .exp-work__more {
  gap: 18px;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
}
.exp-work--kawara .exp-work__more::after {
  content: '';
  width: clamp(48px, 6vw, 96px);
  height: 1px;
  background: var(--ink);
  margin-left: 4px;
  transition: width 400ms var(--ease);
}
.exp-work--kawara:hover .exp-work__more::after { width: clamp(72px, 9vw, 140px); }

/* --- Mobile: stack image on top (uncropped), text below ---
   モバイルではフレーム内トリミングを完全に避けるため、
   画像は winter パネル上に `contain` でフル表示（正方形画像全体が
   1ピクセルも切れずに見える）し、テキストはその下に置く縦積み。 */
@media (max-width: 899px) {
  .exp-work--kawara {
    padding: clamp(48px, 10vw, 96px) 0 clamp(56px, 12vw, 96px);
  }
  .exp-work--kawara .exp-work__grid {
    display: block;              /* テキスト横並びをやめて縦積みへ */
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    min-height: 0;
  }

  /* --- 画像ブロック（上段・フルブリード・切り抜きなし） --- */
  .exp-work--kawara .exp-work__media {
    position: relative;
    width: 100vw;
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    padding: clamp(24px, 6vw, 40px) var(--pad-x);
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    display: block;
  }
  /* winter パネルを画像領域いっぱいに敷く（右へのはみ出しは無し） */
  .exp-work--kawara .exp-work__media::before {
    top: 0; bottom: 0;
    left: 0; right: 0;
  }
  /* 画像フレームは position: static にして自然な高さで正方形画像を全表示 */
  .exp-work--kawara .exp-work__media-frame {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    width: 100%;
    aspect-ratio: 1 / 1;         /* 正方形フレーム */
    margin: 0 auto;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45),
                0 8px 20px -8px rgba(0,0,0,0.30);
  }
  .exp-work--kawara .exp-work__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;         /* 切らない！画像全体を表示 */
    object-position: center;
    background: #0d1218;
  }

  /* --- テキストブロック（上段） --- */
  /* DOM順が text → media のため、モバイルでは上にテキスト、下に画像。
     DISCOVER リンクと下段の画像の間にゆとりを持たせるため、
     テキスト下の余白 (padding-bottom) をしっかり確保する。 */
  .exp-work--kawara .exp-work__text {
    padding: clamp(32px, 8vw, 56px) var(--pad-x) clamp(40px, 10vw, 72px);
    align-items: flex-start;
  }
  /* DISCOVER と画像の間をもう一段ゆったりに */
  .exp-work--kawara .exp-work__more {
    margin-bottom: clamp(8px, 3vw, 24px);
  }
  .exp-work--kawara .exp-work__index {
    writing-mode: horizontal-tb; /* 縦書きをやめて横書きに */
    text-orientation: initial;
    margin-bottom: 20px;
    padding: 0;
    letter-spacing: 0.4em;
  }
  .exp-work--kawara .exp-work__index::before { display: none; }
  .exp-work--kawara .exp-work__title {
    font-size: clamp(28px, 7.2vw, 44px);
    margin-bottom: 20px;
  }
  .exp-work--kawara .exp-work__meta {
    font-size: 10px;
    column-gap: 20px;
    margin-bottom: 24px;
  }
  .exp-work--kawara .exp-work__desc { display: none; }
}

/* ---- Mobile: image full-bleed on top, text below ---- */
@media (max-width: 899px) {
  .exp-work:not(.exp-work--kawara) { padding: 0; }
  .exp-work + .exp-work { border-top: 1px solid var(--hairline); margin-top: 0; }
  .exp-work:not(.exp-work--kawara) .exp-work__grid {
    display: block;
    padding: 0;
    min-height: 0;
  }
  .exp-work:not(.exp-work--kawara) .exp-work__media {
    width: 100vw;
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
  }
  .exp-work--bleed .exp-work__media {
    aspect-ratio: 4 / 5;
    max-height: 78vh;
  }
  .exp-work--panel .exp-work__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: clamp(28px, 8vw, 56px);
  }
  .exp-work--panel .exp-work__media::before {
    inset: 6% 6% 6% 6%;
  }
  .exp-work--panel .exp-work__media img {
    width: 78%;
  }
  .exp-work:not(.exp-work--kawara) .exp-work__text {
    padding: clamp(40px, 10vw, 72px) var(--pad-x) clamp(56px, 12vw, 96px);
    align-items: flex-start;
  }
  .exp-work:not(.exp-work--kawara) .exp-work__index { margin-bottom: 24px; }
  .exp-work:not(.exp-work--kawara) .exp-work__index::before { display: none; }
}
