:root{
  /* Snooker classic club theme */
  --bg:#061B15;               /* deep room */
  --text:#F4F1E6;             /* chalk/ivory */
  --muted:#C9C4B6;            /* warm muted */
  --line:rgba(244,241,230,.12);

  --baize:#0B3D2E;            /* table cloth */
  --baize2:#06261D;           /* darker cloth */
  --gold:#C8A24A;             /* brass */
  --red:#B5121B;              /* optional red ball */

  --accent: var(--gold);      /* primary CTA */
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --r:18px;
  --max:1100px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(200,162,74,.18), transparent 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(11,61,46,.55), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(181,18,27,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,12,15,.68);
  border-bottom: 1px solid var(--line);
}
.topbar .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;            /* more breathing room between logo and text */
  text-decoration:none;
  font-weight:800;
  letter-spacing:.3px;
}
.brand img{width:128px; height:128px; border-radius:50%}
nav{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
nav a{
  text-decoration:none; color:var(--muted);
  font-weight:700; font-size:14px;
  padding:8px 10px; border-radius:999px;
}
nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
nav a.active{background:rgba(200,162,74,.18); color:var(--text); border:1px solid rgba(200,162,74,.35)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  text-decoration:none; font-weight:900;
  background: linear-gradient(180deg, #E2C46A, var(--gold));
  color:#1B1405;
  box-shadow: 0 14px 34px rgba(200,162,74,.25);
}
.btn:hover{ filter: brightness(1.03); }
.btn.secondary{
  background: rgba(255,255,255,.08);
  box-shadow:none; border:1px solid var(--line);
}
main{padding:28px 0 8px}
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px; align-items:stretch;
  margin-bottom:18px;
}
@media (max-width: 920px){ .hero{grid-template-columns:1fr} }
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:22px;
  box-shadow: var(--shadow);
}
h1{margin:0 0 10px; font-size: clamp(30px, 4vw, 44px)}
.lead{margin:0 0 18px; color:var(--muted)}
.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:800; font-size: 13px;
}
.media{padding:0; overflow:hidden}
.media img{width:100%; height:100%; min-height:320px; object-fit:cover; display:block}
.media .cap{padding:14px 16px; border-top:1px solid var(--line); color:var(--muted); font-size:13px}
section{padding:18px 0}
.secTitle{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin:8px 0 12px}
h2{margin:0; font-size:22px}
.sub{margin:0; color:var(--muted); font-weight:700; font-size:14px}
.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 920px){ .grid3{grid-template-columns:1fr} }
.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted)}
.ethos{
  background: linear-gradient(180deg, rgba(11,61,46,.35), rgba(255,255,255,.02));
  border:1px solid rgba(200,162,74,.30);
}
.ethos ul{margin:10px 0 0; padding-left:18px}
.ethos li{margin:6px 0; color:var(--muted); font-weight:750}
.gallery{display:grid; gap:12px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 920px){ .gallery{grid-template-columns:1fr} }
.gItem{border-radius: var(--r); overflow:hidden; border:1px solid var(--line); background: rgba(255,255,255,.03)}
.gItem img{width:100%; height:240px; object-fit:cover; display:block}
.gItem .cap{padding:10px 12px; color:var(--muted); font-size:13px}
.notice{color:var(--muted); font-size:13px}
iframe.booking{width:100%; height:820px; border:1px solid var(--line); border-radius: var(--r); background: rgba(255,255,255,.02)}
footer{padding:28px 0 44px; border-top:1px solid var(--line); color:var(--muted)}
.footGrid{display:grid; gap:16px; grid-template-columns: 1.2fr .8fr}
@media (max-width: 920px){ .footGrid{grid-template-columns:1fr} }
.small{font-size:13px}

/* ---------- Mobile-first improvements ---------- */
nav a, .btn { min-height: 44px; }

.navToggle{
  display:none;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.siteNav{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; align-items:center; }

@media (max-width: 920px){
  main{ padding:18px 0 6px; }

  .topbar .row{ align-items:center; position:relative; }
  .navToggle{ display:inline-flex; align-items:center; justify-content:center; }

  .siteNav{
    display:none;
    position:absolute;
    right: 0;
    top: 52px;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    width: min(320px, calc(100vw - 36px));
    background: rgba(6,27,21,.92);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }
  .siteNav.open{ display:flex; }

  .siteNav a{
    width: 100%;
    justify-content: flex-start;
    display:flex;
  }
  .siteNav a.btn{
    justify-content:center;
  }

  h1{ font-size: 30px; }
  .panel{ padding: 18px; }
  .lead{ font-size: 15px; }

  .hero{ gap: 12px; margin-bottom: 10px; }
  section{ padding: 12px 0; }
  .secTitle{ flex-direction: column; align-items:flex-start; gap: 6px; }

  .media img{ min-height: 220px; }

  iframe.booking{ height: 980px; }
}

@media (max-width: 420px){
  .pillRow{ gap: 8px; }
  .pill{ font-size: 12px; padding: 7px 9px; }
  iframe.booking{ height: 1100px; }
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:16px;
}

@media (max-width: 720px){
  .grid2{
    grid-template-columns: 1fr;
  }
}

.card .media img{
  border-radius: 12px;
  border: 1px solid rgba(200,162,74,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
