/* ============================================================
   HOBBITS LAND — subpage components (loaded on every page)
   ============================================================ */

/* active nav state */
.nav a.active { color: var(--gold); background: var(--gold-soft); }

/* "see all" pill link under home teasers */
.see-all {
  display: flex; width: fit-content; margin: 52px auto 0; gap: 10px; align-items: center;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); padding: 13px 24px; border: 1px solid var(--line-2); border-radius: 999px;
  transition: gap .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.see-all:hover { gap: 16px; border-color: var(--gold); background: var(--gold-soft); }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 184px 0 76px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.page-hero .ph-glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%; filter: blur(90px);
  right: -140px; top: -180px; background: oklch(0.84 0.19 152 / 0.14); pointer-events: none;
}
.page-hero .ph-glow.b { left: -160px; right: auto; top: auto; bottom: -220px; background: oklch(0.80 0.16 232 / 0.12); }
.page-hero .ghost {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(560px, 50vw); opacity: 0.05; filter: grayscale(1); pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; max-width: 920px; }
.page-hero .crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--text-mute); margin-bottom: 22px; }
.page-hero .crumbs a { color: var(--text-dim); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(42px, 7vw, 88px); margin: 16px 0 20px; letter-spacing: -0.03em; }
.page-hero h1 em { font-style: normal; color: var(--gold); text-shadow: 0 0 26px oklch(0.84 0.19 152 / 0.5); }
.page-hero .lead { font-size: clamp(17px, 1.7vw, 21px); color: var(--text-dim); max-width: 58ch; }
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* generic lead paragraph */
.lead { color: var(--text-dim); }

/* ---------- STEPS / HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  border: 1px solid var(--line); border-radius: var(--r); padding: 32px 30px; background: var(--surface);
  position: relative; overflow: hidden;
}
.step .n { font-family: var(--mono); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
.step h3 { font-size: 22px; margin: 16px 0 10px; }
.step p { color: var(--text-dim); font-size: 15px; }

/* ---------- FEATURE CARDS ---------- */
.fcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.fcard {
  border: 1px solid var(--line); border-radius: var(--r); padding: 30px; background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.fcard:hover { transform: translateY(-5px); border-color: var(--line-2); }
.fcard .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font-size: 20px; margin-bottom: 18px; border: 1px solid var(--line-2); }
.fcard h3 { font-size: 20px; margin-bottom: 8px; }
.fcard p { color: var(--text-dim); font-size: 14.5px; }

/* ---------- ACCORDION / FAQ ---------- */
.acc-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: var(--surface); overflow: hidden; }
.acc-head { padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; cursor: pointer; font-weight: 700; font-size: 18px; transition: color .25s; }
.acc-head:hover { color: var(--gold); }
.acc-head .pl { color: var(--gold); font-size: 22px; flex: none; transition: transform .35s var(--ease); }
.acc-item.open .acc-head .pl { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-item.open .acc-body { max-height: 360px; }
.acc-body p { padding: 0 26px 24px; color: var(--text-dim); font-size: 15.5px; max-width: 70ch; }

/* ---------- WEEKLY SCHEDULE ---------- */
.week-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.day-col { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 16px; min-height: 220px; }
.day-col .dh { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.slot { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.slot:last-child { border-bottom: none; }
.slot .t { font-family: var(--mono); font-size: 12px; color: var(--text-mute); }
.slot .e { font-size: 14.5px; font-weight: 600; margin-top: 3px; line-height: 1.3; }
.slot.tcg .e { color: var(--gold); }
.slot.warhammer .e { color: var(--ice); }
.slot.community .e { color: var(--ember); }

/* ---------- GAME DETAIL ROWS ---------- */
.game-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--line); }
.game-row:last-child { border-bottom: none; }
.game-row .g-media { position: relative; }
.game-row .g-media .ph { height: 380px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.game-row:nth-child(even) .g-media { order: 2; }
.game-row .g-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.game-row h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 16px; }
.game-row p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 14px; max-width: 48ch; }
.game-row .g-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.chip { font-family: var(--mono); font-size: 12px; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--text-dim); }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-grid .ph { border-radius: var(--r); border: 1px solid var(--line); overflow: hidden; }
.gallery-grid .ph.w2 { grid-column: span 2; }
.gallery-grid .ph.h2 { grid-row: span 2; }

