:root {
  --black: #090706;
  --ink: #15100e;
  --red: #8f1719;
  --red-deep: #4f0809;
  --gold: #d7ad55;
  --gold-soft: #f3d991;
  --white: #fffaf0;
  --muted: #cfc2ad;
  --steam: #d8f6f4;
  --line: rgba(243, 217, 145, 0.24);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #243443;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.7;
}

body::before {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  backdrop-filter: none;
}

.nav-open .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(0, 76, 134, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max));
  min-height: 62px;
  margin: 0 auto;
  padding: 0 18px;
}

.brand {
  display: grid;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-logo {
  display: block;
  width: min(42vw, 210px);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.brand span:first-child {
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.brand span:last-child {
  font-size: 0.95rem;
}

.menu-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.18);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 1px;
  content: "";
  background: #111;
}

.menu-button {
  gap: 5px;
}

.site-nav {
  position: fixed;
  top: 62px;
  left: 12px;
  right: 12px;
  display: none;
  max-height: calc(100svh - 88px);
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(0, 94, 163, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.nav-open .site-nav {
  display: grid;
}

.site-nav a,
.site-nav button {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 0;
  border-bottom: 1px solid rgba(0, 94, 163, 0.08);
  color: #243443;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.site-nav a::before,
.site-nav button::before {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #005ea3;
  border-radius: 50%;
  color: #005ea3;
  content: ">";
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 1;
}

.site-nav > .nav-group > button::before,
.site-nav > .nav-tourism::before {
  display: none;
}

.nav-mark {
  display: inline-grid;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #111;
  line-height: 1;
}

.nav-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-dropdown {
  display: none;
  padding-left: 18px;
}

.nav-group.is-open .nav-dropdown,
.nav-open .nav-dropdown {
  display: grid;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 94px 18px 54px;
  isolation: isolate;
}

.hero-video {
  background: #001c31;
  place-items: end center;
  padding-bottom: clamp(18px, 4svh, 42px);
}

.hero-movie {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  opacity: 0;
  animation: fadeZoom 36s infinite;
}

.hero-slide:nth-child(2) { animation-delay: 6s; filter: hue-rotate(-8deg) saturate(1.1); }
.hero-slide:nth-child(3) { animation-delay: 12s; filter: sepia(0.18) brightness(0.9); }
.hero-slide:nth-child(4) { animation-delay: 18s; filter: hue-rotate(10deg) contrast(1.08); }
.hero-slide:nth-child(5) { animation-delay: 24s; filter: saturate(1.18) brightness(0.88); }
.hero-slide:nth-child(6) { animation-delay: 30s; filter: grayscale(0.14) sepia(0.2); }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 94, 163, 0.02), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 22, 38, 0.72) 100%);
}

.hero::after {
  display: none;
}

.hero-content {
  width: min(100%, 900px);
  text-align: center;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.kicker::before,
.kicker::after {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 8vw, 4.8rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.62);
}

.hero-logo {
  display: none;
}

.theme-mark {
  display: grid;
  gap: 0;
  margin: 22px auto 16px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 17vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
}

.theme-mark small {
  color: var(--white);
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-copy {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 10px 18px;
  border-radius: 6px;
  background: rgba(0, 35, 62, 0.58);
  max-width: 620px;
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.36rem);
  font-weight: 700;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.copy-band {
  position: relative;
  overflow: hidden;
  padding: 42px 18px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 82% 18%, rgba(215, 173, 85, 0.36), transparent 13rem),
    linear-gradient(145deg, #002b4d 0%, #005b98 52%, #001828 100%);
  text-align: center;
}

.copy-band::before,
.copy-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.copy-band::before {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.copy-band::after {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -130px;
  border: 22px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(215, 173, 85, 0.12);
}

.copy-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.copy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f3d991;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.copy-kicker::before,
.copy-kicker::after {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.copy-band p {
  margin: 0;
  font-size: clamp(2.1rem, 10vw, 4.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}

.copy-band strong {
  display: inline-block;
  max-width: 880px;
  padding: 0 0 8px;
  border-bottom: 2px solid rgba(243, 217, 145, 0.72);
  color: #fff7cf;
  background: transparent;
  border-radius: 0;
  font-size: clamp(1.08rem, 4.6vw, 2rem);
  font-weight: 900;
  line-height: 1.55;
}

.copy-band small {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 3.4vw, 1.08rem);
  font-weight: 700;
  line-height: 1.9;
}

.sp-break {
  display: block;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #005ea3;
  border-radius: 999px;
  color: #fff;
  background: #005ea3;
  font-weight: 700;
}

.hero .button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.hero .button:hover {
  background: rgba(0, 94, 163, 0.5);
}

.button.is-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.18);
}

.section-white .button.is-ghost {
  color: #005ea3;
  border-color: rgba(0, 94, 163, 0.36);
  background: #fff;
}

.section {
  padding: 76px 18px;
  scroll-margin-top: 92px;
}

.section.is-red {
  background: linear-gradient(135deg, rgba(79, 8, 9, 0.92), rgba(10, 6, 5, 0.86));
}

.section-white {
  color: #243443;
  background: #fff;
}

.section-blue {
  color: #fff;
  background: #004c86;
  text-align: center;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-label,
.page-eyebrow {
  color: #d7ad55;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section h2,
.page-title {
  margin: 0;
  font-size: clamp(1.7rem, 7vw, 3.2rem);
  line-height: 1.25;
}

.section-lead,
.page-lead {
  max-width: 720px;
  margin: 0;
  color: #617385;
}

.section-blue .section-lead,
.section-blue .section-label {
  color: #fff;
}

.news-list,
.grid,
.venue-grid {
  display: grid;
  gap: 14px;
}

.news-item,
.day-card,
.guest-card,
.content-card,
.venue-card,
.info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 163, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 76, 134, 0.08);
}

.news-item {
  padding: 18px;
}

.news-item div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #617385;
  font-size: 0.82rem;
}

