:root {
  --ink: #0b090b;
  --ink-soft: #171217;
  --paper: #f7f3f0;
  --paper-2: #eee8e5;
  --white: #fffdfb;
  --pink: #C32767;
  --pink-light: #f0d5dc;
  --pink-deep: #9e1c51;
  --line: rgba(19, 13, 16, 0.16);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; width: 100%; }
button { font: inherit; }
.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;
}
.skip-link {
  position: fixed; z-index: 100; left: 1rem; top: -5rem; padding: .65rem 1rem;
  color: var(--ink); background: var(--white); text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Responsive Utilities */
.is-sp { display: none !important; }
@media (max-width: 820px) {
  .is-sp { display: block !important; }
  span.is-sp, br.is-sp { display: inline !important; }
  .is-pc { display: none !important; }
}

.site-header {
  position: fixed; z-index: 50; inset: 0 0 auto; height: 86px; padding: 0 clamp(24px, 4vw, 72px);
  display: flex; align-items: center; justify-content: space-between; color: var(--white);
  transition: background .35s ease, height .35s ease, color .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 72px; color: var(--white); background: rgba(11, 9, 11, .92);
  border-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; text-decoration: none; line-height: 1; }
.brand img { height: 44px; width: auto; object-fit: contain; }
.footer-brand img { height: 64px; }
.global-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.global-nav a {
  position: relative; text-decoration: none; font-size: 12px; letter-spacing: .1em;
}
.global-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; height: 1px; inset: auto 100% -6px 0; background: var(--pink-deep);
  transition: right .25s ease;
}
.global-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 22px; border: 1px solid currentColor; transition: all .3s; }
.nav-cta:hover { border-color: var(--pink-deep); background: var(--pink-deep); color: var(--white); }
.menu-button { display: none; }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  padding: 130px clamp(24px, 7vw, 118px) 118px; color: var(--white); background: var(--ink);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  background: url("images/会場1.jpg") center 54% / cover no-repeat;
  transform: scale(1.035); animation: settle 1.8s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes settle { to { transform: scale(1); } }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7,5,7,.9) 0%, rgba(7,5,7,.62) 47%, rgba(7,5,7,.18) 82%),
    linear-gradient(0deg, rgba(7,5,7,.72) 0%, transparent 45%);
}
.hero-inner { position: relative; z-index: 2; width: min(760px, 62vw); }
.eyebrow, .section-number, .overline {
  margin: 0 0 24px; text-transform: uppercase; font-size: 10px; font-weight: 700;
  line-height: 1.4; letter-spacing: .3em;
}
.eyebrow { color: var(--pink-light); }
.hero h1 { margin: 0; font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: .84; letter-spacing: .02em; }
.hero h1 span:first-child { display: block; font-size: clamp(54px, 8.3vw, 132px); transform: translateY(-15px); }
.hero h1 span:nth-child(2) { display: block; margin-left: .43em; font-size: clamp(43px, 6.2vw, 99px); color: var(--pink-light); }
.hero h1 b {
  display: block; margin: 32px 0 0 .35em; font-family: 'Noto Sans JP', sans-serif; font-size: clamp(24px, 4vw, 48px);
  font-weight: 300; letter-spacing: .65em;
}
.hero-message {
  margin: clamp(40px, 5vw, 60px) 0;
  padding-left: 20px;
  border-left: 1px solid var(--pink-deep);
}
.hero-copy { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(22px, 2.3vw, 36px); letter-spacing: .12em; }
.hero-lead { margin: 0; color: rgba(255,253,251,.72); font-size: 13px; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-width: 220px;
  padding: 17px 21px; border: 1px solid transparent; font-size: 12px; font-weight: 700;
  line-height: 1.3; letter-spacing: .12em; text-decoration: none; transition: all .25s ease;
}
.button-primary { color: var(--white); background: var(--pink); }
.button-primary:hover { background: var(--pink-deep); transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--pink-light); transform: translateY(-2px); }
.button-line { color: var(--white); background: #06C755; border-color: #06C755; }
.button-line:hover { background: #05b34c; border-color: #05b34c; transform: translateY(-2px); }
.text-link { color: var(--white); font-size: 11px; text-underline-offset: 7px; }
.hero-facts {
  position: absolute; z-index: 2; right: clamp(24px, 5vw, 84px); bottom: 40px; margin: 0;
  display: flex; gap: clamp(24px, 3.5vw, 58px); padding-top: 18px; border-top: 1px solid rgba(255,255,255,.3);
}
.hero-facts div { min-width: 120px; }
.hero-facts dt { color: var(--pink-light); font-size: 9px; text-transform: uppercase; letter-spacing: .24em; }
.hero-facts dd { margin: 4px 0 0; font-size: 13px; font-weight: 600; letter-spacing: .06em; }
.hero-facts dd span { color: rgba(255,255,255,.6); font-size: 9px; font-weight: 400; text-transform: uppercase; }
.scroll-hint {
  position: absolute; z-index: 2; left: 26px; bottom: 80px; margin: 0; font-size: 8px;
  letter-spacing: .25em; text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-hint::after { content: ""; display: inline-block; width: 1px; height: 48px; margin-top: 12px; background: linear-gradient(to bottom, var(--pink-deep), rgba(255,255,255,0.2)); }

.experience { padding: clamp(100px, 12vw, 180px) clamp(24px, 7vw, 118px); }
.section-intro { display: grid; grid-template-columns: 1fr 1.15fr; column-gap: clamp(50px, 8vw, 145px); align-items: start; }
.section-intro .section-number { grid-column: 1 / -1; color: var(--pink-deep); }
.section-intro h2, .event-heading h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.3vw, 66px); font-weight: 400;
  line-height: 1.45; letter-spacing: .04em;
}
.section-intro > p:last-child { max-width: 510px; margin: 11px 0 0; color: rgba(11,9,11,.68); font-size: 14px; }
.section-header { margin-bottom: clamp(50px, 8vw, 90px); }
.section-header .overline { color: var(--pink-deep); }
.section-header h2 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.3vw, 66px); font-weight: 400; line-height: 1.45; letter-spacing: .04em; color: var(--ink); }
.dark-band {
  margin-inline: calc(-1 * clamp(24px, 7vw, 118px));
  padding-inline: clamp(24px, 7vw, 118px);
  margin-top: clamp(100px, 12vw, 180px);
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
  background: radial-gradient(circle at 100% 100%, #101938 0%, var(--ink) 50%);
  color: var(--white);
}
.section-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: clamp(70px, 9vw, 130px) 0;
}
.reason-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}
.reason-content h2 {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.3vw, 66px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--white);
}
.reason-text p {
  margin: 0 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  letter-spacing: 0.04em;
}
.reason-text p:last-child {
  margin-bottom: 0;
}
.reason-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reason-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #e2dcd9;
  aspect-ratio: 16 / 9;
}
.reason-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.02);
  transition: transform .8s ease;
}
.reason-photo:hover img {
  transform: scale(1.03);
}