/* ---------- STORY / SPLIT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.text-first .s-media { order: 2; }
.split .s-media .ph { height: 440px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.split h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 18px; }
.split p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 14px; }

/* ---------- STAT BAND ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; background: var(--surface); }
.stat-band .stat { text-align: center; }
.stat-band .stat b { display: block; font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--gold); line-height: 1; }
.stat-band .stat span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-top: 10px; display: block; }

/* ---------- CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; }
.contact-side { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 40px; }
.contact-form { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 40px; }
.field-group { margin-bottom: 18px; }
.field-group .lbl { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.field {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 14px 16px; color: var(--text); font-family: var(--font); font-size: 15px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
textarea.field { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-ok { display: none; margin-top: 16px; font-family: var(--mono); font-size: 13px; color: var(--gold); }
.form-ok.show { display: block; }

/* ---------- BIG MAP ---------- */
.map-wide { position: relative; height: 460px; border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; }
.map-wide .ph { position: absolute; inset: 0; }
.map-wide .pin { position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); display: grid; place-items: center; }
.map-wide .pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px oklch(0.84 0.19 152 / 0.25); }
.map-wide .pin .pulse { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); animation: pulse 2.4s ease-out infinite; }

/* hours table */
.hours-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text-dim); }
.hours-row.today span { color: var(--gold); font-weight: 700; }

/* embedded store frame (shop page option) */
.store-frame { width: 100%; height: 70vh; min-height: 520px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }

/* store search bar */
.store-search { display: flex; gap: 10px; max-width: 560px; margin-top: 30px; }
.store-search input {
  flex: 1; background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 16px 22px; color: var(--text); font-family: var(--font); font-size: 16px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.store-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }

/* ---------- TWO WAYS TO SHOP ---------- */
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.way {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: 40px; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.way::before { content:""; position:absolute; inset:0; background: radial-gradient(460px circle at 80% -10%, var(--gold-soft), transparent 62%); opacity:0; transition: opacity .4s var(--ease); }
.way.alt::before { background: radial-gradient(460px circle at 80% -10%, var(--ice-soft), transparent 62%); }
.way:hover { transform: translateY(-5px); border-color: var(--line-2); }
.way:hover::before { opacity: 1; }
.way .wn { position: relative; font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.way.alt .wn { color: var(--ice); }
.way h3 { position: relative; font-size: clamp(24px, 2.6vw, 32px); margin: 14px 0 10px; }
.way p { position: relative; color: var(--text-dim); font-size: 15.5px; margin-bottom: 24px; max-width: 38ch; flex: 1; }
.way .btn { position: relative; align-self: flex-start; }
@media (max-width: 820px) { .ways-grid { grid-template-columns: 1fr; } }

/* ---------- ORDER PAGE ---------- */
.order-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 28px; align-items: start; }
.order-aside .eyebrow { margin-bottom: 16px; }
.order-aside h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; }
.order-aside p { color: var(--text-dim); font-size: 16px; margin-bottom: 22px; max-width: 42ch; }
.order-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.order-points .pt { display: flex; gap: 14px; align-items: flex-start; }
.order-points .pt .ic { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--gold); flex: none; background: var(--gold-soft); }
.order-points .pt b { display: block; font-size: 15px; }
.order-points .pt span { color: var(--text-dim); font-size: 14px; }

