/* ============================================
   STAFF PAGES - SHINCA
   ============================================ */

/* ---- nav active ---- */
.nav__link--active {
  color: var(--color-gold) !important;
}

/* ============================================
   STAFF LIST PAGE (staff.html)
   ============================================ */

/* Hero */
.staff-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-hero__bg {
  position: absolute;
  inset: 0;
}

.staff-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.staff-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

.staff-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.staff-hero__label {
  font-family: var(--font-cormorant);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.staff-hero__title {
  font-family: var(--font-cormorant);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 12px;
}

.staff-hero__sub {
  font-family: var(--font-cormorant);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Staff Card */
.staff-card {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background 0.4s ease;
}

.staff-card:hover {
  background: #151515;
}

.staff-card__bg-name {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: var(--font-cormorant);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.06);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.staff-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 60px;
}

.staff-card__photo-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.staff-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.staff-card:hover .staff-card__photo {
  transform: scale(1.04);
}

.staff-card__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.staff-card__catch {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.staff-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.staff-card__role {
  font-family: var(--font-cormorant);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.staff-card__name {
  font-family: var(--font-cormorant);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.15em;
  line-height: 1;
}

.staff-card__click {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0px;
  transition: gap 0.3s ease;
}

.staff-card:hover .staff-card__click {
  gap: 8px;
}

.staff-card__click::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.staff-card:hover .staff-card__click::after {
  width: 60px;
}

.staff-card__click-c {
  font-style: italic;
  font-size: 1rem;
}

/* 写真右・テキスト左の交互レイアウト */
.staff-card--reverse .staff-card__inner {
  direction: rtl;
}
.staff-card--reverse .staff-card__inner > * {
  direction: ltr;
}
.staff-card--reverse .staff-card__bg-name {
  right: auto;
  left: -20px;
}

/* Mobile */
@media (max-width: 768px) {
  .staff-card__inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
  .staff-card--reverse .staff-card__inner {
    direction: ltr;
  }
  .staff-card__catch {
    writing-mode: horizontal-tb;
    font-size: 1.3rem;
  }
  .staff-card__bg-name {
    right: -10px;
    opacity: 0.5;
  }
  .staff-card--reverse .staff-card__bg-name {
    left: -10px;
    right: auto;
  }
}


/* ============================================
   MEI DETAIL PAGE (staff-mei.html)
   ============================================ */

/* MEI Hero */
.mei-hero {
  padding: 140px 0 80px;
  background: var(--color-bg);
  text-align: center;
}

.mei-hero__label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 48px;
}

.mei-hero__salon {
  font-family: var(--font-cormorant);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.mei-hero__interview {
  font-family: var(--font-cormorant);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.mei-hero__photo-wrap {
  max-width: 480px;
  margin: 0 auto 48px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mei-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}

.mei-hero__photo-wrap:hover .mei-hero__photo {
  transform: scale(1.03);
}

.mei-hero__catch {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mei-hero__role {
  font-family: var(--font-cormorant);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* MEI Section */
.mei-section {
  padding: 100px 0;
  background: var(--color-bg);
}

.mei-section--dark {
  background: var(--color-bg-secondary);
}

.mei-section__inner {
  max-width: 760px;
}

.mei-section__label {
  font-family: var(--font-cormorant);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mei-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.mei-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mei-section__body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.mei-section__photo {
  max-width: 640px;
  margin: 60px auto 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mei-section__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.mei-section__photo:hover .mei-section__photo-img {
  transform: scale(1.03);
}

/* Full Photo */
.mei-full-photo {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.mei-full-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.mei-full-photo__caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Guests Section */
.mei-guests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* 写真を左・テキストを右に逆配置 */
.mei-guests--reverse {
  direction: rtl;
}
.mei-guests--reverse > * {
  direction: ltr;
}

/* トップ大写真（キャプションなし） */
.mei-full-photo--top {
  height: 70vh;
}
.mei-full-photo--top .mei-full-photo__img {
  object-position: center 20%;
}

.mei-guests__photo {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.mei-guests__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.mei-guests__photo:hover .mei-guests__photo-img {
  transform: scale(1.03);
}

/* Closing */
.mei-closing {
  background: var(--color-bg-secondary);
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.mei-closing__photo-wrap {
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mei-closing__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.mei-closing__photo-wrap:hover .mei-closing__photo {
  transform: scale(1.03);
}

.mei-closing__message {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mei-closing__quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.mei-closing__credit {
  font-family: var(--font-cormorant);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}

/* CTA */
.mei-cta {
  padding: 100px 40px;
  background: var(--color-bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mei-cta__note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

/* Mobile */
@media (max-width: 768px) {
  .mei-hero {
    padding: 120px 24px 60px;
  }
  .mei-hero__photo-wrap {
    max-width: 320px;
  }
  .mei-section {
    padding: 70px 0;
  }
  .mei-guests {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mei-full-photo {
    height: 50vh;
  }
  .mei-full-photo__caption {
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
    width: 90%;
  }
  .mei-closing {
    padding: 70px 24px;
  }
  .mei-cta {
    padding: 70px 24px;
  }
}