.news-item b,
.content-card span {
  padding: 2px 8px;
  border: 1px solid rgba(0, 94, 163, 0.18);
  border-radius: 999px;
  color: #005ea3;
  font-size: 0.72rem;
}

.news-item h3,
.day-card h3,
.guest-card h3,
.content-card h3,
.venue-card h3 {
  margin: 8px 0 0;
  line-height: 1.35;
}

.day-card,
.guest-card,
.content-card,
.venue-card,
.info-panel {
  padding: 22px;
}

.day {
  margin: 0 0 8px;
  color: #005ea3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.muted,
.content-card p,
.venue-card address,
.page-body,
.guest-card span {
  color: #617385;
}

.day-card ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.day-card li {
  padding-left: 18px;
  background: linear-gradient(var(--gold), var(--gold)) 0 0.84em / 8px 1px no-repeat;
}

.guest-card {
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(0, 94, 163, 0.08), rgba(215, 173, 85, 0.08)),
    #fff;
}

.guest-card p,
.venue-card p {
  margin: 0;
  color: #005ea3;
  font-weight: 700;
}

.content-card {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.content-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 0;
  border: 1px solid rgba(0, 94, 163, 0.18);
  border-radius: 50%;
  color: #005ea3;
  background: #f4f9fd;
  box-shadow: 0 8px 18px rgba(0, 94, 163, 0.1);
  font-style: normal;
}

.content-icon::before {
  position: static;
  width: auto;
  height: auto;
  content: "";
  border: 0;
  border-radius: 0;
  color: currentColor;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0;
  transform: none;
}

.content-icon::after {
  display: none;
}

.content-card > span {
  justify-self: start;
}

.content-card h3 {
  margin-top: 0;
}

.content-card p {
  margin-top: 0;
}

.icon-speech::before { content: "声"; }
.icon-keynote::before { content: "学"; }
.icon-network::before { content: "縁"; }
.icon-products::before { content: "市"; }
.icon-materials::before { content: "資"; }
.icon-awards::before { content: "賞"; }
.icon-committee::before { content: "会"; }

.content-card:hover {
  border-color: rgba(243, 217, 145, 0.72);
  transform: translateY(-3px);
}

.access-band {
  display: grid;
  gap: 18px;
}

.map-frame {
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1b100d;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.venue-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 700;
}

.night-cta {
  position: relative;
  overflow: hidden;
  padding: 34px 22px;
  border: 1px solid rgba(243, 217, 145, 0.46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 82, 64, 0.38), transparent 8rem),
    radial-gradient(circle at 82% 22%, rgba(243, 217, 145, 0.36), transparent 11rem),
    radial-gradient(circle at 58% 88%, rgba(0, 157, 180, 0.26), transparent 12rem),
    linear-gradient(135deg, #07152e 0%, #103d73 52%, #120819 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 26px 70px rgba(5, 21, 46, 0.24);
}

.night-cta::before,
.night-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.night-cta::before {
  inset: 12px;
  border: 1px solid rgba(243, 217, 145, 0.22);
  border-radius: 6px;
}

