/* Charlottetown Sport and Social Club
   White ground, club blue, deep-blue board band, green accents.
   Display: Unbounded. Body: Instrument Sans. */

@font-face {
  font-family: "Unbounded";
  src: url("fonts/unbounded-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("fonts/unbounded-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("fonts/unbounded-latin-800-normal.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --club-blue: #0652A0;
  --deep-blue: #0A3F7A;
  --ink: #12233A;
  --club-green: #489242;      /* decorative only */
  --green-text: #2E6E2A;      /* green as text on white, 6.2:1 */
  --panel: #EEF3F8;
  --line: #D5DDE8;
  --white: #FFFFFF;
  /* status words on the deep-blue board, computed to AA on #0A3F7A */
  --status-in: #8FD086;       /* In season, 5.7:1 */
  --status-wait: #F0B84A;     /* Waitlist open, 5.8:1 */
  --status-sold: #F49C94;     /* Sold out, 4.9:1 */
  --on-blue-soft: #C9D8EC;    /* supporting text on deep blue, 8.0:1 */
  --header-h: 100px;        /* 16px inset + 84px glass bar */
  --header-h-shrunk: 70px;
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}
img, video { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: 0.35em; }
/* ruled grids: no list-item gap, or the 1px rules break between rows */
.league-grid li, .perk-logo-row li, .partner-grid > li, .team-grid li { margin-bottom: 0; }
section[id] { scroll-margin-top: 84px; }

a:not(.btn) { color: var(--club-blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:not(.btn):hover { color: var(--deep-blue); }

:focus-visible { outline: 2px solid var(--club-blue); outline-offset: 2px; }
.on-dark :focus-visible { outline-color: var(--white); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--ink); color: var(--white); padding: 10px 16px;
  border-radius: 0 0 6px 6px; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  color: var(--white); background: var(--club-blue);
  padding: 13px 26px; border: 2px solid var(--club-blue); border-radius: 4px;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--deep-blue); border-color: var(--deep-blue); color: var(--white); }
.btn-outline-light {
  background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white);
  padding: 9px 16px; font-size: 0.92rem;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.btn-invert { background: var(--white); border-color: var(--white); color: var(--club-blue); }
.btn-invert:hover { background: var(--panel); border-color: var(--panel); color: var(--deep-blue); }
.btn-big { font-size: 1.15rem; padding: 18px 40px; }

/* ---------- Header: liquid glass (design-standards 13, transparent-header variant) ----------
   The sticky element is .site-header and carries no transform, filter or backdrop-filter.
   The glass lives on the inner bar. .solid is the past-hero state; inner pages start in it. */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 120;
  overflow-anchor: none;
  padding: 16px 64px 0;
  transition: padding 0.25s ease;
}
.site-header.shrunk { padding-top: 10px; }
.header-inner {
  position: relative;
  width: 100%; max-width: 1312px; margin: 0 auto; padding: 0 22px 0 18px;
  height: 84px;
  display: flex; align-items: center; gap: 28px;
  border-radius: 14px;
  background: rgba(6,20,40,0.26);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  transition: height 0.25s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.shrunk .header-inner { height: 60px; }
.site-header.solid .header-inner {
  background: rgba(255,255,255,0.76);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(18,35,58,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 1px 3px rgba(18,35,58,0.08);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header-inner { background: rgba(6,20,40,0.6); }
  .site-header.solid .header-inner { background: rgba(255,255,255,0.97); }
}
.brand { display: flex; align-items: center; margin-right: auto; }
/* logo sized to read at arm's length: 64px at rest, 46px shrunk (first pass, 2026-09-25) */
.brand img { height: 64px; width: auto; transition: height 0.25s ease; }
.site-header.shrunk .brand img { height: 46px; }
.brand .logo-colour { display: none; }
.site-header.solid .logo-white { display: none; }
.site-header.solid .logo-colour { display: block; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-weight: 500; font-size: 0.98rem; text-decoration: none;
  color: var(--white);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-bottom-color: currentColor; }
.main-nav a[aria-current="page"] { border-bottom-color: currentColor; }
.site-header:not(.solid) .main-nav a:not(.btn) { text-shadow: 0 1px 6px rgba(6,20,40,0.55); }
.site-header.solid .main-nav a:not(.btn) { color: var(--ink); }
.main-nav .btn { color: var(--white); padding: 10px 20px; font-size: 0.95rem; border-bottom: 2px solid var(--club-blue); }
.main-nav .btn:hover { border-bottom-color: var(--deep-blue); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 10px;
  color: var(--white);
}
.site-header.solid .nav-toggle { color: var(--ink); }
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.site-header.nav-open .nav-toggle .icon-open { display: none; }
.site-header.nav-open .nav-toggle .icon-close { display: block; }

.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: 520px;
  height: 88vh;
  max-height: 900px;
  overflow: hidden;
  background: var(--ink);
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,40,0.62) 0%, rgba(6,20,40,0.55) 13%, rgba(6,20,40,0.18) 42%, rgba(6,20,40,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding: var(--header-h) 24px 64px;
}
.hero-content h1 { margin-bottom: 0.15em; color: var(--white); }
.hero-content p { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 1.4em; text-shadow: 0 1px 8px rgba(6,20,40,0.5); }
.hero-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; justify-content: flex-end; gap: 4px;
  padding: 6px 12px;
  background: rgba(6,20,40,0.35);
}
.hero-bar button {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 0; color: var(--white);
  font-family: var(--body); font-size: 0.85rem; font-weight: 500;
  padding: 8px 10px; min-height: 44px; cursor: pointer; border-radius: 4px;
}
.hero-bar button:hover { background: rgba(255,255,255,0.15); }
.hero-bar svg { display: block; }
/* full screen: letterbox the 16:9 clip, never zoom */
.hero:fullscreen { background: #000; height: auto; max-height: none; }
.hero:fullscreen video { object-fit: contain; }
.hero:fullscreen .scrim { display: none; }
.hero:fullscreen .hero-content { display: none; }

/* ---------- Season band ---------- */
.season-band {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 0.98rem;
}
.season-band .wrap { display: flex; flex-wrap: wrap; gap: 6px 28px; align-items: baseline; }
.season-band p { margin: 0; }
.season-band .notice { color: #44546B; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { font-size: 1.08rem; }

/* ---------- League board ---------- */
.board-section {
  background: var(--deep-blue);
  color: var(--white);
  padding: 80px 0;
}
.board-section h2 { color: var(--white); }
.board-section .section-head p { color: var(--on-blue-soft); }
.board-section a:not(.btn) { color: var(--white); }

.league-board { display: flex; flex-direction: column; gap: 44px; }
.night-group { position: relative; }
.night-group.is-tonight { padding-left: 18px; border-left: 6px solid var(--club-green); }
.night-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.night-name { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--white); }
.night-marker { font-weight: 700; font-size: 0.98rem; color: var(--status-in); }

.league-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.league-grid li {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; gap: 4px;
}
.league-grid li:nth-child(3n) { border-right: 0; }
.league-name { font-weight: 600; font-size: 1.08rem; color: var(--white); }
.league-meta { color: var(--on-blue-soft); font-size: 0.95rem; }
.league-status { font-weight: 700; font-size: 0.92rem; margin-top: 6px; }
.league-status.in-season { color: var(--status-in); }
.league-status.waitlist { color: var(--status-wait); }
.league-status.sold-out { color: var(--status-sold); }
.league-grid .btn { margin-top: 12px; align-self: flex-start; }
.board-foot { text-align: center; margin-top: 44px; }

/* ---------- Split (two ways to join) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.split img { width: 100%; border-radius: 4px; }
.split-text h3 { font-family: var(--body); font-weight: 700; font-size: 1.15rem; margin-top: 1.4em; }
.split-text h3:first-of-type { margin-top: 0; }
.waiver-step { margin-top: 1.6em; padding-top: 1.4em; border-top: 1px solid var(--line); }

/* ---------- Perks strip ---------- */
.perks-strip { background: var(--white); }
.perk-logo-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0 0 28px; padding: 0;
  border-top: 1px solid var(--line);
}
.perk-logo-row li {
  display: flex; align-items: center; justify-content: center;
  padding: 26px 20px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.perk-logo-row li:last-child { border-right: 0; }
.perk-logo-row img { height: 80px; width: auto; max-width: 100%; }
.perks-strip .board-foot { margin-top: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
details.faq { border-bottom: 1px solid var(--line); }
details.faq:first-child { border-top: 1px solid var(--line); }
details.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 44px 20px 4px;
  font-weight: 600; font-size: 1.08rem;
  position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary h3, details.sport summary h3 { font: inherit; letter-spacing: inherit; margin: 0; display: inline; }
details.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2px solid var(--club-blue); border-bottom: 2px solid var(--club-blue);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
details.faq[open] summary::after { transform: rotate(225deg); margin-top: -3px; }
details.faq .faq-body { padding: 0 24px 22px 4px; }
details.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Signup ---------- */
.signup-section { background: var(--panel); border-top: 1px solid var(--line); }
.signup-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.inline-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.inline-form .field { text-align: left; }
.inline-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.inline-form input {
  font-family: var(--body); font-size: 1rem;
  padding: 12px 14px; border: 1px solid #B9C6D6; border-radius: 4px;
  width: 240px; max-width: 100%;
}
.inline-form .btn { align-self: flex-end; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Inner page hero ---------- */
.page-head { padding: 64px 0 40px; }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-head .lede { font-size: 1.12rem; max-width: 700px; }
.page-head .intro { max-width: 700px; }
.pt-0 { padding-top: 0; }
.pb-72 { padding-bottom: 72px; }
.wrap-narrow { max-width: 860px; }
.photo-single img { border-radius: 4px; }
.rules-more { margin-top: 28px; }
.faq-more { margin: 36px auto 0; }

/* ---------- Rules page ---------- */
.rules-block { max-width: 780px; margin: 0 auto 56px; }
.rules-block h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.rules-block h3 { font-family: var(--body); font-weight: 700; font-size: 1.12rem; margin-top: 1.6em; }
.rules-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; max-width: 980px; margin: 0 auto 56px; }
.rules-photos img { width: 100%; border-radius: 4px; }
details.sport { border-bottom: 1px solid var(--line); }
details.sport:first-of-type { border-top: 1px solid var(--line); }
details.sport summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 18px 44px 18px 4px;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
}
details.sport summary::-webkit-details-marker { display: none; }
details.sport summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2px solid var(--club-blue); border-bottom: 2px solid var(--club-blue);
  transform: rotate(45deg);
}
details.sport[open] summary::after { transform: rotate(225deg); margin-top: -3px; }
details.sport .sport-body { padding: 0 12px 26px 4px; }
details.sport h4 { font-family: var(--body); font-weight: 700; font-size: 1rem; margin: 1.4em 0 0.4em; }

/* ---------- Perks page ---------- */
.partner-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.partner-grid > li {
  padding: 36px 32px;
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
}
.partner-grid img { height: 88px; width: auto; max-width: 100%; margin-bottom: 18px; }
.partner-grid h2 { font-family: var(--body); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.4em; }
.partner-offer { font-size: 1.05rem; }
.partner-fine { font-size: 0.9rem; color: #44546B; }
.partner-addr { font-size: 0.95rem; margin-top: 0.8em; }
.partner-addr ul { list-style: none; padding-left: 0; }

/* ---------- About page ---------- */
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; margin: 32px 0 56px; }
.about-photos img { width: 100%; border-radius: 4px; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  list-style: none; margin: 28px 0 0; padding: 0;
}
.team-grid li { text-align: center; }
.team-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; margin-bottom: 10px; }
.team-grid .rep-name { font-weight: 700; }
.team-grid .rep-role { color: #44546B; font-size: 0.95rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 14px; }
.contact-list .label { font-weight: 700; display: block; font-size: 0.92rem; }
.contact-list a { display: inline-block; padding: 9px 0; }
.form-stack .field { margin-bottom: 16px; }
.form-stack label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; }
.form-stack input, .form-stack textarea {
  width: 100%; font-family: var(--body); font-size: 1rem;
  padding: 12px 14px; border: 1px solid #B9C6D6; border-radius: 4px;
}
.form-stack textarea { min-height: 140px; resize: vertical; }