#experience-title { font-size: clamp(26px, 3.2vw, 44px); line-height: 1.5; }

.experience-quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  margin-top: clamp(80px, 10vw, 150px);
}
.experience-quote { text-align: left; margin: 0; padding-left: clamp(16px, 3vw, 48px); }
.experience-quote p { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(24px, 3vw, 44px); line-height: 1.7; letter-spacing: .06em; }
.experience-quote cite { color: var(--pink-deep); font-family: var(--sans); font-size: 9px; font-style: normal; text-transform: uppercase; letter-spacing: .25em; }
.photo-sub { aspect-ratio: 1 / 1; position: relative; overflow: hidden; border-radius: 4px; width: calc(100% - 30px); transform: translateX(-50px); }
.photo-sub img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Mid CTA Section */
.mid-cta {
  margin-top: clamp(100px, 12vw, 180px);
  padding: clamp(60px, 10vw, 100px) clamp(24px, 5vw, 60px);
  background: #c37b8d;
  color: var(--white);
  text-align: center;
  border-radius: 4px;
}
.mid-cta .overline { color: rgba(255,255,255,0.8); letter-spacing: 0.15em; font-family: var(--sans); }
.mid-cta h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.mid-cta__desc {
  margin: 0 0 45px;
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,0.9);
}
.mid-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mid-cta__actions .button {
  min-width: 280px;
  justify-content: center;
  gap: 12px;
}
.mid-cta__actions .button-light {
  color: #c37b8d;
}
.story-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 8vw, 80px);
}
.story-overline {
  margin: 0 0 16px;
  color: var(--pink-deep);
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-style: italic;
  font-weight: 400;
}
.story-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.story-list {
  display: flex;
  flex-direction: column;
}
.story-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.story-item:first-child {
  padding-top: 0;
}
.story-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--pink-deep);
  width: 30px;
}
.story-before {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.story-arrow {
  color: var(--pink-deep);
  flex-shrink: 0;
}
.story-after {
  flex: 1.5;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* Diagonal Gallery Section */
.diagonal-gallery__stage {
  margin-top: clamp(80px, 10vw, 140px);
  margin-bottom: clamp(80px, 10vw, 140px);
  margin-inline: calc(-1 * clamp(24px, 7vw, 118px));
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vw, 100px) 0;
}
.diagonal-gallery__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 30px);
  width: 100%;
  transform: skewY(-4deg);
}
.diagonal-gallery__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.diagonal-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewY(4deg) scale(1.15);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.diagonal-gallery__photo:hover img {
  transform: skewY(4deg) scale(1.22);
}
.diagonal-gallery__accent {
  display: none;
}
.diagonal-gallery__message {
  position: absolute;
  bottom: 25px;
  right: clamp(24px, 7vw, 118px);
  font-family: "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--pink-deep);
  margin: 0;
  letter-spacing: 0.05em;
}

