/* =========================================================
   多岐川装子 Official Site  —  華やか・舞台風
   ========================================================= */

:root {
  --burgundy:      #6E1620;
  --burgundy-deep: #4A0E16;
  --brick:         #A5352A;
  --gold:          #C0A052;
  --gold-soft:     #D8BE7E;
  --cream:         #FBF6EC;
  --cream-2:       #F4EADA;
  --ink:           #2B1A16;
  --ink-soft:      #6A554E;
  --line:          rgba(110, 22, 32, 0.16);

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --latin: "Cormorant Garamond", "Noto Serif JP", serif;

  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--dark  { background: var(--burgundy); color: var(--cream); }
.section--cream2 { background: var(--cream-2); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .en {
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  padding-left: .42em;
}
.section-head .jp {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 4.6vw, 34px);
  margin: 0;
  letter-spacing: .08em;
}
.section-head .jp::after {
  content: "";
  display: block;
  width: 46px; height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* fade-up on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(251, 246, 236, 0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-solid {
  background: rgba(251, 246, 236, 0.96);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 24px;
}
.site-header .brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .18em;
  text-decoration: none;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: color .35s ease, text-shadow .35s ease;
}
.site-header.is-solid .brand { color: var(--burgundy); text-shadow: none; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 13px;
  letter-spacing: .16em;
  text-decoration: none;
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: color .35s ease, opacity .2s ease, text-shadow .35s ease;
}
.nav a:hover { opacity: .7; }
.site-header.is-solid .nav a { color: var(--ink); text-shadow: none; }
.nav a.ext::after { content: " ↗"; color: var(--gold); font-size: 11px; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream); margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.site-header.is-solid .nav-toggle span { background: var(--burgundy); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
@supports not (height: 100svh) { .hero { min-height: 640px; } }
.hero__img {
  position: absolute; inset: 0;
  background: url("../img/hero.jpg") center 22% / cover no-repeat;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 62% 40%, rgba(74,14,22,0) 0%, rgba(74,14,22,.35) 70%),
    linear-gradient(to bottom, rgba(43,10,15,.28) 0%, rgba(43,10,15,.05) 38%, rgba(43,10,15,.72) 100%);
}
.hero__inner {
  position: relative;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 24px 12svh;
}
.hero__eyebrow {
  font-family: var(--latin);
  letter-spacing: .5em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold-soft);
  margin: 0 0 18px;
  padding-left: .5em;
}
.hero__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 11vw, 96px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: .1em;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero__romaji {
  font-family: var(--latin);
  font-size: clamp(15px, 3.4vw, 22px);
  letter-spacing: .46em;
  text-transform: uppercase;
  margin: 14px 0 0;
  padding-left: .46em;
  color: var(--gold-soft);
}
.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(15px, 3.6vw, 20px);
  letter-spacing: .12em;
  margin: 26px 0 0;
  max-width: 30em;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  font-family: var(--latin); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cream);
  opacity: .8;
}
.hero__scroll::after {
  content: ""; display: block; width: 1px; height: 40px;
  background: linear-gradient(var(--gold-soft), transparent);
  margin: 10px auto 0;
}

/* =========================================================
   Intro
   ========================================================= */
.intro { text-align: center; }
.intro p {
  font-family: var(--serif);
  font-size: clamp(16px, 2.4vw, 19px);
  letter-spacing: .09em;
  margin: 0 auto;
  max-width: 34em;
}
.intro .ornament {
  color: var(--gold); font-size: 22px; letter-spacing: .4em;
  display: block; margin-bottom: 26px; padding-left: .4em;
}

/* =========================================================
   News / featured
   ========================================================= */
.featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid rgba(216, 190, 126, .4);
  background: rgba(251, 246, 236, .04);
}
.featured__body { padding: 48px clamp(24px, 4vw, 52px); align-self: center; }
.featured__tag {
  font-family: var(--latin);
  letter-spacing: .34em; text-transform: uppercase;
  font-size: 12px; color: var(--gold-soft);
  margin: 0 0 16px;
}
.featured__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3.6vw, 30px);
  margin: 0 0 14px;
  letter-spacing: .06em;
  line-height: 1.4;
}
.featured__sub {
  font-family: var(--serif);
  font-size: 14px; letter-spacing: .04em;
  color: var(--gold-soft); margin: 0 0 18px;
}
.featured__meta { margin: 0 0 14px; font-size: 14px; line-height: 2; letter-spacing: .05em; color: var(--cream); }
.featured__meta strong { color: var(--gold-soft); font-weight: 600; }
.featured__note {
  margin: 0 0 22px; font-size: 12px; letter-spacing: .04em;
  color: rgba(251,246,236,.6);
}
.featured__img { position: relative; min-height: 260px; background: var(--burgundy-deep); }
.featured__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .92; }

.ticket-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ticket-row a {
  font-size: 12px; letter-spacing: .12em;
  text-decoration: none; color: var(--cream);
  border: 1px solid var(--gold); padding: 10px 18px;
  transition: background .3s ease, color .3s ease;
}
.ticket-row a:hover { background: var(--gold); color: var(--burgundy-deep); }

.schedule {
  margin-top: 24px;
  border: 1px solid rgba(216, 190, 126, .3);
  padding: 26px clamp(20px, 4vw, 40px);
}
.schedule h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 15px; letter-spacing: .16em; margin: 0 0 16px;
  color: var(--gold-soft);
}
.schedule ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 20px;
  font-size: 13.5px; letter-spacing: .04em;
}
.schedule ul span { display: block; color: var(--gold-soft); font-family: var(--latin); font-size: 12px; letter-spacing: .08em; }
.schedule__fine { margin: 18px 0 0; font-size: 11.5px; letter-spacing: .03em; color: rgba(251,246,236,.55); }

.news-note {
  text-align: center; margin-top: 28px;
  font-size: 13px; letter-spacing: .08em; color: var(--gold-soft);
}

@media (max-width: 860px) {
  .schedule ul { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Stage history
   ========================================================= */
.stage-group { margin-bottom: 44px; }
.stage-group__label {
  font-family: var(--serif);
  font-size: 17px; letter-spacing: .1em;
  margin: 0 0 18px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--brick);
}
.stage-list { list-style: none; margin: 0; padding: 0; }
.stage-list li {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px 22px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--line);
}
.stage-list li:last-child { border-bottom: 0; }
.stage-list .yr {
  font-family: var(--latin);
  font-size: 15px; letter-spacing: .06em;
  color: var(--gold); padding-top: 2px; white-space: nowrap;
}
.stage-list .ttl { font-weight: 500; letter-spacing: .04em; }
.stage-list .ttl .role { color: var(--brick); font-size: .92em; }
.stage-list .mt { display: block; font-size: 13px; color: var(--ink-soft); letter-spacing: .03em; margin-top: 2px; }

.stage-hidden { display: none; }
.stage-list.is-open .stage-hidden { display: grid; }

.more-btn {
  display: block; margin: 30px auto 0;
  background: none;
  border: 1px solid var(--gold);
  color: var(--brick);
  font-family: var(--sans); font-size: 13px; letter-spacing: .18em;
  padding: 13px 34px; cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.more-btn:hover { background: var(--gold); color: #fff; }

.tv-list { list-style: none; margin: 22px 0 0; padding: 0; font-size: 14px; color: var(--ink-soft); }
.tv-list li { padding: 6px 0; letter-spacing: .04em; }
.tv-list .yr { font-family: var(--latin); color: var(--gold); margin-right: 12px; }

/* =========================================================
   Profile
   ========================================================= */
.profile-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.profile-portrait { position: relative; }
.profile-portrait img { width: 100%; object-fit: cover; }
.profile-portrait::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); z-index: -1;
}
.profile-bio p { margin: 0 0 1.1em; letter-spacing: .05em; }
.profile-bio p:first-child { font-family: var(--serif); font-size: 1.05em; }