/* widget shell — frames the SyncTaskPro embed */
.widget-shell {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg);
  background:
    radial-gradient(700px 300px at 80% -10%, oklch(0.84 0.19 152 / 0.10), transparent 60%),
    var(--surface);
  padding: 22px; min-height: 760px;
  display: flex; flex-direction: column; align-items: center;
}
.widget-shell .wbar { width: 100%; display: flex; align-items: center; gap: 10px; padding: 0 6px 18px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.widget-shell .wbar .dots { display: flex; gap: 6px; }
.widget-shell .wbar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: block; }
.widget-shell .wbar .wt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.widget-shell .wbar .secure { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.widget-shell iframe { width: 100%; max-width: 640px; height: 720px; border: 0; border-radius: 12px; background: var(--bg-2); }

/* fallback shown only if the embed can't load here */
.widget-fallback {
  width: 100%; max-width: 640px; min-height: 600px; border-radius: 12px;
  border: 1px dashed var(--line-2); background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  text-align: center; padding: 48px 34px; color: var(--text-dim);
}
.widget-fallback .fi { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--line-2); color: var(--gold); font-size: 24px; }
.widget-fallback h3 { color: var(--text); font-size: 21px; }
.widget-fallback p { font-size: 14.5px; max-width: 40ch; }
.widget-fallback code { font-family: var(--mono); font-size: 12px; color: var(--gold); background: var(--surface); padding: 3px 8px; border-radius: 6px; word-break: break-all; }

@media (max-width: 980px) {
  .order-wrap { grid-template-columns: 1fr; }
  .widget-shell { padding: 16px; min-height: 0; }
}

/* ============================================================
   EVENTS — calendar-feed UI
   ============================================================ */
/* live sync badge */
.live-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 14px;
  background: var(--gold-soft);
}
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: livePulse 2s infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 oklch(0.84 0.19 152 / 0.6); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* calendar shell */
.cal-shell { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; position: relative; }
.cal-shell::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--ice), transparent); background-size: 220% 100%; animation: feedLine 4s linear infinite; }
@keyframes feedLine { to { background-position: 220% 0; } }

.cal-top { display: flex; align-items: center; gap: 16px; padding: 22px 26px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cal-title { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; min-width: 210px; letter-spacing: -0.01em; text-transform: capitalize; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-2); background: transparent; color: var(--text); cursor: pointer; font-size: 16px; transition: all .25s var(--ease); display: grid; place-items: center; }
.cal-nav button:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.cal-top .live-badge { margin-left: auto; }