/* Benefits Section */
.benefits {
  margin-top: clamp(60px, 10vw, 120px);
  margin-bottom: clamp(60px, 10vw, 120px);
}
.benefits-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}
.benefits-col {
  display: flex;
  flex-direction: column;
}
.benefits-col.col-offset {
  margin-top: 90px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 40px 0;
  border-top: 1px solid rgba(19,13,16,0.12);
}
.benefits-col > .benefit-item:last-child {
  border-bottom: 1px solid rgba(19,13,16,0.12);
}
.benefit-num {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
  line-height: 1.1;
  position: relative;
  display: flex;
  align-items: center;
}
.benefit-num span {
  font-size: clamp(16px, 2vw, 18px);
  font-style: normal;
  font-family: var(--sans);
  font-weight: 300;
  margin-left: 6px;
  opacity: 0.8;
}
.benefit-content {
  position: relative;
  padding-left: 28px;
}
.benefit-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: -4px;
  width: 1px;
  background: var(--pink-deep);
}
.benefit-content h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.benefit-content p {
  margin: 0;
  font-size: 13px;
  color: rgba(11, 9, 11, 0.68);
  line-height: 1.9;
  letter-spacing: 0.04em;
}



.event { position: relative; padding: clamp(100px, 12vw, 180px) clamp(24px, 7vw, 118px); background: var(--ink); color: var(--white); }
.event::before { content: ""; position: absolute; top: 0; left: 7vw; width: 1px; height: 110px; background: var(--pink); }
.event-heading { display: flex; align-items: end; justify-content: space-between; }
.event-heading .section-number { color: var(--pink); }
.event-summary { display: grid; grid-template-columns: 1.08fr .92fr; margin-top: clamp(65px, 8vw, 120px); background: var(--ink-soft); }
.event-summary figure { min-height: 590px; margin: 0; overflow: hidden; }
.event-summary figure img { height: 100%; object-fit: cover; filter: saturate(.58); transition: transform .8s ease; }
.event-summary:hover figure img { transform: scale(1.02); }
.event-data { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 90px); }
.event-data .overline, .program .overline, .faq .overline, .closing .overline { color: var(--pink); }
.event-data dl { margin: 6px 0 34px; }
.event-data dl div { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.13); }
.event-data dl div:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.event-data dt { color: var(--pink-light); font-size: 11px; }
.event-data dd { margin: -3px 0 0; font-family: var(--serif); font-size: 15px; line-height: 1.7; letter-spacing: .045em; }
.event-data dd small { display: block; margin-top: 4px; color: rgba(255,255,255,.53); font-family: var(--sans); font-size: 10px; }
.event-notes { margin-bottom: 34px; font-size: 12px; line-height: 1.8; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.03em; }
.event-notes p { margin: 0 0 16px; }
.event-notes p:last-child { margin-bottom: 0; }
.event-notes strong { color: var(--pink-light); }
.event-data .button { align-self: flex-start; }
.program {
  margin-top: clamp(100px, 12vw, 180px);
  margin-inline: calc(-1 * clamp(24px, 7vw, 118px));
  padding-inline: clamp(24px, 7vw, 118px);
  padding-bottom: clamp(100px, 12vw, 180px);
  margin-bottom: clamp(150px, 15vw, 240px);
  background: radial-gradient(circle at 100% 100%, #101938 0%, var(--ink) 50%);
}
.program-head { display: flex; align-items: end; justify-content: space-between; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.2); }
.program-head h3, .faq-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3.2vw, 44px); font-weight: 400; letter-spacing: .05em; }
.program-tabs { display: flex; gap: 8px; }
.program-tabs button {
  min-width: 82px; padding: 10px 15px; color: rgba(255,255,255,.48); background: transparent;
  border: 1px solid rgba(255,255,255,.18); cursor: pointer; font-size: 11px; transition: all .2s ease;
}
.program-tabs button[aria-selected="true"] { color: var(--ink); background: var(--pink-light); border-color: var(--pink-light); }
.program-panel { display: grid; grid-template-columns: repeat(4, 1fr); }
.program-panel[hidden] { display: none; }
.program-panel article { min-width: 0; border-right: 1px solid rgba(255,255,255,.12); }
.program-panel article:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.program-panel figure { height: clamp(210px, 24vw, 360px); margin: 0; overflow: hidden; background: var(--ink-soft); }
.program-panel figure img { height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.03); transition: transform .7s ease, filter .35s ease; }
.program-panel article:hover figure img { transform: scale(1.035); filter: saturate(.9); }
.program-copy { min-height: 205px; padding: 25px clamp(18px, 2.2vw, 32px) 30px; }
.runway-callout { display: block; font-weight: bold; color: var(--pink-light); font-size: 13px; line-height: 1.6; padding: 12px; background: rgba(255, 255, 255, 0.05); border-left: 2px solid var(--pink); margin-top: 10px; }
.program-copy > span { color: var(--pink); font-size: 9px; }
.program-panel h4 { margin: 26px 0 10px; font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: .06em; }
.program-panel p { margin: 0; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.8; }

