/* ── Web Fonts ── */
@font-face {
  font-family: 'LT Oksana';
  src: url('../fonts/LTOksana-Bold.woff2') format('woff2'),
       url('../fonts/LTOksana-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --cream:       #f2f4ee;
  --cream-dark:  #dae0d5;
  --text:        #1e2419;
  --text-muted:  #6b7568;
  --accent:      #5b7a5a;
  --accent-lt:   #87a486;
  --dark:        #141a13;
  --on-dark:     #f2f5ee;

  --en: 'LT Oksana', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --mono: 'Inter', sans-serif;
}

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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #cdd4c8;
}
body {
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 680px;
  margin: 0 auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── Sticky Header ── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  width: 100%;
  max-width: 680px;
  z-index: 100;
  background: rgba(242,244,238,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(91,122,90,0.12);
  transform: translateX(-50%) translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1);
  will-change: transform;
}
.sticky-header.is-visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
}
.sticky-header__logo {
  height: 18px;
  width: auto;
  /* ダークロゴそのまま表示 */
}
.sticky-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.sticky-header__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  opacity: 0.75;
  transition: transform 0.2s, opacity 0.15s;
}
.sticky-header__hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sticky-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.sticky-header__hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Drawer ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 75%;
  max-width: 280px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}
.drawer-overlay.is-open .drawer {
  transform: translateX(0);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.drawer__logo {
  height: 16px;
  width: auto;
  filter: brightness(0);
  opacity: 0.8;
}
.drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.4;
  line-height: 1;
  padding: 4px;
  transition: opacity 0.2s;
}
.drawer__close:hover { opacity: 1; }
.drawer__nav {
  list-style: none;
  flex: 1;
}
.drawer__nav li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  color: var(--text);
  transition: background 0.15s;
}
.drawer__nav a:active { background: rgba(0,0,0,0.03); }
.drawer__nav-en {
  font-family: var(--en);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.10em;
}
.drawer__nav-arrow {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(34,28,23,0.2);
}
.drawer__book {
  display: block;
  margin: 20px;
  padding: 13px;
  background: var(--accent);
  text-align: center;
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #fff;
  transition: background 0.25s;
}
.drawer__book:hover { background: var(--accent-lt); }

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
}
.hero__photo {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center top;
  will-change: transform;
}
.hero__cream {
  background: var(--cream);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px 20px;
}
.hero__logo {
  height: 28px;
  width: auto;
  animation: fadeUp 1.2s cubic-bezier(0.22,0.61,0.36,1) 0.3s both;
}
.hero__sub {
  font-family: var(--en);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(34,28,23,0.45);
  animation: fadeUp 1.2s cubic-bezier(0.22,0.61,0.36,1) 0.55s both;
}

/* ── Intro ── */
.intro {
  background: var(--cream);
  padding: 20px 20px 48px;
  border-top: 1px solid rgba(139,114,84,0.12);
}
.intro__btn {
  display: block;
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(139,114,84,0.35);
  border-radius: 4px;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}
.intro__btn:hover {
  background: rgba(139,114,84,0.06);
  border-color: rgba(139,114,84,0.6);
}
.intro__btn-label {
  display: block;
  font-family: var(--en);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 10px;
}
.intro__copy {
  font-family: var(--en);
  font-weight: 400;
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
}
.intro__concept {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(34,28,23,0.55);
}
.intro__btn-arrow {
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-family: var(--en);
  font-size: 14px;
  color: var(--accent);
  opacity: 0.5;
  transition: opacity 0.25s, transform 0.25s;
}
.intro__btn:hover .intro__btn-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Gallery (Drift) ── */
.gallery {
  position: relative;
  padding: 48px 0 60px;
  background: var(--cream);
  overflow: hidden;
}
.gallery--right .gallery__block {
  margin-left: auto;
  margin-right: 0;
}
.gallery--left .gallery__block {
  margin-left: 0;
  margin-right: auto;
}
.gallery__block {
  width: 79vw;
  max-width: 340px;
  aspect-ratio: 340 / 540;
  overflow: hidden;
  position: relative;
}
.gallery__img-wrap {
  position: absolute;
  inset: -20% 0;
}
.gallery__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22,0.61,0.36,1);
}
.gallery__img.is-loaded {
  opacity: 1;
}
.gallery__caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 20px 0;
  text-align: right;
}
.gallery__caption--left {
  text-align: left;
}
.gallery__label {
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--accent);
  display: block;
}