.night-cta::after {
  top: 20px;
  right: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 217, 145, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(255, 82, 64, 0.85) 0 3px, transparent 4px);
  background-size: 34px 34px, 46px 46px;
  opacity: 0.42;
}

.about-media {
  display: grid;
  gap: 26px;
  align-items: center;
}

.about-logo-box {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  font-weight: 700;
}

.about-logo-box img {
  width: min(46vw, 190px);
}

.pr-video-card a {
  display: grid;
  gap: 10px;
  color: #005ea3;
  font-weight: 700;
  text-align: center;
}

.pr-video-card img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 76, 134, 0.18);
}

.night-cta h2 {
  margin: 0 0 12px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.night-cta .section-label,
.night-cta .section-lead {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.night-cta h2,
.night-cta .section-actions {
  position: relative;
  z-index: 1;
}

.night-cta .section-label {
  color: #f3d991;
}

.night-cta .section-lead {
  color: rgba(255, 255, 255, 0.84);
}

.night-cta .button {
  border-color: rgba(243, 217, 145, 0.66);
  color: #08142b;
  background: linear-gradient(135deg, #fff2b8, #d7ad55);
}

.night-page-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 82, 64, 0.12), transparent 18rem),
    radial-gradient(circle at 90% 12%, rgba(215, 173, 85, 0.14), transparent 18rem),
    #fff;
}

.night-app-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 7vw, 62px) 20px;
  border: 1px solid rgba(243, 217, 145, 0.42);
  border-radius: 10px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 82, 64, 0.44), transparent 9rem),
    radial-gradient(circle at 84% 18%, rgba(243, 217, 145, 0.34), transparent 13rem),
    linear-gradient(135deg, #07152e 0%, #103d73 52%, #120819 100%);
  box-shadow: 0 28px 70px rgba(5, 21, 46, 0.22);
}

.night-app-hero::after {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 217, 145, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle, rgba(255, 82, 64, 0.8) 0 3px, transparent 4px);
  background-size: 34px 34px, 46px 46px;
  opacity: 0.34;
}

.night-app-hero > * {
  position: relative;
  z-index: 1;
}

.night-app-hero h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.18;
}

.night-app-hero p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.night-gold-button {
  border-color: rgba(243, 217, 145, 0.72);
  color: #08142b;
  background: linear-gradient(135deg, #fff2b8, #d7ad55);
}

.night-feature-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.night-guide-flow {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.night-guide-flow article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(0, 94, 163, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 76, 134, 0.08);
}

.night-guide-flow span {
  display: grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #08142b;
  background: linear-gradient(135deg, #fff2b8, #d7ad55);
  font-weight: 900;
}

.night-guide-flow b {
  color: #243443;
  font-size: 1.08rem;
}

.night-guide-flow p {
  margin: 0;
  color: #617385;
}

.night-visual-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(0, 94, 163, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 173, 85, 0.12), transparent 14rem),
    #fff;
  box-shadow: 0 18px 42px rgba(0, 76, 134, 0.08);
}

.night-phone-mock {
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  min-height: 420px;
  margin: 0 auto;
  border: 10px solid #07152e;
  border-radius: 28px;
  background: #0e1d3a;
  box-shadow: 0 28px 60px rgba(5, 21, 46, 0.24);
}

.phone-bar {
  padding: 14px;
  color: #f3d991;
  background: #0e1d3a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
}

.phone-map {
  position: relative;
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #215c8a, #123152);
  background-size: 42px 42px, 42px 42px, auto;
}

.pin {
  position: absolute;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 3px solid rgba(255,255,255,0.7);
  border-radius: 50% 50% 50% 0;
  color: #07152e;
  background: #f3d991;
  font-weight: 900;
  transform: rotate(-45deg);
}

.pin::first-letter {
  transform: rotate(45deg);
}

