:root {
  --navy: #071833;
  --ice: #e8f0ff;
  --muted: #b7c7e6;
  --gold: #d7c39a;
  --line: rgba(232, 240, 255, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Instrument Sans", sans-serif;
  color: var(--ice);
  background: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 42%, rgba(40, 92, 180, 0.45), transparent 42%),
    linear-gradient(180deg, rgba(7, 24, 51, 0.2) 0%, rgba(7, 24, 51, 0.78) 100%),
    #0a2a62 url("images/hero-bg.png") center / cover no-repeat;
}

.page .hero {
  min-height: 100vh;
}

.mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.mark img {
  position: absolute;
  width: min(52vw, 520px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.22;
  filter: saturate(0.85);
}

.mark p {
  position: relative;
  font-family: "Instrument Serif", serif;
  font-size: clamp(4.8rem, 18vw, 14rem);
  line-height: 0.82;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 240, 255, 0.12);
  text-align: center;
}

.page .mark img {
  width: min(38vw, 340px);
  opacity: 0.12;
}

.page .mark p {
  font-size: clamp(3.2rem, 12vw, 9rem);
}

.wrap {
  position: relative;
  z-index: 40;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0 0;
  position: relative;
  z-index: 8;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-name span {
  display: block;
  margin-top: 0.18rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

nav a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a.is-current {
  color: var(--ice);
}

nav a.is-current {
  border-bottom-color: var(--gold);
}

.has-menu {
  position: relative;
  padding: 0.55rem 0 1.1rem;
  margin: -0.55rem 0 -1.1rem;
}

.has-menu .menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.has-menu .menu-trigger::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  min-width: 240px;
  padding: 0.45rem;
  background: rgba(9, 26, 54, 0.97);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  transform: translateY(-0.2rem);
}

.has-menu:hover .menu,
.has-menu:focus-within .menu,
.has-menu.open .menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu a {
  display: block;
  padding: 0.58rem 0.8rem;
  border-bottom: 0;
  border-radius: 0.55rem;
  color: var(--muted);
  white-space: nowrap;
}

.menu a:hover,
.menu a.is-current {
  color: var(--ice);
  background: rgba(232, 240, 255, 0.07);
}

.menu a.is-current {
  border-bottom: 0;
}

.roster {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.roster a {
  display: block;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  color: var(--ice);
}

.roster a:hover {
  background: rgba(232, 240, 255, 0.06);
}

.panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 5.5rem;
}

.panel h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
