:root {
  --bg: #202823;
  --bg-deep: #151c18;
  --panel: #26322f;
  --panel-2: #303a32;
  --ink: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.18);
  --accent: #9bf1ff;
  --green: #7ecaf6;
  --red: #e16b5b;
  --yellow: #e7b95b;
  --teal: #54c7a8;
  --purple: #8fa58d;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
}
body.menu-visible { overflow: hidden; }
a { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.45); }
a:hover { color: var(--accent); border-bottom-color: transparent; }
img { display: block; max-width: 100%; }

#wrapper { min-height: 100vh; overflow-x: hidden; }
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(36,41,67,.96);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.logo {
  border: 0;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.logo strong {
  display: inline-block;
  margin-right: .65rem;
  padding: .18rem .45rem;
  background: #fff;
  color: var(--bg);
}
.logo span { color: var(--muted); }
#header nav a {
  border: 0;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .18s ease, background-color .18s ease;
}

#menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36,41,67,.96);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  overscroll-behavior: contain;
}
body.menu-visible #menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
#menu > ul.links {
  width: min(34rem, calc(100vw - 2rem));
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateY(.8rem);
  transition: transform .25s ease;
}
body.menu-visible #menu > ul.links { transform: translateY(0); }
#menu > ul.links > li {
  border-top: 1px solid var(--line);
}
#menu > ul.links > li:last-child {
  border-bottom: 1px solid var(--line);
}
#menu > ul.links > li > a {
  display: block;
  padding: 1rem 0;
  border: 0;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .18s ease, color .18s ease;
}
#menu > ul.links > li > a:hover,
#menu > ul.links > li > a:focus-visible {
  background: rgba(155,241,255,.12);
  color: var(--accent);
  outline: 0;
}
.menu-children {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 .75rem;
  list-style: none;
  margin: -.35rem 0 .9rem;
  padding: 0 .75rem .2rem;
}
.menu-children a {
  display: block;
  padding: .35rem .45rem;
  border: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  transition: background-color .18s ease, color .18s ease;
}
.menu-children a:hover,
.menu-children a:focus-visible {
  background: rgba(255,255,255,.08);
  color: var(--accent);
  outline: 0;
}

.banner {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  isolation: isolate;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(36,41,67,.56), rgba(36,41,67,.74));
}
.banner.compact { min-height: 42vh; }
.inner { width: min(72rem, calc(100% - 3rem)); margin: 0 auto; }
.major h1, .major h2 {
  margin: 0 0 1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid #fff;
  font-size: 3.6rem;
  line-height: 1.1;
}
.major h2 { font-size: 2.8rem; }
.content { max-width: 58rem; }
.content p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  border: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
button.button {
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: .14em;
  cursor: pointer;
}
.button:hover,
.button:focus-visible {
  background: rgba(155,241,255,.16);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  outline: 0;
}

#main { background: var(--bg); }
.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tile {
  min-height: 20rem;
  position: relative;
  display: flex;
  align-items: center;
  padding: 3.5rem;
  overflow: hidden;
  border: 0;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tile-color, rgba(126,202,246,.82));
  opacity: .9;
  transition: opacity .2s ease, background-color .2s ease;
}
.tile:hover::before,
.tile:focus-visible::before {
  background: var(--accent);
  opacity: .72;
}
.tile {
  transition: transform .18s ease, filter .18s ease;
}
.tile:hover,
.tile:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  outline: 0;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
}
.tile:hover img,
.tile:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.05);
}
.tile header { position: relative; z-index: 1; max-width: 32rem; }
.tile h3 {
  margin: 0 0 .8rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid #fff;
  font-size: 1.55rem;
}
.tile p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  letter-spacing: .08em;
}
.spotlights section {
  display: grid;
  grid-template-columns: minmax(18rem, 36%) minmax(0, 1fr);
  background: var(--panel);
}
.spotlights section:nth-child(even) { background: var(--panel-2); }
.spotlights .image {
  min-height: 22rem;
  background-size: cover;
  background-position: center;
}
.spotlights .content { padding: 3.5rem; max-width: none; }