/* Program Bonus */
.program-bonus {
  max-width: 680px;
  margin-top: clamp(60px, 8vw, 100px);
  margin-inline: auto;
  padding: clamp(30px, 5vw, 60px);
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  border: 1px solid var(--pink-deep);
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-label {
  display: inline-block;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.bonus-content h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--pink-light);
  letter-spacing: 0.05em;
}
.bonus-content p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.bonus-content strong {
  color: var(--white);
  font-size: clamp(15px, 2vw, 18px);
  font-family: var(--serif);
}
.bonus-price {
  display: inline-block;
  font-size: 13px;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 4px 12px;
  border-radius: 4px;
}
/* Message Board */
.message-board {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 0;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 60px);
  background: var(--ink-soft);
  border-radius: 4px;
  color: var(--white);
}
.message-board__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #b0b0b0;
  overflow: hidden;
}
.message-board__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-board__content .section-header { margin-bottom: 30px; }
.message-board__content .section-header h2 {
  color: var(--white);
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.6;
}
.message-role {
  color: var(--pink);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}
.message-name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  margin: 0;
}
.message-lead {
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--pink-light);
  margin: 24px 0 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.message-board__body p {
  font-family: var(--serif);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}
.message-board__body p:last-child { margin: 0; }

/* Voice Section */
.voice { margin-top: clamp(100px, 12vw, 180px); }
.voice-heading { margin-bottom: clamp(50px, 8vw, 80px); }
.voice-heading .overline { color: var(--pink-deep); }
.voice-heading h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.3vw, 66px);
  font-weight: 400; line-height: 1.45; letter-spacing: 0.04em; color: var(--white);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.voice-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: #2a272a;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.04);
}
.voice-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.voice-icon svg {
  width: 40px;
  height: 40px;
}
.voice-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
}

