:root {
  --blue: #103b80;
  --deep-blue: #082657;
  --yellow: #ffc629;
  --pale-yellow: #fff3ca;
  --cream: #fffef8;
  --ink: #112747;
  --muted: #516170;
  --line: #d2dded;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Barlow Condensed", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
a { color: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 10; padding: .7rem 1rem;
  background: white; color: var(--blue); font-weight: 700;
}
.skip-link:focus { top: 1rem; color: var(--blue); }

.site-header {
  min-height: 82px; padding: 0 clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; background: var(--cream);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--blue); line-height: 1; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
}
.brand strong, .brand small { display: block; }
.brand strong { font: 700 1.04rem var(--display); letter-spacing: .045em; text-transform: uppercase; }
.brand small { margin-top: .18rem; color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }
nav a { color: var(--ink); font-size: .84rem; font-weight: 700; text-decoration: none; }
nav a:hover, .site-footer a:hover { color: var(--yellow); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .8rem; padding: .9rem 1.2rem;
  border: 1px solid var(--yellow); background: var(--yellow); color: var(--deep-blue); font-size: .84rem;
  font-weight: 700; text-decoration: none; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: #ffda68; }
.button-small { padding: .66rem .9rem; font-size: .76rem; }

.hero { min-height: min(690px, calc(100vh - 82px)); display: grid; grid-template-columns: .8fr 1.2fr; background: var(--blue); overflow: hidden; }
.hero-content { z-index: 1; padding: clamp(4rem, 10vw, 9rem) clamp(1.25rem, 8vw, 8rem); align-self: center; color: white; }
.eyebrow { margin: 0 0 1rem; color: var(--yellow); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: .9; text-transform: uppercase; }
h1 { max-width: 690px; margin-bottom: 1.5rem; font-size: clamp(4.6rem, 9vw, 8.5rem); letter-spacing: -.035em; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-copy { max-width: 505px; color: #d8e1e8; font-size: 1.04rem; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.text-link { font-size: .86rem; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: .25rem; }
.hero-art {
  min-height: 390px;
  background:
    linear-gradient(120deg, rgb(8 38 87 / 30%), rgb(16 59 128 / 8%)),
    url("hero-yeppoon-coast.jpg") 48% center / cover no-repeat;
}

.intro, .ways-to-play, .contact { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 8vw, 8rem); }
.intro { background: #fffdf8; }
.intro-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 9vw, 9rem); align-items: end; }
h2 { margin-bottom: 0; color: var(--blue); font-size: clamp(3.4rem, 6.2vw, 6.2rem); letter-spacing: -.025em; }
.intro-grid p { max-width: 500px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.dark-link { display: inline-block; margin-top: .5rem; color: var(--blue); }

.ways-to-play { background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 2.5rem; }
.section-heading .eyebrow { align-self: start; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.play-card { min-height: 330px; padding: 1.7rem; background: #fffdf8; display: flex; flex-direction: column; }
.play-card.featured { background: var(--blue); color: white; }
.card-number { color: var(--blue); font: 700 1rem var(--display); letter-spacing: .1em; }
.featured .card-number { color: var(--yellow); }
.play-card h3 { margin: auto 0 1rem; font-size: 2.4rem; letter-spacing: -.015em; }
.play-card p { color: var(--muted); font-size: .91rem; line-height: 1.6; }
.featured p { color: #ccdae3; }
.play-card a { margin-top: 1rem; color: var(--blue); font-size: .8rem; font-weight: 700; text-decoration: none; }
.featured a { color: var(--yellow); }

.community { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--pale-yellow); }
.community-content { padding: clamp(4rem, 9vw, 7.5rem) clamp(1.25rem, 8vw, 8rem); }
.community .eyebrow { color: var(--blue); }
.community h2 { color: var(--deep-blue); }
.community-content > p:not(.eyebrow) { max-width: 490px; color: #334452; line-height: 1.65; }
.button-light { margin-top: 1rem; border-color: var(--deep-blue); background: var(--deep-blue); color: white; }
.button-light:hover { background: var(--blue); }
.scoreboard { min-height: 370px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .7rem; background: var(--deep-blue); color: white; text-align: center; }
.scoreboard-label, .scoreboard span:last-child { font-size: .65rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.scoreboard strong { color: var(--yellow); font: 800 clamp(5.6rem, 13vw, 10rem)/.8 var(--display); letter-spacing: -.05em; }

.contact { background: #fffdf8; }
.contact-details { display: grid; grid-template-columns: 1fr 1.25fr; gap: 1.5rem; }
.contact h3 { margin-bottom: .65rem; color: var(--blue); font-size: 1.3rem; letter-spacing: .04em; }
.contact p, .contact-details a { color: var(--muted); font-size: .91rem; line-height: 1.65; text-decoration: none; }
.contact-details a { overflow-wrap: anywhere; font-weight: 700; }
.contact-details a:hover { color: var(--blue); text-decoration: underline; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2rem clamp(1.25rem, 5vw, 5rem); background: var(--deep-blue); color: #cbd9eb; }
.site-footer .brand { color: white; }
.site-footer .brand small { color: #b8cce6; }
.site-footer p, .site-footer a { margin: 0; font-size: .76rem; text-decoration: none; }
.footer-links { display: flex; gap: 1.2rem; }

@media (max-width: 760px) {
  .site-header { min-height: 70px; }
  nav, .site-header > .button { display: none; }
  .hero, .community { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 4.5rem; padding-bottom: 4rem; }
  .hero-art { min-height: 270px; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 1.5rem; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: .5rem; }
  .cards { grid-template-columns: 1fr; }
  .play-card { min-height: 250px; }
  .scoreboard { min-height: 265px; }
  .contact-grid { gap: 2.5rem; }
  .contact-details { grid-template-columns: 1fr; gap: .6rem; }
  .site-footer, .footer-links { flex-wrap: wrap; }
}