.pin-a { top: 52px; left: 52px; }
.pin-b { top: 140px; right: 56px; background: #ff765f; color: #fff; }
.pin-c { bottom: 54px; left: 108px; background: #6fd6c8; }

.route-line {
  position: absolute;
  left: 72px;
  right: 74px;
  top: 116px;
  height: 90px;
  border-top: 4px dotted rgba(243, 217, 145, 0.78);
  border-right: 4px dotted rgba(243, 217, 145, 0.78);
  border-radius: 0 42px 0 0;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(243, 217, 145, 0.28);
}

.phone-tabs span {
  padding: 12px 4px;
  color: #f3d991;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.night-visual-panel h2 {
  margin: 4px 0 12px;
  color: #243443;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.35;
}

.night-visual-panel p {
  margin: 0;
  color: #617385;
}

.night-check-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.night-check-list li {
  padding-left: 26px;
  color: #243443;
  background:
    radial-gradient(circle, #d7ad55 0 5px, transparent 6px) 0 0.68em / 14px 14px no-repeat;
  font-weight: 700;
}

.night-feature-grid article,
.install-panel,
.night-note {
  border: 1px solid rgba(0, 94, 163, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 76, 134, 0.08);
}

.night-feature-grid article {
  padding: 20px;
}

.night-feature-grid b {
  display: block;
  color: #005ea3;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.night-feature-grid p,
.install-panel p,
.night-note p {
  margin: 0;
  color: #617385;
}

.install-panel {
  display: grid;
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
}

.install-panel h2,
.night-note h2 {
  margin: 4px 0 10px;
  color: #243443;
  line-height: 1.35;
}

.install-steps {
  display: grid;
  gap: 14px;
}

.install-steps article {
  padding: 18px;
  border-radius: 8px;
  background: #f4f9fd;
}

.install-steps b {
  color: #005ea3;
}

.install-steps ol {
  margin: 10px 0 0;
  padding-left: 1.25em;
  color: #617385;
}

.night-note {
  margin-top: 24px;
  padding: 22px;
}

.page-hero {
  padding: 112px 18px 34px;
  background: linear-gradient(180deg, #f7f8fb, #fff);
}

.page-hero .section-inner {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 44px 24px;
  border: 1px solid rgba(215, 173, 85, 0.38);
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 22% 0%, rgba(126, 20, 43, 0.46), transparent 34%),
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #081326 0%, #123968 46%, #0c1021 100%);
  box-shadow: 0 24px 60px rgba(8, 19, 38, 0.18);
}

.page-hero .section-inner::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.page-hero .section-inner::after {
  position: absolute;
  top: 44px;
  right: 44px;
  width: 82px;
  height: 72px;
  background:
    radial-gradient(circle, rgba(215, 173, 85, 0.7) 0 4px, transparent 5px) 0 0 / 28px 28px,
    radial-gradient(circle, rgba(126, 20, 43, 0.72) 0 4px, transparent 5px) 14px 14px / 28px 28px;
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.page-hero .page-eyebrow,
.page-hero .page-title,
.page-hero .page-lead {
  position: relative;
  z-index: 1;
}

.page-hero .page-eyebrow {
  color: #f0cc73;
}

.page-hero .page-title {
  color: #fff;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.12;
}

.page-hero .page-lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.page-layout {
  display: grid;
  gap: 24px;
}

.page-body p {
  margin: 0 0 16px;
}

.detail-block {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 94, 163, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 76, 134, 0.07);
}

.detail-block h2 {
  margin: 0 0 10px;
  color: #005ea3;
  font-size: 1.08rem;
}

.detail-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-block li {
  padding-left: 18px;
  background: linear-gradient(#d7ad55, #d7ad55) 0 0.82em / 8px 2px no-repeat;
}

.info-panel h2 {
  margin: 0 0 12px;
}

.site-footer {
  padding: 44px 18px;
  border-top: 1px solid var(--line);
  background: #003c6a;
  color: #fff;
}

.footer-inner {
  display: grid;
  width: min(100%, var(--max));
  gap: 26px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-group {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-group h3 {
  margin: 0 0 4px;
  color: #f3d991;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.84);
}

.copyright {
  margin: 0;
  color: #9f927f;
  font-size: 0.82rem;
}

@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; }
  22% { opacity: 1; }
  32% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes sparks {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 -260px, 0 -340px; }
}

@media (min-width: 760px) {
  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 4px;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a,
  .site-nav button {
    padding: 8px 10px;
    border-bottom: 0;
    color: #243443;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .site-nav a::before,
  .site-nav button::before {
    display: none;
  }

  .nav-mark {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .nav-group {
    position: relative;
  }

  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 30;
    display: none;
    min-width: 230px;
    padding: 14px 8px 8px;
    border: 1px solid rgba(0, 94, 163, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(0, 76, 134, 0.14);
    transform: translateX(-50%);
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown,
  .nav-group.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    padding: 9px 10px;
    color: #243443;
    font-size: 0.82rem;
  }

  .site-nav a:hover {
    color: #005ea3;
  }

  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-band,
  .page-layout,
  .about-media {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .night-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .night-guide-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .night-visual-panel {
    grid-template-columns: 0.82fr 1fr;
  }

  .install-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .install-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 0.8fr 1.4fr auto;
    align-items: start;
  }

  .footer-links {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

@media (min-width: 1020px) {
  .grid.is-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-actions .button {
    min-width: 148px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
