linear-gradient(180deg, #081022, #070d18 40%, #060a12 100%);
  color: var(--text);
    line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
	      width: min(var(--max), calc(100% - 48px));
	        margin: 0 auto;
	}

	.skip-link {
		  position: absolute;
		    left: -9999px;
		      top: 10px;
		        background: #fff;
			  color: #000;
			    padding: 10px 12px;
			      border-radius: 12px;
		      }
		      .skip-link:focus { left: 16px; z-index: 9999; }

		      .site-header {
			        position: sticky;
				  top: 0;
				    z-index: 50;
				      backdrop-filter: blur(14px);
				        background: rgba(6, 10, 18, 0.55);
					  border-bottom: 1px solid var(--border);
				  }

				  .header-inner {
					    display: flex;
					      align-items: center;
					        justify-content: space-between;
						  gap: 18px;
						    padding: 14px 0;
					    }

					    .b:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;

  --accent: #f0c36d;
  --accent-2: #f7d89b;

  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 500px at 15% 0%, rgba(240, 195, 109, 0.16), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(247, 216, 155, 0.12), transparent 55%),
    rand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #101521;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(240, 195, 109, 0.22);
}
.brand-text { display: grid; gap: 2px; }
.brand-name { font-weight: 760; letter-spacing: 0.2px; }
.brand-tagline { font-size: 0.92rem; color: var(--muted-2); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.site-nav a:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(240, 195, 109, 0.28);
  background: linear-gradient(135deg, rgba(240, 195, 109, 0.92), rgba(247, 216, 155, 0.82));
  color: #101521;
  font-weight: 760;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 120ms ease, filter 120ms ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.02); }
.btn:active { transform: translateY(0px); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}
.btn-small { padding: 9px 12px; border-radius: 12px; font-weight: 740; }
.btn-wide { width: 100%; }

.text-link {
  color: var(--accent-2);
  font-weight: 650;
}
.text-link:hover { text-decoration: underline; }

.section {
  padding: 72px 0;
}
.section-alt {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.2px;
}
.section-head p { margin: 0; color: var(--muted); max-width: 70ch; }

.hero {
  padding: 84px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-weight: 720;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4.3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.lead { margin: 0 0 18px; color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 22px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.badge {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 14px;
}
.badge-title { display: block; color: var(--muted-2); font-size: 0.9rem; }
.badge-value { display: block; font-weight: 780; margin-top: 4px; }

.card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3, .hero-card h2 { margin: 0 0 10px; letter-spacing: -0.2px; }
.hero-card { padding: 18px; }

.kicker {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
}
.muted { color: var(--muted); margin: 0; }
.fineprint { margin: 10px 0 0; color: var(--muted-2); font-size: 0.92rem; }

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

.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 12px; }

.details {
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.details div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  padding-bottom: 10px;
}
.details div:last-child { border-bottom: none; padding-bottom: 0; }
dt { color: var(--muted-2); }
dd { margin: 0; font-weight: 700; }

.notice {
  margin-top: 16px;
  border: 1px solid rgba(240, 195, 109, 0.26);
  background: rgba(240, 195, 109, 0.08);
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text);
}
.notice.compact { margin-top: 14px; padding: 12px 14px; }

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li { margin: 8px 0; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.events {
  display: grid;
  gap: 14px;
}
.event {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 14px;
}
.event-date {
  width: 80px;
  border-radius: 18px;
  border: 1px solid rgba(240, 195, 109, 0.22);
  background: rgba(240, 195, 109, 0.08);
  padding: 10px 12px;
  text-align: center;
}
.event-month { display: block; color: var(--muted-2); font-weight: 720; font-size: 0.92rem; text-transform: uppercase; }
.event-day { display: block; font-weight: 820; font-size: 1.35rem; }
.event-body h3 { margin: 0 0 4px; }
.event-link { padding: 10px 8px; border-radius: 12px; color: var(--accent-2); }
.event-link:hover { background: rgba(255,255,255,0.06); }

.address p { margin: 0; color: var(--muted); }
.address p strong { color: var(--text); }

.map-shell {
  margin-top: 12px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  min-height: 180px;
}
.map-faux {
  height: 220px;
  background:
    radial-gradient(12px 12px at 22% 30%, rgba(240,195,109,0.35), transparent 60%),
    radial-gradient(10px 10px at 62% 55%, rgba(247,216,155,0.28), transparent 60%),
    radial-gradient(8px 8px at 78% 35%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  filter: saturate(1.1);
}
.map-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(6, 10, 18, 0.55);
  backdrop-filter: blur(10px);
}

.form { display: grid; gap: 12px; margin-top: 10px; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 650; }
input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}
input:focus, textarea:focus {
  border-color: rgba(240, 195, 109, 0.5);
  box-shadow: 0 0 0 4px rgba(240, 195, 109, 0.14);
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 14px 0;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(6, 10, 18, 0.62);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
}
.footer-links { display: flex; gap: 12px; }