.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; padding: 16px 18px 0; }
.cal-weekdays span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); text-align: center; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; padding: 12px 18px 22px; }
.cal-grid.swap { animation: calSwap .4s var(--ease); }
@keyframes calSwap { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cal-cell { min-height: 96px; border: 1px solid var(--line); border-radius: 10px; padding: 8px; background: var(--bg-2); display: flex; flex-direction: column; gap: 5px; transition: transform .22s var(--ease), border-color .22s, background .22s; position: relative; }
.cal-cell.empty { background: transparent; border-color: transparent; }
.cal-cell.has { cursor: pointer; }
.cal-cell.has:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 12px 24px -16px oklch(0.84 0.19 152 / 0.5); }
.cal-cell .dn { font-family: var(--mono); font-size: 12px; color: var(--text-dim); }
.cal-cell.today { border-color: var(--gold); }
.cal-cell.today .dn { color: var(--gold); font-weight: 700; }
.cal-cell.selected { background: var(--gold-soft); border-color: var(--gold); }
.cal-ev { font-size: 11px; line-height: 1.25; padding: 3px 6px; border-radius: 5px; background: var(--surface-2); border-left: 2px solid var(--gold); color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-ev.warhammer { border-left-color: var(--ice); }
.cal-ev.community { border-left-color: var(--ember); }
.cal-more { font-family: var(--mono); font-size: 10px; color: var(--gold); margin-top: auto; }

/* attend (RSVP) toggle */
.attend { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--text-dim); cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; }
.attend:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.attend .chk { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid currentColor; font-size: 10px; line-height: 1; }
.attend.on { background: var(--gold); border-color: var(--gold); color: #04130d; font-weight: 700; }
.attend.on .chk { background: #04130d; color: var(--gold); border-color: #04130d; }
.attend .cnt { opacity: 0.75; }
.attend.pop { animation: attendPop .4s var(--ease); }
@keyframes attendPop { 30% { transform: scale(1.1); } 60% { transform: scale(0.96); } 100% { transform: scale(1); } }
/* ---------- RSVP modal (SyncTaskPro's hosted embed in an iframe) ----------
   We style the frame around it only. Everything inside the iframe is served
   by SyncTaskPro on their own origin and cannot be reached from this file. */
.rsvp-modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: oklch(0.12 0.02 165 / 0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: rsvpFade .22s var(--ease);
}
.rsvp-modal-card {
  width: min(560px, 100%); max-height: calc(100vh - 48px);
  display: flex; flex-direction: column; overflow: hidden auto;
  border: 1px solid var(--line-2); border-radius: var(--r); background: var(--bg-2);
  box-shadow: 0 24px 70px oklch(0 0 0 / 0.55);
  animation: rsvpIn .28s var(--ease);
}
.rsvp-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 20px 22px 16px; border-bottom: 1px solid var(--line);
}
.rsvp-modal-head h5 {
  font-family: var(--font); font-size: 17px; font-weight: 800;
  color: var(--gold); margin: 0 0 6px;
}
/* the double-opt-in promise — never replace this with a "you're in" message */
.rsvp-modal-head p {
  font-family: var(--mono); font-size: 12.5px; line-height: 1.6;
  color: var(--text-dim); margin: 0;
}
.rsvp-modal-x {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px; line-height: 1; color: var(--text-dim);
  background: none; border: 1px solid var(--line-2); cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.rsvp-modal-x:hover { color: var(--text); border-color: var(--gold); background: var(--gold-soft); }
/* 640px until the shell's stp:resize message tells us the real height */
.rsvp-frame { display: block; width: 100%; height: 640px; border: 0; background: transparent; }

@keyframes rsvpFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rsvpIn { from { opacity: 0; transform: translateY(-6px) scale(0.99); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .rsvp-modal, .rsvp-modal-card { animation: none; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* upcoming list day grouping */
.ev-day { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 26px 0 12px; display: flex; align-items: center; gap: 12px; }
.ev-day::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.ev-day:first-child { margin-top: 0; }
.ev-empty { padding: 40px; text-align: center; color: var(--text-mute); font-family: var(--mono); font-size: 13px; border: 1px dashed var(--line-2); border-radius: var(--r); }

/* subscribe row */
.sub-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sub-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); margin: 28px 0 0; }
.sub-label + .sub-row { margin-top: 12px; }
.sub-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); font-weight: 600; font-size: 14.5px; transition: all .3s var(--ease); }
.sub-btn:hover { transform: translateY(-3px); border-color: var(--gold); background: var(--gold-soft); }
.sub-btn .si { font-size: 18px; }

@media (max-width: 720px) {
  .cal-cell { min-height: 64px; padding: 6px; }
  .cal-ev { display: none; }
  .cal-cell .ev-dots { display: flex; gap: 3px; flex-wrap: wrap; }
  .cal-cell .ev-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
  .cal-cell .ev-dots i.warhammer { background: var(--ice); }
  .cal-cell .ev-dots i.community { background: var(--ember); }
}
@media (min-width: 721px) { .cal-cell .ev-dots { display: none; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .steps { grid-template-columns: 1fr; }
  .week-grid { grid-template-columns: repeat(3, 1fr); }
  .game-row, .split { grid-template-columns: 1fr; gap: 32px; }
  .game-row:nth-child(even) .g-media, .split.text-first .s-media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: 150px 0 60px; }
  .week-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .ph.w2 { grid-column: span 1; }
}