.spec {
  width: 100%; margin-top: 30px; border-collapse: collapse;
  font-size: 14.5px;
}
.spec th, .spec td {
  text-align: left; padding: 11px 4px; border-bottom: 1px solid var(--line);
  letter-spacing: .05em; vertical-align: top;
}
.spec th {
  width: 116px; font-weight: 500; color: var(--brick);
  font-family: var(--serif);
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery figure { margin: 0; overflow: hidden; background: var(--cream-2); }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4;
  transition: transform .8s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery figure:first-child img { aspect-ratio: auto; height: 100%; }

/* =========================================================
   Link cards (Blog / Ametan)
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 22px;
}
.link-card.line:hover { border-color: #06C755; }
.link-card.line .en { color: #06C755; }
.link-card {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px; padding: 34px;
  border: 1px solid var(--line);
  background: var(--cream);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(110,22,32,.12);
  border-color: var(--gold);
}
.link-card .en {
  font-family: var(--latin); letter-spacing: .32em; text-transform: uppercase;
  font-size: 12px; color: var(--gold);
}
.link-card h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 22px; letter-spacing: .08em; margin: 14px 0 8px;
}
.link-card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); letter-spacing: .04em; }
.link-card .go { margin-top: 20px; font-size: 12px; letter-spacing: .2em; color: var(--brick); }
.link-card .go::after { content: " →"; }

/* =========================================================
   Contact
   ========================================================= */
.contact { text-align: center; }
.contact p { letter-spacing: .06em; margin: 0 0 26px; }
.contact__mail {
  display: inline-block;
  font-family: var(--latin);
  font-size: clamp(18px, 4vw, 26px);
  letter-spacing: .14em;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.contact__mail:hover { color: var(--gold-soft); }
.contact__line-lead { margin: 40px 0 16px; font-size: 14px; letter-spacing: .06em; color: var(--gold-soft); }
.contact__line {
  display: inline-block;
  background: #06C755; color: #fff;
  font-size: 13px; letter-spacing: .14em;
  text-decoration: none;
  padding: 14px 34px; border-radius: 999px;
  transition: opacity .25s ease;
}
.contact__line:hover { opacity: .85; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  text-align: center;
  padding: 56px 24px 40px;
}
.site-footer .fname {
  font-family: var(--serif); font-size: 20px; letter-spacing: .2em; margin: 0 0 6px;
}
.site-footer .fromaji {
  font-family: var(--latin); font-size: 12px; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold-soft); margin: 0 0 26px;
}
.social {
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
  margin-bottom: 26px; padding: 0; list-style: none;
}
.social a {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; color: var(--cream); opacity: .85;
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  transition: opacity .25s ease, border-color .25s ease;
}
.social a:hover { opacity: 1; border-color: var(--gold); }
.copyright { font-size: 11px; letter-spacing: .12em; color: rgba(251,246,236,.5); margin: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 22px;
    background: var(--burgundy);
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.6,.05,.2,1);
  }
  .nav.is-open { transform: none; }
  .nav a { color: var(--cream) !important; text-shadow: none; font-size: 15px; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-toggle.is-active span { background: var(--cream); }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .featured { grid-template-columns: 1fr; }
  .featured__img { min-height: 220px; order: -1; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-portrait { max-width: 340px; margin: 0 auto; }
  .profile-portrait::before { inset: 10px -10px -10px 10px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:first-child { grid-column: span 2; grid-row: auto; }
  .gallery figure:first-child img { aspect-ratio: 3/4; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .stage-list li { grid-template-columns: 92px 1fr; gap: 4px 14px; }
}

@media (max-width: 420px) {
  .hero__inner { padding-bottom: 16svh; }
  .stage-list li { grid-template-columns: 1fr; }
  .stage-list .yr { padding-top: 0; }
}
