:root{
  --blue: #1D295B;
  --yellow: #F2B221;
  --orange: #F26929;
  --text: #444444;
  --bg: #FFFFFF;

  --border: rgba(29,41,91,0.12);
  --shadow: 0 12px 28px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 12px;

  --font-heading: "Bebas Neue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

.section{
  padding: 64px 16px;
}

.container{
  max-width: 1040px;
  margin: 0 auto;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(68,68,68,0.8);
  margin-bottom: 10px;
}

.heading{
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 12px 0;
  color: #111;
  text-transform: uppercase;
}

.subheading{
  margin: 0 0 28px 0;
  max-width: 72ch;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(68,68,68,0.9);
}

.widget{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.searchRow{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

#searchInput{
  flex: 1 1 340px;
  min-width: 220px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
  font-size: 14px;
  font-family: var(--font-body);
}

#searchInput:focus{
  border-color: rgba(29,41,91,0.35);
  box-shadow: 0 0 0 4px rgba(242,178,33,0.25);
}

.btn{
  height: 44px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(0,0,0,0.12);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.btnPrimary{
  background: var(--blue);
  color: #fff;
  border-color: rgba(29,41,91,0.4);
}

.btnPrimary:hover{ filter: brightness(1.05); }

.btnSecondary{
  background: #fff;
  color: var(--blue);
  border-color: rgba(29,41,91,0.25);
}

.btnSecondary:hover{
  background: rgba(29,41,91,0.04);
}

.btnGhost{
  background: #fff;
  color: rgba(68,68,68,0.9);
}

.btnGhost:hover{
  background: rgba(0,0,0,0.03);
}

.metaRow{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 2px 14px;
}

.status{
  font-size: 12px;
  color: rgba(68,68,68,0.85);
}

.linkBtn{
  border: none;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 8px;
  border-radius: 8px;
}
.linkBtn:hover{ background: rgba(29,41,91,0.05); }

.grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: start;
}

.results{
  display: grid;
  gap: 12px;
}

.card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 14px;
}

.card.primary{
  border-color: rgba(242,178,33,0.9);
  box-shadow: 0 0 0 4px rgba(242,178,33,0.18);
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.75);
  background: rgba(242,178,33,0.22);
  border: 1px solid rgba(242,178,33,0.45);
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.clubName{
  font-weight: 800;
  color: #111;
  margin: 0 0 6px 0;
  font-size: 15px;
}

.clubMeta{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(68,68,68,0.92);
  margin: 0 0 10px 0;
}

.actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.actionLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  color: #111;
  background: #fff;
}

.actionLink:hover{
  border-color: rgba(29,41,91,0.25);
  background: rgba(29,41,91,0.04);
}

.mapWrap{
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f7f7f7;
  min-height: 420px; /* critical for mobile + leaflet */
}

.map{
  width: 100%;
  height: 420px; /* critical for mobile + leaflet */
}

.openMaps{
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.fineprint{
  font-size: 12px;
  margin-top: 14px;
  color: rgba(68,68,68,0.8);
}

/* Accessibility utility */
.srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 880px){
  .grid{
    grid-template-columns: 1fr;
  }
  .mapWrap{
    min-height: 360px;
  }
  .map{
    height: 360px;
  }
  .heading{
    font-size: 40px;
  }
}

@media (max-width: 480px){
  .section{ padding: 44px 14px; }
  .heading{ font-size: 36px; }
  #searchInput{ flex-basis: 100%; }
}