/* Responsive */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .event { grid-template-columns: 80px 1fr; }
  .event-link { justify-self: start; padding-left: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 12px 18px 18px;
    background: rgba(6, 10, 18, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .site-header { position: sticky; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; }
}

/* Pretty boost: polish layer */
:root{
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,0.42);
}

/* smoother text rendering */
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* subtle starry grain (very light) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.12) 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 40%, rgba(255,255,255,0.10) 50%, transparent 51%),
    radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,0.08) 50%, transparent 51%),
    radial-gradient(1px 1px at 25% 70%, rgba(255,255,255,0.10) 50%, transparent 51%),
    radial-gradient(1px 1px at 75% 78%, rgba(255,255,255,0.10) 50%, transparent 51%);
  opacity: 0.65;
  mix-blend-mode: screen;
}

/* section separators */
.section{
  position: relative;
}
.section::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

/* make headings feel more premium */
h1, h2, h3{
  letter-spacing: -0.4px;
}
.section-head p{
  font-size: 1.02rem;
}

/* cards: glass + depth + hover */
.card{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.40);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(240,195,109,0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
}

/* buttons: a little more “glow” */
.btn{
  box-shadow:
    0 18px 34px rgba(0,0,0,0.25),
    0 0 0 6px rgba(240,195,109,0.10);
}
.btn-ghost{
  box-shadow: none;
}
.btn-ghost:hover{
  border-color: rgba(240,195,109,0.35);
  background: rgba(240,195,109,0.08);
}

/* nav links: nicer hover */
.site-nav a:hover{
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}

/* hero: extra glow and nicer spacing */
.hero{
  position: relative;
}
.hero::before{
  content:"";
  position: absolute;
  inset: -120px 0 auto 0;
  height: 260px;
  background: radial-gradient(600px 260px at 20% 20%, rgba(240,195,109,0.20), transparent 65%);
  pointer-events: none;
  filter: blur(2px);
}
.hero-copy{
  padding-top: 6px;
}

/* badges: pop a bit more */
.badge{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
}

/* events: make “date chip” look richer */
.event-date{
  background:
    linear-gradient(180deg, rgba(240,195,109,0.16), rgba(240,195,109,0.07));
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

/* form fields: nicer focus */
input:focus, textarea:focus{
  border-color: rgba(240,195,109,0.60);
  box-shadow:
    0 0 0 5px rgba(240,195,109,0.16),
    0 14px 30px rgba(0,0,0,0.18);
}

/* footer: more refined */
.site-footer{
  background: rgba(6,10,18,0.75);
  backdrop-filter: blur(12px);
}
/* ===== Header / Banner upgrade ===== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6,10,18,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
}

.header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

/* subtle glow strip behind the header */
.header-inner::before{
  content:"";
  position: absolute;
  inset: -18px -24px auto -24px;
  height: 86px;
  background:
    radial-gradient(420px 120px at 15% 40%, rgba(240,195,109,0.22), transparent 70%),
    radial-gradient(320px 120px at 75% 20%, rgba(247,216,155,0.14), transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}

.brand{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark{
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(240,195,109,0.95), rgba(247,216,155,0.82));
  color: #101521;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow:
    0 18px 34px rgba(0,0,0,0.28),
    0 0 0 6px rgba(240,195,109,0.12);
}

/* little gold halo behind logo */
.brand-mark::before{
  content:"";
  position: absolute;
  inset: -14px;
  border-radius: 22px;
  background: radial-gradient(circle at 40% 30%, rgba(240,195,109,0.26), transparent 62%);
  filter: blur(6px);
  z-index: -1;
}

.brand-text{
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-name{
  font-weight: 820;
  letter-spacing: -0.3px;
  font-size: 1.02rem;
}

.brand-tagline{
  color: rgba(255,255,255,0.70);
  font-size: 0.92rem;
}

/* Nav: pill style */
.site-nav{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.site-nav a{
  color: rgba(255,255,255,0.82);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 14px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover{
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.site-nav .nav-cta{
  background: linear-gradient(135deg, rgba(240,195,109,0.92), rgba(247,216,155,0.82));
  color: #101521;
  border: 1px solid rgba(240,195,109,0.30);
  font-weight: 820;
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}

/* Mobile toggle: nicer icon */
.nav-toggle{
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 720;
}

.nav-toggle-lines{
  width: 18px;
  height: 14px;
  display: grid;
  gap: 3px;
}
.nav-toggle-lines span{
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.86);
  opacity: 0.95;
}

@media (max-width: 900px){
  .nav-toggle{ display: inline-flex; }

  .site-nav{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    margin: 0 auto;
    width: min(var(--max), calc(100% - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(6,10,18,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.50);
  }

  .site-nav.open{ display: flex; }
  .site-nav a{ width: 100%; }
}