.page-body { padding: 4rem 0; background: var(--bg); }
.section { padding: 3rem 0; border-top: 1px solid var(--line); }
.section:first-child { border-top: 0; }
h2, h3, h4 { line-height: 1.25; }
h2 { font-size: 2rem; margin: 0 0 1.3rem; }
h3 { font-size: 1.35rem; margin: 2rem 0 .7rem; }
h4 { font-size: 1.05rem; margin: 1.35rem 0 .5rem; }
p, li { color: var(--muted); }
.lead { font-size: 1.08rem; color: #fff; }
.note {
  margin: 1.4rem 0;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.06);
  border-left: 4px solid var(--accent);
}
.contact-panel {
  margin: 1.6rem 0;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(90deg, rgba(155,241,255,.12), rgba(255,255,255,.05));
  border-left: 4px solid var(--accent);
}
.contact-panel .eyebrow {
  display: block;
  margin-bottom: .35rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-panel h3 {
  margin: 0 0 .5rem;
}
.contact-panel p {
  margin: 0 0 1rem;
}
.contact-panel .button {
  letter-spacing: 0;
  text-transform: none;
}
.subnav, .link-grid, .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 32rem);
  gap: 1.6rem;
  align-items: center;
  margin: 1.75rem 0;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.media-row:first-child {
  border-top: 0;
}
.media-row figure {
  order: 2;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}
.media-row.image-left figure {
  order: 1;
}
.media-copy {
  order: 1;
}
.media-row.image-left .media-copy {
  order: 2;
}
.media-copy h3 {
  margin-top: 0;
}
.media-row img {
  width: 100%;
  max-height: 22rem;
  object-fit: contain;
  background: rgba(0,0,0,.12);
}
.figure {
  margin: 1.5rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}
.figure.wide img {
  max-height: 28rem;
}
.figure img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,.12);
}
.figure img {
  aspect-ratio: 16 / 9;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.gallery.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery.schedule {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}
.gallery img {
  aspect-ratio: 4 / 3;
}
.gallery.portrait img {
  aspect-ratio: 3 / 4;
  max-height: 34rem;
}
.gallery.tools img,
.gallery.compact img {
  aspect-ratio: 1 / 1;
  max-height: 16rem;
}
figcaption {
  padding: .65rem .8rem;
  color: var(--muted);
  font-size: .86rem;
}
.subnav a, .card, .link-card {
  display: block;
  padding: 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.subnav a:hover,
.subnav a:focus-visible,
.card:hover,
.card:focus-visible,
.link-card:hover,
.link-card:focus-visible {
  background: rgba(155,241,255,.1);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  outline: 0;
}
.card h3, .link-card h3 { margin-top: 0; }
.card p, .link-card p { margin-bottom: 0; }
.page-top {
  padding: 2.25rem 0 0;
  text-align: center;
}
.page-top-button {
  position: relative;
  overflow: hidden;
  min-width: 12rem;
  border-radius: 8px;
  letter-spacing: 0;
  text-transform: none;
  isolation: isolate;
}
.page-top-button::after {
  content: "";
  position: absolute;
  inset: auto 1.05rem .48rem 1.05rem;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: translateY(.55rem);
  transition: opacity .22s ease, transform .22s ease;
}
.page-top-button:hover::after,
.page-top-button:focus-visible::after {
  opacity: .7;
  transform: translateY(0);
}
.scroll-swipe-cue {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  z-index: 3000;
  width: 3rem;
  height: 7rem;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 1.4rem);
}
.scroll-swipe-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-swipe-cue::before {
  bottom: 0;
  width: .18rem;
  height: 5.5rem;
  border-radius: 999px;
  background: linear-gradient(0deg, rgba(155,241,255,0), rgba(155,241,255,.92));
}
body.is-swiping-to-top .scroll-swipe-cue {
  animation: swipeCue .72s cubic-bezier(.16, 1, .3, 1) both;
}
body.is-swiping-to-top #wrapper {
  animation: pageSwipeLift .72s cubic-bezier(.16, 1, .3, 1) both;
}
body.pv-modal-open {
  overflow: hidden;
}
.pv-modal {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: grid;
  place-items: center;
  padding: 0;
  background: #050706;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.pv-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pv-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 7, 6, .96);
  cursor: pointer;
}
.pv-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(3.75rem, 7vh, 5rem) clamp(.75rem, 3vw, 2rem) clamp(1rem, 3vh, 2rem);
  transform: translateY(1rem) scale(.985);
  transition: transform .24s ease;
}
.pv-modal.is-open .pv-modal__panel {
  transform: translateY(0) scale(1);
}
.pv-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 8px;
  background: rgba(21,28,24,.94);
  color: #fff;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.pv-modal__close:hover,
