:root {
  --ink: #102b55;
  --blue: #183c70;
  --gold: #76d5f4;
  --paper: #f5f9fc;
  --line: #d7e2ec;
  --match-orange: #f28c2e;
  --match-orange-text: #a9490e;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    system-ui,
    -apple-system,
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    sans-serif;
  line-height: 1.65;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
}
.skip {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: white;
  padding: 0.5rem;
  z-index: 99;
}
.skip:focus {
  top: 1rem;
}
.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}
.eyebrow {
  font-size: 0.79rem;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #12668f;
}
.section {
  padding: 82px 0;
}
.section h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0.4rem 0 1.4rem;
}
.intro {
  max-width: 720px;
}
.muted {
  color: #4d6078;
}
.nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background: #102b55;
  color: white;
  border-bottom: 1px solid #ffffff42;
}
.nav-inner {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}
.brand-crest {
  width: 44px;
  height: 62px;
  object-fit: contain;
  flex: none;
}
.brand-mark {
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  gap: 23px;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.menu-button {
  display: none;
  border: 1px solid #fff8;
  background: transparent;
  color: white;
  padding: 8px 12px;
}
.hero {
  min-height: 720px;
  height: min(850px, 100svh);
  position: relative;
  background:
    linear-gradient(90deg, #081c3eec 0%, #102b55b8 52%, #102b5555),
    radial-gradient(circle at 75% 35%, #7bb6d3 0, #285b86 35%, #102b55 75%);
  color: white;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%);
}
.hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #081c3e 0%, #102b55 52%, #102b5500 66%);
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 35%;
  height: 65%;
  border: 1px solid #ffffff22;
  transform: rotate(-13deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 170px 0 96px;
}
.hero .tag {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(3.8rem, 10vw, 9.5rem);
  line-height: 1.06;
  letter-spacing: -0.065em;
  margin: 20px 0 27px;
  font-weight: 900;
}
.hero h1 span {
  display: block;
}
.hero p {
  max-width: 530px;
  margin: 0 0 34px;
  font-size: 1.05rem;
}
.hero-placeholder {
  position: absolute;
  z-index: 1;
  right: 4%;
  bottom: 28px;
  color: #ffffffa8;
  border: 1px solid #ffffff5b;
  padding: 5px 10px;
  font-size: 0.76rem;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid currentColor;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #102b55;
}
.btn-light {
  color: white;
}
.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.band {
  background: var(--ink);
  color: white;
  padding: 22px 0;
}
.band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.band p {
  margin: 0;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
}
.fixture {
  background: white;
  margin-top: -1px;
}
.fixture-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--match-orange);
  background: white;
  padding: 30px;
}
.fixture-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
.fixture-date {
  font-size: 1rem;
  font-weight: 800;
}
.fixture-versus {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  white-space: nowrap;
}
.fixture-versus small {
  color: #8296ad;
  font-size: 0.8rem;
  padding: 0 12px;
}
.placeholder {
  color: #55718c;
  font-size: 0.8rem;
  font-weight: 700;
}
.countdown {
  padding: 14px 20px;
  border-left: 1px solid #f4d2b4;
  background: #fff4e9;
  font-weight: 800;
}
.countdown .placeholder {
  color: var(--match-orange-text);
}
.countdown strong {
  display: block;
  color: var(--match-orange-text);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-variant-numeric: tabular-nums;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.news-card {
  background: white;
  border: 1px solid var(--line);
  padding: 27px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.news-card time {
  font-size: 0.82rem;
  color: #55718c;
}
.news-card h3 {
  font-size: 1.18rem;
  line-height: 1.5;
  margin: 14px 0;
}
.news-result {
  display: inline-block;
  margin-right: 0.55em;
  padding: 0.12em 0.52em;
  border-radius: 4px;
  background: #eaf0f5;
  color: #40556b;
  font-size: 0.76em;
  font-weight: 800;
  vertical-align: 0.1em;
}
.news-result--win {
  background: #fff0df;
  color: var(--match-orange-text);
}
.news-result--draw {
  background: #e2f2f9;
  color: #176282;
}
.news-card .placeholder {
  margin-top: auto;
}
.news-card p {
  margin: 0;
  line-height: 1.8;
  color: #344f69;
}
.news-card a {
  color: inherit;
  text-decoration: none;
}
.news-card a:hover,
.news-card a:focus-visible {
  color: var(--match-orange-text);
  text-decoration: underline;
}
.shade {
  background: #eaf4fa;
}
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.schedule th,
.schedule td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.schedule th {
  font-size: 0.8rem;
  background: var(--ink);
  color: white;
}
.schedule td {
  font-weight: 650;
}
.all-matches-button {
  display: block;
  margin: 26px auto 0;
  padding: 12px 30px;
  border: 1px solid var(--ink);
  background: white;
  color: var(--ink);
  font-weight: 800;
}
.all-matches-button:hover,
.all-matches-button:focus-visible {
  background: var(--ink);
  color: white;
}
.all-matches-button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.matches-dialog {
  width: min(960px, calc(100% - 24px));
  max-height: min(88dvh, 900px);
  padding: 0;
  border: 0;
  background: white;
  color: var(--ink);
  box-shadow: 0 20px 70px #081c3e5c;
}
.matches-dialog::backdrop {
  background: #081c3eae;
}
.matches-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 28px;
}
.matches-dialog-head h2 {
  margin: 3px 0 0;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
}
.matches-dialog-close {
  flex: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}
.matches-dialog-content {
  max-height: calc(88dvh - 115px);
  overflow: auto;
  overscroll-behavior: contain;
}
.matches-dialog .schedule th,
.matches-dialog .schedule td {
  padding: 13px 16px;
}
.match-outcome {
  display: inline-block;
  min-width: 4.5em;
  margin-right: 0.7em;
  padding: 0.25em 0.5em;
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  vertical-align: middle;
}
.match-outcome--win {
  background: #e6f3f8;
  color: #135b78;
}
.match-outcome--draw {
  background: #edf0f4;
  color: #465770;
}
.match-outcome--loss {
  background: #fbece7;
  color: #a04a32;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 25px;
}
.filter {
  border: 1px solid #a7c2d3;
  background: transparent;
  padding: 9px 18px;
  color: var(--ink);
  font-weight: 800;
}
.filter[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.players {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.player {
  background: white;
  border: 1px solid var(--line);
}
.photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(145deg, #a8d7ea, #639abe 60%, #214c79);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.photo-toggle {
  width: 100%;
  border: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}
.photo-toggle:focus-visible {
  outline: 3px solid #183c70;
  outline-offset: 3px;
}
.photo-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #102b55d9;
  color: white;
  padding: 3px 8px;
  font-size: 0.75rem;
  letter-spacing: 0;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.player-body {
  padding: 15px;
}
.player-body b {
  display: block;
  font-size: 1.05rem;
}
.player-body small {
  color: #516e89;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: stretch;
  align-content: center;
}
.about-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  display: block;
}
.about-gallery .about-gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.statement {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.fact-list {
  border-top: 1px solid var(--line);
  margin-top: 25px;
}
.fact-list div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
}
.fact-list dt {
  font-weight: 800;
}
.fact-list dd {
  margin: 0;
}
.fact-list dd a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visual {
  min-height: 430px;
  background: linear-gradient(140deg, #17467b, #80bed8);
  color: white;
  display: flex;
  align-items: end;
  padding: 23px;
  font-size: 0.8rem;
}
.work {
  background: var(--blue);
  color: white;
}
.work .eyebrow {
  color: var(--gold);
}
.work p {
  color: #e1eff8;
}
.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 2fr) minmax(0, 1fr);
  gap: 9px;
  min-width: 0;
  height: 440px;
}
.work-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}
.work-gallery-main {
  grid-column: 1 / -1;
  object-position: center 45%;
}
.work-gallery-supporters {
  object-position: center 68%;
}
.work-gallery-moment {
  object-position: center 45%;
}
.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.logo-box {
  background: white;
  border: 1px solid var(--line);
  min-width: 0;
  height: 174px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
}
.logo-box--linked {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.logo-box--linked:hover,
.logo-box--linked:focus-within {
  border-color: var(--match-orange);
  box-shadow: 0 2px 14px #102b5518;
}
.logo-box a {
  display: flex;
  flex: 1 1 0;
  min-height: 0;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.logo-box a:focus-visible {
  outline: 2px solid var(--match-orange);
  outline-offset: 4px;
}
.logo-box img {
  display: block;
  width: 100%;
  height: 0;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}
.logo-box figcaption {
  flex: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
}
.logo-box--name-only {
  background: #f8fbfd;
}
.logo-box--name-only figcaption {
  margin: auto 0;
  font-size: 1.1rem;
}
.partner-legal {
  display: block;
  margin-top: 2px;
  font-size: 0.82em;
  font-weight: 500;
}
.partner-tier--top .logos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.partner-tier--top .logo-box {
  height: 216px;
  padding: 24px;
}
.partner-tier--official .logos,
.partner-tier--operations .logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.partner-tier--official .logo-box {
  height: 190px;
}
.rank {
  margin: 42px 0 15px;
  padding-left: 13px;
  border-left: 4px solid var(--match-orange);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.support-card {
  background: white;
  padding: 28px;
  min-height: 230px;
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.support-card h3 {
  font-size: 1.35rem;
  margin: 0 0 9px;
}
.support-card p {
  margin: 0 0 22px;
  color: #4d6078;
}
.support-card a {
  margin-top: auto;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.support-links {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.support-links a {
  margin-top: 0;
}
.recruit {
  background: var(--ink);
  color: white;
}
.recruit p {
  max-width: 680px;
}
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials a {
  border: 1px solid var(--line);
  padding: 14px 17px;
  font-weight: 800;
  text-decoration: none;
  min-width: 135px;
  text-align: center;
}
.socials a:hover {
  background: var(--ink);
  color: white;
}
footer {
  background: #102b55;
  color: white;
  padding: 55px 0 28px;
}
footer .top {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: start;
}
footer p {
  color: #cbd9e8;
}
.contact-form {
  width: min(100%, 460px);
  display: grid;
  gap: 10px;
}
.contact-form h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}
.contact-form label {
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #aabdd2;
  border-radius: 4px;
  background: white;
  color: #102b55;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .btn {
  justify-self: start;
  margin-top: 8px;
  cursor: pointer;
}
.contact-form .contact-note {
  margin: 2px 0 0;
  font-size: 0.85rem;
}
.join-page {
  max-width: 760px;
  padding-top: 150px;
  padding-bottom: 90px;
}
.join-page h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.3;
}
.join-form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: clamp(20px, 5vw, 40px);
  background: white;
  border: 1px solid var(--line);
}
.join-form label,
.join-form legend {
  font-weight: 700;
}
.join-form h2 {
  margin: 20px 0 0;
  font-size: 1.35rem;
}
.join-form label span {
  color: var(--match-orange-text);
  font-size: 0.85rem;
}
.join-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.join-form select,
.join-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #aabdd2;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font: inherit;
}
.join-form textarea {
  resize: vertical;
}
.join-form fieldset {
  min-width: 0;
  margin: 10px 0;
  padding: 16px;
  border: 1px solid var(--line);
}
.join-form fieldset .join-check {
  margin: 10px 0;
}
.join-check {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.join-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
}
.join-form .btn {
  justify-self: start;
  margin-top: 10px;
  cursor: pointer;
}
.join-note {
  margin: 0;
  color: #4d6078;
  font-size: 0.85rem;
}
footer .fine {
  border-top: 1px solid #ffffff29;
  margin-top: 40px;
  padding-top: 20px;
  color: #b4c7da;
  font-size: 0.78rem;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 850px) {
  .fixture-card {
    grid-template-columns: 1fr;
  }
  .countdown {
    border-left: 0;
    border-top: 1px solid #f4d2b4;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #102b55;
    padding: 20px;
    flex-direction: column;
    align-items: start;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .cards,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .players {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
  }
  .visual {
    min-height: 320px;
  }
  .work-gallery {
    height: clamp(310px, 62vw, 440px);
  }
  .logos,
  .partner-tier--official .logos,
  .partner-tier--operations .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 88px;
  }
  .brand-logo {
    width: 156px;
  }
  .nav-inner {
    min-height: 76px;
  }
  .nav-links {
    top: 76px;
  }
  .hero-photo {
    width: 100%;
    height: 42%;
    object-fit: cover;
    object-position: 50% 65%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
  }
  .hero:before {
    background: linear-gradient(180deg, #102b552b 0%, #102b5520 25%, #081c3e 49%, #081c3e 100%);
  }
  .section {
    padding: 62px 0;
  }
  .logos {
    gap: 9px;
  }
  .logo-box,
  .partner-tier--official .logo-box {
    height: 154px;
    padding: 12px;
  }
  .partner-tier--top .logo-box {
    height: 175px;
    padding: 14px;
  }
  .logo-box {
    gap: 8px;
  }
  .logo-box a {
    gap: 8px;
  }
  .logo-box figcaption {
    font-size: 0.82rem;
  }
  .hero {
    height: 100svh;
    min-height: 610px;
  }
  .hero-inner {
    padding: 140px 0 80px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.8rem);
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-placeholder {
    right: 18px;
    bottom: 18px;
  }
  .fixture-card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 15px;
  }
  .fixture-main {
    display: block;
  }
  .fixture-versus {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    white-space: normal;
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  .fixture-versus span {
    white-space: nowrap;
  }
  .fixture-versus small {
    padding: 0;
  }
  .countdown {
    border-left: 0;
    border-top: 1px solid #f4d2b4;
    padding: 12px 15px;
  }
  .cards,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .news-card {
    min-height: 155px;
  }
  .schedule thead {
    display: none;
  }
  .schedule,
  .schedule tbody,
  .schedule tr,
  .schedule td {
    display: block;
  }
  .schedule tr {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }
  .schedule td {
    padding: 4px 0;
    border: 0;
  }
  .schedule td:before {
    content: attr(data-label);
    display: inline-block;
    width: 78px;
    color: #55718c;
    font-size: 0.78rem;
  }
  .matches-dialog-head {
    padding: 18px;
  }
  .matches-dialog-content {
    max-height: calc(88dvh - 100px);
  }
  .matches-dialog .schedule tr {
    padding: 12px 18px;
  }
  .matches-dialog .schedule td {
    padding: 4px 0;
  }
  .players {
    gap: 9px;
  }
  .player-body {
    padding: 11px;
  }
  .socials a {
    flex: 1 1 42%;
    min-width: 0;
  }
  footer .top {
    display: block;
  }
  footer .btn {
    margin-top: 12px;
  }
  .band .wrap {
    display: block;
  }
  .band p + p {
    margin-top: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn {
    transition: none;
  }
}