@media (min-width: 620px) {
  .gallery__block {
    width: 55vw;
    max-width: 520px;
  }
}

/* Drift アニメーション */
.js-drift {
  opacity: 0;
  transform: translateX(var(--drift-x, 28px)) translateY(10px);
  transition: opacity 0.9s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.9s cubic-bezier(0.22,0.61,0.36,1);
}
.js-drift[style*="left"] {
  --drift-x: -28px;
}
.js-drift.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ── Style Showcase ── */
.style-showcase {
  background: var(--cream);
  padding-bottom: 2px;
}
.style-showcase__header {
  padding: 14px 20px 12px;
}
.style-showcase__label {
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.style-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.style-showcase__cell {
  position: relative;
  aspect-ratio: 214 / 227;
  overflow: hidden;
}
.style-showcase__img {
  position: absolute;
  inset: -18% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0s);
}
.style-showcase__img.is-loaded { opacity: 1; }

/* ── Staff More Link ── */
.staff-more-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: rgba(240,234,228,0.45);
  transition: color 0.25s;
}
.staff-more-link:hover { color: var(--accent); }

/* ── Style Link ── */
.style-link {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(139,114,84,0.12);
}
.style-link__btn {
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.20em;
  color: var(--accent);
  transition: color 0.25s, opacity 0.25s;
  opacity: 0.75;
}
.style-link__btn:hover { opacity: 1; }

/* ── Staff ── */
.staff {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.staff__photo {
  position: absolute;
  inset: 0;
}
.staff__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22,0.61,0.36,1);
}
.staff__bg.is-loaded { opacity: 1; }
.staff__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 30%,
    rgba(20,18,16,0.72) 100%
  );
}
.staff__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 20px;
}
.staff__label {
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: rgba(240,234,228,0.55);
  display: block;
  margin-bottom: 10px;
}

/* ── Access ── */
.access {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.access__photo {
  position: absolute;
  inset: 0;
}
.access__bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22,0.61,0.36,1);
}
.access__bg.is-loaded { opacity: 1; }
.access__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,28,23,0.45);
}
.access__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 20px;
}
.access__label {
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: rgba(240,234,228,0.55);
  display: block;
  margin-bottom: 12px;
}
.access__address {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2.1;
  color: var(--on-dark);
}
.access__address a { transition: color 0.25s; }
.access__address a:hover { color: var(--accent-lt); }
.access__map-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 24px;
  border: none;
  border-radius: 2px;
  background: var(--on-dark);
  font-family: var(--en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text);
  transition: opacity 0.25s;
}
.access__map-btn:hover {
  opacity: 0.85;
}

/* ── Menu ── */
.menu {
  background: var(--cream);
  padding: 48px 20px 56px;
}
.menu__header {
  margin-bottom: 6px;
}
.menu__title {
  font-family: var(--en);
  font-weight: 400;
  font-size: clamp(2.6rem, 11vw, 3.4rem);
  letter-spacing: 0.02em;
  color: var(--cream-dark);
  line-height: 1;
}
.menu__rule {
  width: 100%;
  height: 1px;
  background: var(--cream-dark);
  margin: 14px 0 0;
}
.menu__list {
  list-style: none;
}
.menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.menu__name {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
}
.menu__price {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  padding: 40px 20px 56px;
  text-align: center;
}
.site-footer__logo {
  font-family: var(--en);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--on-dark);
  margin-bottom: 20px;
}
.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.site-footer__nav a {
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  transition: color 0.25s;
}
.site-footer__nav a:hover { color: var(--on-dark); }
.site-footer__copy {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(240,234,228,0.25);
}