.pv-modal__close:focus-visible {
  background: rgba(155,241,255,.16);
  border-color: var(--accent);
  color: var(--accent);
  outline: 0;
}
.pv-modal__video {
  width: 100%;
  height: 100%;
  max-height: none;
  background: #000;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 2rem 5rem rgba(0,0,0,.45);
  object-fit: contain;
}
@keyframes swipeCue {
  0% { opacity: 0; transform: translate(-50%, 1.4rem) scaleY(.82); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -4.8rem) scaleY(1.12); }
}
@keyframes pageSwipeLift {
  0% { filter: none; }
  32% { filter: brightness(1.04) saturate(1.05); }
  100% { filter: none; }
}
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  color: var(--muted);
  background: rgba(255,255,255,.04);
}
th, td {
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  vertical-align: top;
}
th { color: #fff; background: rgba(255,255,255,.11); }
.footer {
  padding: 3rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: .35rem 0; }
.footer a { transition: color .18s ease, border-color .18s ease, background-color .18s ease; }
.footer h3 a {
  border: 0;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.social-icons {
  display: flex;
  gap: .75rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-icons li { margin: 0; }
.icon-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
}
.icon-circle svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}
.label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.icon-circle:hover,
.icon-circle:focus-visible {
  background: rgba(155,241,255,.14);
  border-color: var(--accent);
  color: var(--accent);
  outline: 0;
}

body.motion-ready .motion-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease, filter .18s ease, background-color .18s ease, border-color .18s ease;
}
body.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.motion-ready .tile.motion-item.is-visible:hover,
body.motion-ready .tile.motion-item.is-visible:focus-visible,
body.motion-ready .card.motion-item.is-visible:hover,
body.motion-ready .card.motion-item.is-visible:focus-visible,
body.motion-ready .link-card.motion-item.is-visible:hover,
body.motion-ready .link-card.motion-item.is-visible:focus-visible {
  transform: translateY(-2px);
}

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

@media (max-width: 900px) {
  .tiles, .spotlights section, .subnav, .link-grid, .cards, .gallery, .gallery.compact, .gallery.schedule, .footer-grid, .media-row {
    grid-template-columns: 1fr;
  }
  .media-row figure,
  .media-row.image-left figure,
  .media-copy,
  .media-row.image-left .media-copy {
    order: initial;
  }
  .tile { min-height: 16rem; padding: 2rem; }
  .spotlights .content { padding: 2rem; }
  .major h1 { font-size: 2.45rem; }
  .major h2 { font-size: 2.05rem; }
}

@media (max-width: 560px) {
  #header { padding: 0 1rem; }
  .logo span { display: none; }
  .inner { width: min(100% - 2rem, 72rem); }
  .banner { min-height: 64vh; }
  .major h1 { font-size: 2rem; }
  .major h2 { font-size: 1.75rem; }
  .menu-children { grid-template-columns: 1fr; }
  .actions { width: 100%; }
  .actions .button { flex: 1 1 100%; }
}