.faq { 
  display: grid; 
  grid-template-columns: .72fr 1.28fr; 
  gap: clamp(40px, 8vw, 130px); 
  margin-top: clamp(100px, 12vw, 180px); 
  margin-inline: calc(-1 * clamp(24px, 7vw, 118px));
  padding: clamp(100px, 12vw, 180px) clamp(24px, 7vw, 118px);
  background: var(--paper);
  color: var(--ink);
}
.faq-heading { position: sticky; top: 110px; align-self: start; }
.faq-list details { border-top: 1px solid rgba(11,9,11,.15); }
.faq-list details:last-child { border-bottom: 1px solid rgba(11,9,11,.15); }
.faq-list summary { position: relative; padding: 25px 50px 25px 38px; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q"; position: absolute; left: 0; color: var(--pink-deep); font-family: var(--sans); font-size: 10px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; right: 7px; top: 50%; width: 15px; height: 1px; background: var(--pink-deep); transition: transform .25s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: 0; padding: 0 50px 28px 38px; color: rgba(11,9,11,.68); font-size: 12px; }
/* Highlights Section */
.highlights {
  margin-top: clamp(100px, 12vw, 180px);
}
.highlights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.highlights-header .overline { color: var(--pink-deep); }
.highlights-header .overline span { font-style: italic; font-family: var(--serif); font-size: 14px; margin-right: 8px; }
.highlights-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.3vw, 56px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--white);
}
.highlights-note {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  padding-bottom: 8px;
}
.highlights-gallery {
  column-count: 3;
  column-gap: 16px;
}
.highlight-photo {
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 4px;
}
.highlight-photo img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  cursor: pointer;
}
.highlight-photo:hover img {
  transform: scale(1.05);
}

