:root {
  --ink: #071923;
  --water: #063a4a;
  --cyan: #22b8c8;
  --yellow: #ffd43b;
  --foam: #f3f8f7;
  --muted: #596970;
  --white: #fff;
  --line: #d6e3e2;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  top: -5rem;
  left: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--yellow);
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.legal-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
}

.site-header nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  font-weight: 750;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  opacity: 0.72;
  font-size: 0.76rem;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 850;
}

.header-action,
.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--water);
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 25, 35, 0.92), rgba(7, 25, 35, 0.28)),
    linear-gradient(0deg, rgba(7, 25, 35, 0.96), transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 2.5rem;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #087789;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 11vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 3rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 0;
  background: rgba(255, 255, 255, 0.2);
}

.facts div {
  padding: 1rem;
  background: rgba(7, 25, 35, 0.66);
}

.facts dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--yellow);
  color: var(--ink);
}

.notice p {
  margin: 0;
}

.section {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.club {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact address {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  color: #087789;
  font-weight: 850;
  border-bottom: 3px solid var(--yellow);
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.sports {
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 900px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.sport-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.17);
}

.sport-list article {
  min-height: 230px;
  padding: 1.3rem;
  background: #0b2a36;
}

.sport-list span {
  color: var(--yellow);
  font-weight: 900;
}

.sport-list h3 {
  margin-top: 4rem;
  font-size: 1.7rem;
  line-height: 1.05;
}

.sport-list p {
  color: rgba(255, 255, 255, 0.68);
}

.guest {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.guest > img,
.guest-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.guest > img {
  object-fit: cover;
}

.guest-shade {
  background: linear-gradient(90deg, rgba(7, 25, 35, 0.96), rgba(7, 25, 35, 0.36));
}

.guest-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
  color: var(--white);
}

.guest-inner h2,
.guest-inner p {
  max-width: 720px;
}

.guest-inner p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.email {
  color: #087789;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 850;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact address,
.contact-card {
  padding: 1rem;
  border-top: 4px solid var(--yellow);
  background: var(--white);
}

.contact address {
  font-style: normal;
}

.contact-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--white);
}

footer p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

footer nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-body {
  background: var(--foam);
}

.legal-header {
  position: static;
  background: var(--ink);
}

.legal-page {
  width: min(850px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.legal-page h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.legal-page h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.legal-page p,
.legal-page li,
.legal-page address {
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-page address {
  font-style: normal;
}

.legal-page a {
  color: #087789;
  text-decoration: underline;
}

.legal-note {
  padding: 1rem;
  border-left: 4px solid var(--yellow);
  background: var(--white);
}

.legal-date {
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header nav {
    display: none;
  }

  .facts,
  .club,
  .sport-list,
  .contact,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .notice,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .facts div {
    padding: 0.8rem 1rem;
  }

  .legal-header {
    align-items: flex-start;
  }
}