/* ---------- Waiver page ---------- */
.waiver-panel { max-width: 680px; padding-bottom: 80px; }
.waiver-panel .btn { margin-top: 12px; }

/* ---------- Thanks / 404 ---------- */
.simple-page { padding: 96px 0; text-align: center; }
.simple-page .wrap { max-width: 620px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-blue); color: var(--white);
  padding: 56px 0 88px;
}
.site-footer a:not(.btn) { color: var(--white); }
.footer-inner { display: grid; grid-template-columns: auto 1fr 1fr; gap: 48px; align-items: start; }
.footer-logo img { width: 230px; height: auto; }
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0; }
.footer-nav a { display: inline-block; padding: 9px 0; text-decoration: none; font-weight: 500; }
.footer-nav a:hover { text-decoration: underline; }
.footer-contact p { margin: 0 0 10px; color: var(--on-blue-soft); }
.footer-contact a { font-weight: 500; }
.footer-base {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  font-size: 0.9rem; color: var(--on-blue-soft);
}
.footer-base a { color: var(--on-blue-soft); }

/* ---------- Sticky bottom bar (phones) ---------- */
.bottom-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.bottom-bar .btn { flex: 1; text-align: center; padding: 12px 8px; font-size: 0.95rem; }
.bottom-bar .btn.secondary { background: var(--white); color: var(--club-blue); }
.bottom-bar .btn.secondary:hover { background: var(--panel); color: var(--deep-blue); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .league-grid { grid-template-columns: 1fr 1fr; }
  .league-grid li:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.2); }
  .league-grid li:nth-child(2n) { border-right: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-toggle { color: var(--ink); }
  .site-header.nav-open .logo-white { display: none; }
  .site-header.nav-open .logo-colour { display: block; }
  .mobile-menu {
    display: block; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: rgba(255,255,255,0.97); border: 1px solid rgba(18,35,58,0.08);
    border-radius: 14px; box-shadow: 0 8px 24px rgba(18,35,58,0.14);
    padding: 8px 20px 20px;
    visibility: hidden; opacity: 0; transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .site-header.nav-open .mobile-menu { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu a {
    display: block; padding: 14px 0; font-weight: 600; font-size: 1.05rem;
    color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
  }
  .mobile-menu a:last-of-type { border-bottom: 0; }
  .mobile-menu .btn { margin-top: 14px; color: var(--white); text-align: center; border-bottom: 2px solid var(--club-blue); }
  .bottom-bar { display: flex; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid .contact-details { order: -1; }  /* details before the form on phones */
  .league-grid { grid-template-columns: 1fr; }
  .league-grid li, .league-grid li:nth-child(n) { border-right: 0; }
  .perk-logo-row { grid-template-columns: 1fr 1fr; }
  .perk-logo-row li:nth-child(2n) { border-right: 0; }
  .partner-grid { grid-template-columns: 1fr; }
  .rules-photos, .about-photos { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { height: 78vh; min-height: 460px; }
  :root { --header-h: 78px; --header-h-shrunk: 64px; }
  .site-header { padding: 10px 12px 0; }
  .site-header.shrunk { padding-top: 8px; }
  .header-inner { height: 68px; padding: 0 8px 0 14px; border-radius: 12px; }
  .site-header.shrunk .header-inner { height: 56px; }
  .brand img { height: 54px; }
  .site-header.shrunk .brand img { height: 44px; }
  .perk-logo-row img { height: 72px; }
  .footer-logo img { width: 220px; }
  .inline-form input { width: 100%; }
  .inline-form .field { width: 100%; }
  .inline-form .btn { width: 100%; }
  .section { padding: 56px 0; }
  /* phones: tonight's league night moves to the top of the board */
  .night-group.is-tonight { order: -1; }
  .league-board { display: flex; }
}

@media (min-width: 761px) {
  .mobile-menu { display: none !important; }
}
