﻿:root {
  --gold: #fec000;
  --ink: #202124;
  --navy: #2e4571;
  --wine: #70263f;
  --ivory: #f5f1e8;
  --paper: #fbf9f4;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --pill: 999px;
  --container: min(1180px, calc(100vw - 48px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-top: 24px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.brand__mark {
  width: clamp(54px, 6vw, 84px);
  height: auto;
  flex: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.brand__title {
  display: block;
  color: var(--gold);
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--white);
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  background: linear-gradient(180deg, #1a1b20 0%, #202124 40%, #262b34 100%);
  color: var(--white);
}

.hero__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.hero__ambient--navy {
  left: -10%;
  bottom: 8%;
  width: min(44vw, 700px);
  height: min(44vw, 700px);
  background: radial-gradient(circle, rgba(46, 69, 113, 0.52), transparent 66%);
}

.hero__ambient--wine {
  right: -4%;
  top: 8%;
  width: min(34vw, 520px);
  height: min(34vw, 520px);
  background: radial-gradient(circle, rgba(112, 38, 63, 0.44), transparent 68%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
}

.hero__seal {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: min(32vw, 360px);
  opacity: 0.1;
  filter: grayscale(1) brightness(1.8) contrast(0.95);
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 72px;
}

.hero__eyebrow {
  margin: 0 0 24px;
  padding: 9px 18px;
  border-radius: var(--pill);
  background: rgba(166, 96, 124, 0.88);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
}

.hero__mark {
  width: clamp(120px, 13vw, 184px);
  margin-bottom: 18px;
}

.hero__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.2rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__lead {
  margin: 20px 0 8px;
  font-size: clamp(1.18rem, 2vw, 1.9rem);
  font-weight: 800;
}

.hero__copy {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--pill);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.button--primary {
  background: var(--gold);
  color: var(--ink);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.84);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.hero__scroll {
  position: absolute;
  left: 24px;
  bottom: 32px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 10px;
  background: var(--gold);
}

.section { padding: 96px 0; }
.section--light { background: var(--ivory); }
.section--contact {
  background:
    radial-gradient(circle at 15% 80%, rgba(46, 69, 113, 0.35), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(112, 38, 63, 0.34), transparent 28%),
    var(--ink);
  color: var(--white);
}

.section-head { margin-bottom: 30px; }
.section-head--center { text-align: center; }

.section-head__kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-actions {
  margin-top: 28px;
  text-align: center;
}

.event-card {
  display: grid;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-card__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

.event-card__label {
  margin: 0 0 10px;
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.event-card p {
  margin: 0;
  color: #4e4f54;
}

.event-meta {
  display: grid;
  gap: 14px;
  margin: 0;
}

.event-meta div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}

.event-meta dt {
  font-weight: 800;
  color: #55575d;
}

.event-meta dd {
  margin: 0;
  font-weight: 700;
}

.event-card__button { justify-self: start; }

.split {
  display: grid;
  gap: 40px;
}

.split--about {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.split__content p {
  margin: 0 0 18px;
  font-size: 1.04rem;
}

.about-panel {
  min-height: 420px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 28%, rgba(46, 69, 113, 0.75), transparent 30%),
    radial-gradient(circle at 74% 18%, rgba(112, 38, 63, 0.65), transparent 26%),
    linear-gradient(180deg, #202124 0%, #262a33 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.about-panel__mark {
  width: clamp(110px, 18vw, 160px);
  height: auto;
}

.about-panel__caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: #53555b;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(32, 33, 36, 0.1);
}

.news-item time {
  color: #666a73;
  font-weight: 700;
}

.news-item h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.news-item p {
  margin: 0;
  color: #555961;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(circle at 20% 80%, rgba(46, 69, 113, 0.8), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(112, 38, 63, 0.7), transparent 26%),
    #2b2e35;
  display: flex;
  align-items: end;
  padding: 18px;
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.gallery-tile--navy {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(circle at 25% 75%, rgba(46, 69, 113, 0.86), transparent 34%),
    linear-gradient(180deg, #22262c 0%, #2e4571 100%);
}

.gallery-tile--wine {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(circle at 76% 18%, rgba(112, 38, 63, 0.72), transparent 30%),
    linear-gradient(180deg, #22262c 0%, #442230 100%);
}

.contact-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.contact-block__copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-block__mail a {
  color: var(--gold);
  font-weight: 800;
}

.contact-block__actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.site-footer {
  padding: 26px 0 38px;
  background: #151618;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .event-card__body,
  .split--about,
  .contact-block,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero__seal {
    width: 260px;
    right: -30px;
    bottom: 60px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .site-header { padding-top: 16px; }
  .site-nav--desktop { display: none; }
  .site-menu { display: block; }
  .brand {
    gap: 12px;
  }

  .brand__mark {
    width: clamp(44px, 12vw, 64px);
  }

  .brand__title {
    font-size: clamp(1.02rem, 4.8vw, 1.48rem);
  }

  .hero__inner {
    justify-items: start;
    text-align: left;
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 0.84rem;
  }

  .hero__mark {
    width: clamp(96px, 26vw, 132px);
    margin-bottom: 16px;
  }

  .hero__title { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero__lead { font-size: 1.1rem; }
  .hero__copy { max-width: 16em; font-size: 1rem; }

  .hero__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .button { width: 100%; }

  .hero__seal {
    width: 220px;
    right: -26px;
    bottom: 84px;
  }

  .hero__scroll { left: 24px; }
  .section { padding: 72px 0; }
  .event-card { padding: 24px; }

  .event-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


.brand__logo {
  width: min(340px, 38vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

@media (max-width: 720px) {
  .brand__logo {
    width: min(220px, 58vw);
  }
}

.site-header--light .site-nav a {
  color: var(--gold);
  text-shadow: none;
}

.site-header--light .site-nav a::after {
  background: var(--gold);
}

.site-header--light .brand__logo {
  filter: none;
}

.site-header--light .site-menu summary {
  list-style: none;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(32, 33, 36, 0.08);
}

.site-header--light .site-menu summary::-webkit-details-marker {
  display: none;
}

.site-header--light .site-menu summary span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.site-header--light .site-nav--mobile {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(32, 33, 36, 0.92);
}

.site-header--light .site-nav--mobile a {
  color: var(--gold);
}

/* Pictogram system */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 0 14px;
  border-radius: 14px;
  background: rgba(254, 192, 0, 0.12);
  color: #8a6a00;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  display: block;
}

.icon-badge--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.icon-badge--sm {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 12px;
}

.icon-badge--xs {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 8px;
}

.icon-badge--flat {
  background: transparent;
}

.icon-badge--center {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.section-head .icon-badge {
  margin-bottom: 14px;
}

.section-head--center .icon-badge {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.tag-with-icon,
.icon-label,
.icon-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-title {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-with-icon .icon-badge,
.icon-label .icon-badge,
.icon-title .icon-badge {
  margin: 0;
  flex: none;
}

.card--icon .icon-badge,
.about-fact .icon-badge,
.about-role-card .icon-badge,
.about-focus-card .icon-badge,
.about-current-card .icon-badge,
.contact-card .icon-badge,
.data-stat .icon-badge,
.data-observation .icon-badge,
.history-kpi .icon-badge,
.history-era .icon-badge,
.event-detail-card .icon-badge,
.gallery-photo-card .icon-badge,
.panel .icon-badge {
  margin-bottom: 12px;
}

.release-kicker .icon-badge--center {
  margin-bottom: 12px;
}

.meta-grid dt .icon-label {
  font-weight: 800;
}

.gallery-photo-card figcaption .icon-badge {
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .icon-badge {
    width: 42px;
    height: 42px;
  }

  .icon-badge--sm {
    width: 34px;
    height: 34px;
  }
}

/* Pictogram rhythm tune */
.icon-badge {
  margin-bottom: 12px;
}

.section-head .icon-badge {
  margin-bottom: 12px;
}

.card--icon .icon-badge,
.about-fact .icon-badge,
.about-role-card .icon-badge,
.about-focus-card .icon-badge,
.about-current-card .icon-badge,
.contact-card .icon-badge,
.data-stat .icon-badge,
.data-observation .icon-badge,
.history-kpi .icon-badge,
.history-era .icon-badge,
.event-detail-card .icon-badge,
.gallery-photo-card .icon-badge,
.panel .icon-badge {
  margin-bottom: 10px;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.icon-title .icon-badge {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 10px;
  flex: none;
}

.tag-with-icon,
.icon-label {
  gap: 6px;
}

.gallery-photo-card figcaption .icon-badge {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 10px;
}

.release-kicker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.release-kicker .icon-badge--center {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 10px;
}

.panel--dark .icon-badge,
.section--contact .icon-badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

@media (max-width: 720px) {
  .icon-title {
    gap: 8px;
  }

  .icon-title .icon-badge,
  .gallery-photo-card figcaption .icon-badge,
  .release-kicker .icon-badge--center {
    width: 30px;
    height: 30px;
  }
}

/* Top summary card icon tune */
.cards--summary .icon-badge {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 11px;
}

.cards--summary .icon-badge svg {
  width: 19px;
  height: 19px;
}

.cards--summary .card h3 {
  margin-top: 0;
}

@media (max-width: 720px) {
  .cards--summary .icon-badge {
    width: 32px;
    height: 32px;
    margin-bottom: 7px;
    border-radius: 10px;
  }

  .cards--summary .icon-badge svg {
    width: 17px;
    height: 17px;
  }
}

/* Pictogram final tune */
.event-detail-card__header > .icon-badge,
.panel--soft > .icon-badge,
.contact-card > .icon-badge {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 10px;
}

.event-detail-card__header > .icon-badge svg,
.panel--soft > .icon-badge svg,
.contact-card > .icon-badge svg {
  width: 20px;
  height: 20px;
}

.archive-item__tag .tag-with-icon {
  gap: 4px;
}

.archive-item__tag .icon-badge {
  width: 16px;
  height: 16px;
}

.archive-item__tag .icon-badge svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 720px) {
  .event-detail-card__header > .icon-badge,
  .panel--soft > .icon-badge,
  .contact-card > .icon-badge {
    width: 30px;
    height: 30px;
  }

  .event-detail-card__header > .icon-badge svg,
  .panel--soft > .icon-badge svg,
  .contact-card > .icon-badge svg {
    width: 18px;
    height: 18px;
  }

  .archive-item__tag .icon-badge {
    width: 14px;
    height: 14px;
  }

  .archive-item__tag .icon-badge svg {
    width: 12px;
    height: 12px;
  }
}

/* REVIEW_MOBILE_NAV_START */
.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;
}

.menu-toggle {
  display: none;
}

.site-nav--mobile {
  display: none;
}

body {
  overflow-x: hidden;
}

.hero > .container,
.hero__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 0;
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid rgba(255, 210, 28, 0.18);
    backdrop-filter: blur(18px);
  }

  .site-header__inner {
    min-height: 64px;
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand__logo {
    width: min(220px, 58vw);
  }

  .site-nav--desktop {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 210, 28, 0.38);
    border-radius: 999px;
    background: rgba(20, 18, 14, 0.92);
    color: var(--gold);
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

  .menu-toggle-line {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-header.is-open .menu-toggle-line:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle-line:nth-of-type(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle-line:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav--mobile {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
    padding: 14px;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(20, 18, 14, 0.98), rgba(8, 7, 5, 0.98));
    border: 1px solid rgba(255, 210, 28, 0.28);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
    z-index: 1001;
  }

  .site-header.is-open .site-nav--mobile,
  body.menu-open .site-nav--mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav--mobile a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 210, 28, 0.10);
    color: #f5e7bc;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    opacity: 1;
  }

  .site-nav--mobile a::after {
    content: "›";
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
  }

  .site-nav--mobile a:hover::after,
  .site-nav--mobile a[aria-current="page"]::after {
    transform: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 46px;
    text-align: center;
    align-items: flex-start;
  }

  .hero__inner {
    justify-items: center !important;
    text-align: center !important;
    padding-top: 98px;
    padding-bottom: 52px;
  }

  .hero__copy {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__lead {
    max-width: 34rem;
  }

  .hero__actions {
    width: 100%;
    justify-content: center !important;
    gap: 10px;
  }

  .hero__actions .button,
  .button {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    text-align: center;
  }

  .hero__seal {
    left: 50%;
    top: 46%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(78vw, 320px);
    opacity: 0.09;
  }

  .hero__scroll {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* REVIEW_MOBILE_NAV_END */

/* REVIEW_TABLET_TUNE_START */
@media (min-width: 641px) and (max-width: 860px) {
  .hero__inner {
    justify-items: center !important;
    text-align: center !important;
    padding-top: 112px;
    padding-bottom: 60px;
  }

  .hero__lead,
  .hero__copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 40rem;
  }

  .hero__actions {
    width: 100%;
    justify-content: center !important;
    gap: 12px;
  }

  .hero__actions .button {
    width: auto;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
  }

  .hero__seal {
    left: 50%;
    top: 46%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(56vw, 360px);
    opacity: 0.085;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .site-header__inner {
    gap: 18px;
  }

  .brand__logo {
    width: min(280px, 30vw);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hero__inner {
    padding-top: 116px;
    padding-bottom: 66px;
  }

  .hero__lead,
  .hero__copy {
    max-width: 36rem;
  }

  .hero__actions .button {
    min-width: 170px;
    padding-inline: 20px;
  }

  .hero__seal {
    left: 50%;
    top: 48%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(38vw, 320px);
    opacity: 0.082;
  }
}
/* REVIEW_TABLET_TUNE_END */

/* REVIEW_JA_NAV_START */
.nav-copy {
  display: block;
  min-width: 0;
  line-height: 1.2;
}

.nav-ja,
.label-ja {
  display: block;
  font-weight: 700;
}

.nav-en,
.label-en {
  display: block;
  font-size: 0.72em;
  opacity: 0.72;
  letter-spacing: 0.04em;
}

.page-hero__eyebrow .label-ja,
.page-hero__eyebrow .label-en,
.section-head__kicker .label-ja,
.section-head__kicker .label-en,
.panel__eyebrow .label-ja,
.panel__eyebrow .label-en {
  text-transform: none;
}

.site-nav--desktop a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.site-nav--desktop .nav-ja {
  white-space: nowrap;
}

.site-nav--mobile .nav-copy {
  display: block;
  text-align: left;
}

.site-nav--mobile .nav-ja {
  font-size: 15px;
}

.site-nav--mobile .nav-en {
  margin-top: 2px;
}

@media (max-width: 640px) {
  .nav-en,
  .label-en {
    display: none;
  }
}
/* REVIEW_JA_NAV_END */

/* REVIEW_LANDSCAPE_HEADER_START */
@media (orientation: landscape) and (max-height: 520px) {
  .site-header {
    padding-top: 8px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand__logo {
    width: min(160px, 28vw);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .menu-toggle-line {
    width: 18px;
    margin: 3px 0;
  }

  .site-nav--mobile {
    margin-top: 8px;
  }
}
/* REVIEW_LANDSCAPE_HEADER_END */

/* REVIEW_MOBILE_HEADER_TIGHT_START */
@media (max-width: 820px) {
  .site-header {
    padding-top: 10px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand__logo {
    width: min(170px, 46vw);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
  }

  .menu-toggle-line {
    width: 18px;
    margin: 3px 0;
  }

  .site-nav--mobile {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 8px;
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand__logo {
    width: min(148px, 42vw);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .menu-toggle-line {
    width: 16px;
    margin: 2px 0;
  }
}

@media (max-width: 420px) {
  .brand__logo {
    width: min(136px, 40vw);
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
/* REVIEW_MOBILE_HEADER_TIGHT_END */

/* REVIEW_RESPONSIVE_SWEEP_START */
.page-hero__grid,
.page-hero__seal,
.hero__grid,
.hero__seal,
.hero__ambient {
  pointer-events: none;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 42;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid rgba(254, 192, 0, 0.72);
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.78);
  color: var(--gold);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
}

.site-nav--mobile {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --container: min(1180px, calc(100vw - 36px));
  }

  .site-nav {
    gap: 20px;
  }

  .section {
    padding: 88px 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(1180px, calc(100vw - 28px));
  }

  .site-header {
    padding-top: 14px;
  }

  .site-header__inner {
    gap: 14px;
  }

  .brand__logo {
    width: min(210px, 34vw);
  }

  .section {
    padding: 76px 0;
  }

  .event-card,
  .card {
    padding: 24px;
    border-radius: 20px;
  }

  .event-card__body,
  .split--about,
  .contact-block,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .site-header {
    padding-top: 12px;
  }

  .site-header__inner {
    position: relative;
    z-index: 30;
    gap: 12px;
  }

  .site-nav--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav--mobile {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 24px));
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(24, 24, 24, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    z-index: 41;
  }

  .site-nav--mobile a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--white);
  }

  .site-nav--mobile a::after {
    display: none;
  }

  .site-nav--mobile a:hover,
  .site-nav--mobile a[aria-current="page"] {
    background: rgba(254, 192, 0, 0.10);
  }

  .site-header.is-open .site-nav--mobile {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1180px, calc(100vw - 20px));
  }

  .site-header {
    padding-top: 8px;
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand__logo {
    width: min(148px, 42vw);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .menu-toggle-line {
    width: 16px;
    margin: 2px 0;
  }

  .site-nav--mobile {
    width: min(300px, calc(100vw - 20px));
    top: calc(100% + 8px);
    padding: 8px;
    border-radius: 16px;
  }

  .site-nav--mobile a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .section {
    padding: 60px 0;
  }

  .event-card,
  .card {
    padding: 18px;
    border-radius: 16px;
  }

  .button {
    min-width: 0;
    width: 100%;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .site-header {
    padding-top: 8px;
  }

  .brand__logo {
    width: min(160px, 28vw);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
}
/* REVIEW_RESPONSIVE_SWEEP_END */