/* Movies Section */
.movies {
  margin-top: clamp(80px, 10vw, 120px);
  margin-bottom: clamp(100px, 12vw, 180px);
}
.movies .overline {
  color: var(--pink-deep);
  margin-bottom: 30px;
}
.movies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.movie-item { text-decoration: none; color: inherit; display: block; }
.movie-item figure {
  position: relative;
  margin: 0 0 16px;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.movie-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.movie-item figure:hover img {
  transform: scale(1.05);
}
.movie-item .play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: var(--serif);
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.movie-item figure:hover .play-button {
  background: rgba(0,0,0,0.4);
  transform: scale(1.1);
}
.movie-item p {
  margin: 0;
  font-size: 14px;
  font-family: var(--serif);
  color: var(--white);
  letter-spacing: 0.05em;
}

.closing { margin-top: clamp(110px, 14vw, 210px); padding: clamp(62px, 9vw, 125px); text-align: center; background: var(--pink-deep); }
.closing .overline { color: var(--pink-light); }
.closing h3 { margin: 0; font-family: var(--serif); font-size: clamp(29px, 4.5vw, 65px); font-weight: 400; line-height: 1.5; letter-spacing: .06em; }
.closing > p:nth-of-type(2) { margin: 22px 0 38px; color: rgba(255,255,255,.66); font-size: 12px; }

/* Organizer Section */
.organizer {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(100px, 14vw, 210px) clamp(24px, 7vw, 118px);
  margin-inline: calc(-1 * clamp(24px, 7vw, 118px));
  margin-bottom: calc(-1 * clamp(100px, 12vw, 180px));
  background: linear-gradient(to bottom, var(--ink) 0%, #0a0d1f 25%, #080a14 100%);
  color: var(--white);
}
.organizer-header {
  position: sticky;
  top: 110px;
  align-self: start;
  grid-column: 1 / 2;
}
.organizer-header .overline { color: var(--pink-deep); }
.organizer-header .overline span { font-style: italic; font-family: var(--serif); font-size: 14px; margin-right: 8px; }
.organizer-header h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(34px, 5vw, 65px); font-weight: 400;
  line-height: 1.35; letter-spacing: .08em;
}
.organizer-message {
  margin-top: 32px;
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
}
.organizer-body {
  padding-top: 10px;
}
.organizer-profile {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.organizer-profile-text {
  flex: 1;
}
.organizer-profile-image {
  margin: 0;
  width: clamp(140px, 15vw, 200px);
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.organizer-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}
.organizer-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.organizer-body .romaji {
  margin: 8px 0 40px;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--pink-deep);
  letter-spacing: 0.2em;
}
.organizer-body .title {
  margin: 0;
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}
.organizer-body .desc {
  margin: 0;
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* Footer */
footer { padding: 60px clamp(24px, 7vw, 118px); color: var(--ink); background: var(--paper); }
.footer-brand { margin-bottom: 28px; }
footer > p { margin: 0 0 35px; color: rgba(11,9,11,.58); font-family: var(--serif); font-size: 13px; }
footer > small { color: rgba(11,9,11,.42); font-size: 8px; letter-spacing: .16em; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .22s; }
.hero .reveal:nth-child(5) { transition-delay: .28s; }

@media (max-width: 960px) {
  .site-header { height: 72px; padding-inline: 24px; }
  .menu-button {
    position: relative; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px;
    padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer;
  }
  .menu-button > span:not(.sr-only) { position: absolute; width: 23px; height: 1px; background: currentColor; transition: transform .25s, top .25s; }
  .menu-button > span:first-child { top: 18px; }
  .menu-button > span:nth-child(2) { top: 26px; }
  .menu-button[aria-expanded="true"] > span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(-45deg); }
  .global-nav {
    position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 90px 34px; color: var(--white); background: rgba(11,9,11,.98);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .global-nav.open { opacity: 1; visibility: visible; }
  .global-nav a { font-family: var(--serif); font-size: 20px; }
  .nav-cta { margin-top: 10px; }
  .hero-inner { width: min(700px, 83vw); }
  .hero-facts { left: clamp(24px, 7vw, 118px); right: auto; }
  .section-intro { grid-template-columns: 1fr; }
  .section-intro > p:last-child { margin-top: 32px; }
  .event-summary { grid-template-columns: 1fr; }
  .event-summary figure { min-height: 420px; max-height: 55vw; }
  .program-panel { grid-template-columns: repeat(2, 1fr); }
  .program-panel article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); }
  .faq { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .site-header.scrolled { height: 64px; }
  .hero { min-height: 860px; padding: 115px 24px 210px; align-items: flex-start; }
  .hero-media { background-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,5,7,.9) 0%, rgba(7,5,7,.42) 100%), linear-gradient(0deg, rgba(7,5,7,.9), transparent 70%); }
  .hero-inner { width: 100%; }
  .hero h1 span { font-size: clamp(47px, 15.3vw, 72px); }
  .hero h1 span:nth-child(2) { margin: 7px 0 0; font-size: clamp(35px, 11.4vw, 55px); }
  .hero h1 b { margin-top: 20px; }
  .hero-copy { margin-top: 55px; font-size: 23px; }
  .hero-lead { max-width: 270px; font-size: 11px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 28px; }
  .button { min-width: 0; width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-facts { left: 24px; right: 24px; bottom: 55px; gap: 0; justify-content: space-between; }
  .hero-facts div { min-width: auto; }
  .hero-facts dd { font-size: 11px; }
  .hero-facts dd span { display: block; margin-top: 3px; }
  .scroll-hint { display: none; }
  .experience, .event { padding-inline: 24px; }
  .section-intro h2, .event-heading h2 { font-size: 31px; }
  .reason-section { grid-template-columns: 1fr; gap: 48px; }
  .reason-content h2 { font-size: 31px; }
  .reason-gallery { gap: 16px; }
  .experience-quote-section { grid-template-columns: 1fr; gap: 48px; }
  .experience-quote { padding: 15px 0; margin-top: 0; }
  .experience-quote p { font-size: 25px; }
  .photo-sub { height: auto; width: 90%; margin: 0 auto; transform: none; }
  .story-section { grid-template-columns: 1fr; }
  .story-item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 25px 0; }
  .story-arrow { transform: rotate(90deg); margin-left: 20px; }

  .mid-cta__actions { flex-direction: column; gap: 16px; }
  .mid-cta__actions .button { width: 100%; }

  .benefits-inner { grid-template-columns: 1fr; gap: 0; }
  .benefits-col { gap: 0; }
  .benefits-col.col-offset { margin-top: 0; }
  .benefits-col:last-child > .benefit-item:first-child { border-top: 0; }
  .benefit-item { gap: 20px; padding: 30px 0; }
  .benefit-content { padding-left: 20px; }

  #experience-title { font-size: 22px; line-height: 1.6; }
  .event::before { height: 35px; left: 24px; }
  .event-heading { display: block; }
  .event-summary figure { min-height: 350px; max-height: none; }
  .event-data { padding: 34px 24px 40px; }
  .event-data dl div { grid-template-columns: 48px 1fr; gap: 12px; }
  .event-data .button { width: 100%; }
  .program-head { align-items: flex-start; flex-direction: column; gap: 28px; }
  .program-tabs { width: 100%; }
  .program-tabs button { flex: 1; }
  .program-panel { grid-template-columns: 1fr; }
  .program-panel article, .program-panel article:nth-child(3) { min-height: 0; border-left: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .program-panel figure { height: 86vw; }
  .program-copy { min-height: 0; }
  .program-panel h4 { margin-top: 22px; }
  .faq-list summary { padding-right: 38px; font-size: 14px; }
  
  .message-board { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .message-board__photo { width: 80%; margin: 0 auto; }
  
  .voice-grid { grid-template-columns: 1fr; gap: 16px; }
  .voice-card { padding: 24px 20px; gap: 20px; }
  .voice-icon { width: 64px; height: 64px; }
  .voice-icon svg { width: 32px; height: 32px; }

  .highlights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .highlights-gallery {
    column-count: 2;
  }
  .movies-grid {
    grid-template-columns: 1fr;
  }

  .closing { margin-inline: -24px; padding: 70px 24px 90px; }
  .closing h3 { font-size: 29px; }
  footer { padding-bottom: 105px; }
  .mobile-cta {
    position: fixed; z-index: 40; inset: auto 12px 12px; display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; color: var(--ink); background: var(--pink-light); box-shadow: 0 10px 35px rgba(0,0,0,.25);
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-decoration: none;
  }
  .organizer-profile { flex-direction: column-reverse; gap: 24px; padding-bottom: 30px; margin-bottom: 30px; }
  .organizer-profile-image { width: 100%; aspect-ratio: 1 / 1; }
  .diagonal-gallery__photos {
    grid-template-columns: 1fr;
    gap: 30px;
    transform: none;
    padding-inline: 24px;
    width: 100%;
    margin-left: 0;
  }
  .diagonal-gallery__photo {
    aspect-ratio: 4 / 3;
    margin-top: 0 !important;
  }
  .diagonal-gallery__photo img {
    transform: scale(1.05);
  }
  .diagonal-gallery__photo:hover img {
    transform: scale(1.1);
  }
  .diagonal-gallery__accent {
    display: none;
  }
  .diagonal-gallery__message {
    bottom: 20px;
    right: 24px;
    transform: none;
    font-size: 20px;
  }
  .organizer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .organizer-header {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