/* ── Fixed CTA ── */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  right: auto;
  width: 100%;
  max-width: 680px;
  z-index: 90;
  background: var(--dark);
  transform: translateX(-50%) translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
.fixed-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}
.fixed-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  font-family: var(--en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--on-dark);
  transition: background 0.25s;
}
.fixed-cta__link:hover {
  background: rgba(255,255,255,0.06);
}

/* ── Scroll Fade ── */
.js-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0s),
              transform 0.75s cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0s);
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
}
.page-hero__photo {
  position: relative;
  height: 54vh;
  min-height: 300px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,28,23,0.22);
}
.page-hero__header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.page-hero__logo {
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.page-hero__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.page-hero__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(246,243,237,0.85);
}
.page-hero__cream {
  background: var(--cream);
  padding: 28px 24px 36px;
  border-bottom: 1px solid rgba(139,114,84,0.12);
}
.page-hero__label {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.page-hero__heading {
  font-family: var(--en);
  font-weight: 300;
  font-size: clamp(2.8rem, 11vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.page-hero__sub {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ── Philosophy ── */
.philosophy {
  background: var(--cream);
  padding: 52px 24px 56px;
}
.philosophy__eyebrow {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}
.philosophy__copy {
  font-family: var(--ja);
  font-weight: 400;
  font-size: clamp(1.15rem, 4.2vw, 1.45rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}
.philosophy__rule {
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
  opacity: 0.45;
}
.philosophy__body {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: rgba(34,28,23,0.58);
}

/* ── Owner Profile ── */
.owner-section {
  background: var(--cream-dark);
  padding: 52px 24px 60px;
}
.owner-eyebrow {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
}
.owner-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 20px;
  align-items: start;
}
.owner-photo {
  width: 160px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.owner-info { padding-top: 2px; }
.owner-role {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.owner-name-en {
  font-family: var(--en);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  line-height: 1.15;
  margin-bottom: 4px;
}
.owner-name-ja {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 18px;
}
.owner-bio {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(34,28,23,0.65);
}
.owner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.owner-tag {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  border: 1px solid rgba(139,114,84,0.3);
  padding: 3px 8px;
}
.owner-ig {
  display: block;
  margin-top: 20px;
  font-family: var(--mono);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: rgba(139,114,84,0.55);
  transition: color 0.25s;
}
.owner-ig:hover { color: var(--accent); }

/* ── Studio Info ── */
.studio-info {
  background: var(--cream);
  padding: 48px 24px 60px;
  border-top: 1px solid rgba(139,114,84,0.12);
}
.studio-info__label {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.studio-info__name {
  font-family: var(--en);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--cream-dark);
  display: block;
  margin-bottom: 24px;
}
.studio-info__list { list-style: none; }
.studio-info__item {
  display: flex;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(139,114,84,0.12);
}
.studio-info__item:first-child { border-top: 1px solid rgba(139,114,84,0.12); }
.studio-info__key {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.20em;
  color: rgba(139,114,84,0.6);
  width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}
.studio-info__val {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--text);
}
.studio-info__val a { color: inherit; transition: color 0.25s; }
.studio-info__val a:hover { color: var(--accent); }
.studio-info__map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(139,114,84,0.4);
  border-radius: 2px;
  font-family: var(--en);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  transition: background 0.25s, border-color 0.25s;
}
.studio-info__map-btn:hover {
  background: rgba(139,114,84,0.08);
  border-color: var(--accent);
}

/* ── Style Grid ── */
.style-grid {
  background: var(--cream);
  padding: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.style-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.style-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
}
.style-card:hover .style-card__img { transform: scale(1.04); }

/* ── Staff Grid ── */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(139,114,84,0.12);
}

/* ── Staff Card ── */
.staff-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.staff-card:nth-child(even) { background: var(--cream-dark); }

.staff-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-card__info {
  padding: 20px 18px 28px;
}
.staff-card__role {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.staff-card__name-en {
  font-family: var(--en);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  line-height: 1.2;
  margin-bottom: 12px;
}
.staff-card__bio {
  font-family: var(--ja);
  font-weight: 300;
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(34,28,23,0.62);
}
