.terms-chips{
  display:flex;
  gap:.6rem;
  flex-wrap: wrap;
  align-items:center;
}

.terms-chip{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.4rem .75rem;
  border-radius:999px;
  text-decoration:none;
  background: rgba(255,255,255,.38);
  border:1px solid rgba(11,27,74,.08);
  opacity:.95;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  
}

.terms-chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 24px rgba(11,27,74,.08);
}

.terms-chip.is-active{
  background: rgba(34,75,142,.10);
  border-color: rgba(34,75,142,.28);
  box-shadow: 0 8px 22px rgba(34,75,142,.14);
  opacity:1;
}

.terms-chip.is-active .step-badge,
.terms-nav-tab.is-active .step-badge{
  background: var(--primary) !important;
  color:#fff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 6px 14px rgba(34,75,142,.28) !important;
}

/* Also beat the mega html body :is(span...) !important rule on label text */
html body .terms-nav-tab.is-active .terms-nav-label{
  color:#fff !important;
}

/* And the open accordion badge number */
html body details[open] > .terms-summary .step-badge{
  color:#fff !important;
}

.terms-nav-tab.is-active{
  background: rgba(34,75,142,0.18) !important;
  border-color: rgba(34,75,142,0.40) !important;
}

@media (max-width:768px){
  .terms-chips{
    flex-wrap: nowrap;
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    
    padding-bottom:.35rem;
  }
}

#termsJump{
  position: relative;
  border-top: 3px solid var(--primary);
  background: linear-gradient(
    180deg,
    rgba(34,75,142,.06) 0%,
    rgba(255,255,255,.65) 60%
  );
}

#termsJump.is-sticky{
  -webkit-backdrop-filter: blur(26px) saturate(150%) brightness(115%);
  backdrop-filter: blur(26px) saturate(150%) brightness(115%);
  border-top: 3px solid var(--primary);
  border-bottom: 1px solid rgba(34,75,142,.14);
  box-shadow: 0 12px 32px rgba(34,75,142,.12);
}

.terms-item{
  border-top:1px solid rgba(11,27,74,.08);
  padding-top:1rem;
  margin-top:1rem;
  scroll-margin-top:160px;
  border-radius:.9rem;
  transition: background .2s ease, border .2s ease, box-shadow .2s ease;
}

.terms-summary{
  list-style:none;
  display:flex;
  align-items:center;
  gap:.9rem;
  cursor:pointer;
  -webkit-user-select:none;
  user-select:none;
  padding:.7rem .75rem;
  border-radius:.8rem;
  transition: background .15s ease, transform .18s ease, box-shadow .18s ease;
}

.terms-summary:hover{
  background: rgba(34,75,142,.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11,27,74,.07);
}

.terms-summary::-webkit-details-marker{
  display:none;
}

.terms-title{
  font-weight:700;
  letter-spacing:.2px;
}

.terms-summary::after{
  content:"›";
  margin-left:auto;
  font-size:1.2rem;
  transition: transform .18s ease;
  color:var(--primary);
}

details[open] > .terms-summary::after{
  transform: rotate(90deg);
}

details[open].terms-item{
  border: 1px solid rgba(34,75,142,.16);
  border-left: 4px solid var(--primary);
  padding-left:.6rem;
  background: linear-gradient(
    180deg,
    rgba(34,75,142,.06) 0%,
    rgba(255,255,255,.0) 70%
  );
  box-shadow: 0 14px 38px rgba(11,27,74,.10);
}

details[open] > .terms-summary{
  background: rgba(34,75,142,.06);
}

details[open] > .terms-summary .step-badge{
  background: var(--primary);
  color:#fff;
  border-color: rgba(34,75,142,.45);
  box-shadow: 0 10px 20px rgba(34,75,142,.22);
}

.terms-content{
  margin-top:.35rem;
  padding:.6rem .75rem .9rem .75rem;
}

.terms-content p,
.terms-content li{
  line-height:1.8;
}

details[open] .terms-content{
  animation: termsDropIn .18s ease-out both;
  transform-origin: top;
}

@keyframes termsDropIn{
  from{ opacity:0; transform: translateY(-4px); }
  to{ opacity:1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .terms-chip,
  .terms-summary,
  .terms-summary::after,
  .terms-item{
    transition: none !important;
  }
  details[open] .terms-content{
    animation: none !important;
  }
}

.terms-cta{
  border-top: 3px solid var(--primary);
  background: linear-gradient(
    180deg,
    rgba(34,75,142,.06) 0%,
    rgba(255,255,255,.62) 70%
  );
}

.terms-chip:focus-visible,
.terms-summary:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:2px;
}

@media print{
  
  header, footer,
  #site-nav, #site-footer,
  .theme-overlay,
  .skip-link,
  #termsJump, #termsJumpSpacer,
  #backToTopBtn,
  .modal, .modal-backdrop,
  .offcanvas, .offcanvas-backdrop{
    display:none !important;
  }

  
  .glass-panel,
  .soft-card,
  .hub-hero,
  .hub-card,
  .terms-accordion,
  .terms-item,
  #termsJump{
    background: transparent !important;
    box-shadow:none !important;
   
    -webkit-backdrop-filter:none !important;
     backdrop-filter:none !important;
  }

  
  html, body{
    background:#fff !important;
    color:#000 !important;
  }

  
  details.terms-item{
    break-inside: avoid;
    page-break-inside: avoid;
  }

  
  a, a:visited{
    color:#000 !important;
    text-decoration: underline !important;
  }
}

.terms-hero-logo img{
  height:150px !important;
  width:auto;
  opacity:.9;
}

@media (max-width:768px){
  .terms-hero-logo{
    display:none;
  }
}

.bedding-wrap{max-width:1100px;margin-inline:auto;}

.meta-row{display:flex;gap:.75rem;flex-wrap:wrap;align-items:center;}

.counter-pill{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:.35rem .65rem;
      border-radius:999px;
      border:1px solid rgba(var(--primary-rgb)/.22);
      background: rgba(255,255,255,.38);
      font-weight:700;
      font-size:.9rem;
    }

[data-theme="dark"] .counter-pill{
      border-color: rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
    }

.warn-pill{
      display:none;
      padding:.35rem .65rem;
      border-radius: 999px;
      border:1px solid rgba(var(--primary-rgb)/.28);
      background: rgba(var(--primary-rgb)/.10);
      font-size:.85rem;
      font-weight:600;
    }

.warn-pill.is-on{ display:inline-flex; align-items:center; gap:.5rem; }

.autosave-pill{
      display:inline-flex; align-items:center; gap:.45rem;
      padding:.35rem .65rem;
      border-radius: 999px;
      border:1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.38);
      font-size:.85rem;
      opacity:.95;
    }

[data-theme="dark"] .autosave-pill{ border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }

.dot{ width:.55rem;height:.55rem;border-radius:999px;background: rgba(0,0,0,.22); }

.dot.on{ background: rgba(var(--primary-rgb)/.9); }

.room-card{ border:1px solid rgba(0,0,0,.08); }

[data-theme="dark"] .room-card{ border-color: rgba(255,255,255,.12); }

.room-head{ display:flex; justify-content:space-between; gap:.75rem; flex-wrap:wrap; align-items:flex-start; margin-bottom:.75rem; }

.room-title{ font-weight:800; }

.room-sub{ opacity:.8; font-size:.85rem; }

.room-status{ display:inline-flex; align-items:center; gap:.4rem; font-size:.82rem; opacity:.9; }

.status-icon{
      width:1.05rem;height:1.05rem;border-radius:999px;
      border:1px solid rgba(0,0,0,.10);
      display:inline-flex;align-items:center;justify-content:center;
      font-size:.72rem;
      background: rgba(255,255,255,.35);
    }

[data-theme="dark"] .status-icon{ border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }

.is-empty  .status-icon{ opacity:.55; }

.is-partial .status-icon{ border-color: rgba(var(--primary-rgb)/.30); background: rgba(var(--primary-rgb)/.10); }

.is-full   .status-icon{ border-color: rgba(var(--primary-rgb)/.45); background: rgba(var(--primary-rgb)/.16); }

.bed-input{
      width:100%;
      border:1px solid rgba(0,0,0,.08);
      border-radius:.75rem;
      padding:.55rem .65rem;
      background: rgba(255,255,255,.45);
      outline:none;
    }

[data-theme="dark"] .bed-input{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.92); }

.bed-input:focus{ border-color: rgba(var(--primary-rgb)/.45); box-shadow: 0 0 0 .2rem rgba(var(--primary-rgb)/.18); }

.section-title{ display:flex; align-items:center; justify-content:space-between; gap:.75rem; flex-wrap:wrap; }

.section-title h2{ margin:0; }

.sticky-bar{
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 1000;
      padding: .5rem 0;
      background: transparent;
    }

.sticky-bar .inner{
      max-width:1100px;
      margin-inline:auto;
      padding: .55rem .75rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.75rem;
      flex-wrap:wrap;
    }

.sticky-counter{ font-weight:800; }

.sticky-actions{ display:flex; gap:.5rem; flex-wrap:wrap; }

@media print {
          @page {
            size: A4 portrait;
            margin: 12mm;
          }
    
          html,
          body {
            background: #fff !important;
          }
    
          body {
            padding-bottom: 0 !important;
            color: #000 !important;
          }
    
          .print-hide,
          .sticky-bar,
          .theme-overlay,
          .skip-link,
          header,
          footer {
            display: none !important;
          }
    
          .glass-panel,
          .soft-card,
          .hub-card,
          .room-card {
            background: #fff !important;
            color: #000 !important;
            box-shadow: none !important;
            border: 1px solid #cfcfcf !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
          }
    
          .meta-row,
          .room-head,
          .section-title,
          .small-muted,
          .room-title,
          .room-sub,
          .room-status,
          .status-text,
          .sticky-counter,
          label,
          h1,
          h2,
          h3,
          p,
          span,
          div {
            color: #000 !important;
          }
    
          .room-card,
          .col-12,
          .col-lg-6,
          .col-md-6 {
            break-inside: avoid;
            page-break-inside: avoid;
          }
    
          .bed-input,
          .form-control,
          input,
          textarea {
            background: #fff !important;
            color: #000 !important;
            border: 1px solid #999 !important;
            box-shadow: none !important;
    
          }
    
          .hero-plan-image {
            max-width: 220px !important;
            height: auto !important;
          }
    
          .counter-pill,
          .warn-pill,
          .autosave-pill,
          .badge-soft {
            background: #fff !important;
            color: #000 !important;
            border: 1px solid #999 !important;
            box-shadow: none !important;
          }
    
        
        }

footer{
  margin-top: 3rem;
}

.centenary-theme {
  
  --panel-tint: rgba(255, 255, 255, .08);
  --border-tint: rgba(255, 255, 255, .14);
  --tooltip-shadow: 0 18px 44px rgba(0, 0, 0, .35);
}

[data-theme="dark"] .centenary-theme {
  --panel-tint: rgba(0, 0, 0, .18);
  --border-tint: rgba(255, 255, 255, .16);
}

#centenaryPlanSvg {
  width: 980px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#centenaryPlanSvg .bg {
  fill: var(--panel-bg);
}

#centenaryPlanSvg text {
  fill: var(--text-color);
  font: 600 18px Arial, sans-serif;
  paint-order: stroke;
}

#centenaryPlanSvg .corr {
  fill: rgba(0, 0, 0, .04);
  
  stroke: rgba(0, 0, 0, .18);
  stroke-width: 2;
}

[data-theme="dark"] #centenaryPlanSvg .corr {
  fill: rgba(255, 255, 255, .06);
  stroke: rgba(255, 255, 255, .18);
}

#centenaryPlanSvg .i {
  fill: rgba(0, 0, 0, .02);
  
  stroke: rgba(0, 0, 0, .22);
  stroke-width: 2.5;
}

[data-theme="dark"] #centenaryPlanSvg .i {
  fill: rgba(255, 255, 255, .04);
  stroke: rgba(255, 255, 255, .18);
}

.plan-canvas {
  padding: 12px;
  overflow: auto;
  background: var(--panel-tint);
  border: 1px solid var(--border-tint);
  border-radius: 16px;
}

#hotspots .hs {
  fill: transparent;
  stroke: none;
  pointer-events: all;
  cursor: pointer;
  transition: fill .15s ease, stroke .15s ease, opacity .15s ease;
}

#hotspots .hs.sleep:hover {
  fill: rgba(93, 153, 210, .18);
}

#hotspots .hs.leader:hover {
  fill: rgba(140, 150, 255, .22);
}

#hotspots .hs.facility:hover {
  fill: rgba(159, 227, 177, .18);
}

#hotspots .hs.wash:hover {
  fill: rgba(120, 220, 255, .22);
}

#hotspots .hs.hall:hover {
  fill: rgba(128, 32, 58, .28);
}

#hotspots .hs.is-selected,
#hotspots .hs.is-filtered {
  stroke: rgba(0, 0, 0, .55);
  stroke-width: 3;
}

[data-theme="dark"] #hotspots .hs.is-selected,
[data-theme="dark"] #hotspots .hs.is-filtered {
  stroke: rgba(255, 255, 255, .55);
}

#hotspots .hs.sleep.is-filtered {
  fill: rgba(93, 153, 210, .20);
}

#hotspots .hs.leader.is-filtered {
  fill: rgba(140, 150, 255, .22);
}

#hotspots .hs.facility.is-filtered {
  fill: rgba(159, 227, 177, .16);
}

#hotspots .hs.wash.is-filtered {
  fill: rgba(120, 220, 255, .22);
}

#hotspots .hs.hall.is-filtered {
  fill: rgba(128, 32, 58, .32);
}

#hotspots .hs.dim {
  fill: rgba(0, 0, 0, .08);
  opacity: .35;
}

[data-theme="dark"] #hotspots .hs.dim {
  fill: rgba(255, 255, 255, .10);
}

.plan-key {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: .95rem;
}

.plan-key__item {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.plan-key__swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .22);
}

[data-theme="light"] .plan-key__swatch {
  border: 1px solid rgba(0, 0, 0, .22);
}

.plan-key__sleep {
  background: rgba(93, 153, 210, .35);
}

.plan-key__leader {
  background: rgba(140, 150, 255, .35);
}

.plan-key__facility {
  background: rgba(159, 227, 177, .35);
}

.plan-key__hall {
  background: rgba(128, 32, 58, .45);
}

.centenary-theme .hub-card {
  line-height: 1.5;
}

.centenary-theme .hub-card h2 {
  margin-bottom: .35rem;
}

.centenary-theme .hub-card p {
  margin-bottom: 0;
}

#infoKvs {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.centenary-theme .hub-card .info-kv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .6rem .8rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}

[data-theme="light"] .centenary-theme .hub-card .info-kv-row {
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .08);
}

.centenary-theme .hub-card .info-kv-key {
  font-size: .9rem;
  letter-spacing: .02em;
}

.centenary-theme .hub-card .info-kv-val {
  font-weight: 700;
}

.centenary-theme .hub-card>*+* {
  margin-top: 1rem;
}

.info-media {
  margin-top: .75rem;
}

.info-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.print-btn {
  font-size: .85rem;
  padding: .35rem .75rem;
}

.info-kv-key {
  min-width: 110px;
}

@media print{
  *{
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    box-sizing: border-box !important;
  }

  @page{
    size: A4 landscape;
    margin: 8mm;
  }

  
  body *{
    visibility: hidden !important;
  }

  
  #print-plan,
  #print-plan *{
    visibility: visible !important;
  }

  
  #print-plan{
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    transform: none !important;
  }

  
  #print-plan .btn,
  #print-plan .filters,
  #print-plan .plan-tip{
    display: none !important;
  }

  
  #print-plan #centenaryPlanSvg{
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  
  #print-plan #centenaryPlanSvg text{
    font-size: 18px !important;
  }
}

#stedfastPlanSvg{
  width: 980px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#stedfastPlanSvg .bg{
  fill: var(--panel-bg);
}

#stedfastPlanSvg text{
  fill: var(--text-color);
  font: 600 18px Arial, sans-serif;
}

#stedfastPlanSvg .i{
  fill: transparent;
  stroke: var(--text-color);
  stroke-width: 3;
}

#stedfastPlanSvg .divider{
  stroke: var(--text-color);
  stroke-width: 2;
}

#stedfastPlanSvg #hotspots .hs{
  fill: transparent;
  stroke: none;
  pointer-events: all;
  cursor: pointer;
  opacity: 1; 
  vector-effect: non-scaling-stroke;
  transition: fill .15s ease, stroke .15s ease, opacity .15s ease;
}

#stedfastPlanSvg #hotspots .hs.sleep:hover{ fill: rgba(93,153,210,.30); }

#stedfastPlanSvg #hotspots .hs.facility:hover{ fill: rgba(159,227,177,.30); }

#stedfastPlanSvg #hotspots .hs.hall:hover{ fill: rgba(128,32,58,.38); }

#stedfastPlanSvg #hotspots .hs.is-filtered.sleep{ fill: rgba(93,153,210,.55); }

#stedfastPlanSvg #hotspots .hs.is-filtered.facility{ fill: rgba(159,227,177,.55); }

#stedfastPlanSvg #hotspots .hs.is-filtered.hall{ fill: rgba(128,32,58,.55); }

#stedfastPlanSvg #hotspots .hs.is-selected{
  fill-opacity: 1;
}

#stedfastPlanSvg #hotspots .hs.is-selected{
  stroke: #2b2b2b;
  stroke-width: 3;
}

#stedfastPlanSvg #hotspots .hs.dim{
  opacity: 1;
  fill: rgba(0,0,0,.12);
}

@media (max-width: 768px){
  
  #stedfastPlanSvg text{ font-size: 20px; }
}

@media print {
  header,
  footer,
  .col-lg-4,
  .btn,
  .badge-soft,
  .plan-tip,
  .skip-link {
    display: none !important;
  }

  body { background: #fff !important; }

  .glass-panel,
  .soft-card { background: transparent !important; box-shadow: none !important; border: none !important; }

  #stedfastPlanSvg { width: 100% !important; height: auto !important; }
  #stedfastPlanSvg .bg { fill: #fff !important; }
  #stedfastPlanSvg text { fill: #000 !important; }
  #stedfastPlanSvg .i,
  #stedfastPlanSvg .divider { stroke: #000 !important; }
  #stedfastPlanSvg #hotspots .hs { fill: transparent !important; stroke: none !important; opacity: 1 !important; }
}

#infoChips:empty{ display:none; }

#infoChips{ margin-bottom:.75rem; }

#infoTitle{ margin-bottom:.75rem !important; }

#infoBody{ margin-bottom: 1rem !important; }

#infoKvs .info-grid{ display:block; }

#infoKvs .info-kv{
  display:flex;
  justify-content:space-between;
  gap: 1rem;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
}

#infoKvs .info-kv__label{
  font-size: .92rem;
  color: rgba(244,248,255,.72);
}

#infoKvs .info-kv__value{
  font-weight: 750;
  text-align: right;
  color: rgba(244,248,255,.92);
}

#infoNote{
  color: color-mix(in srgb, var(--text-color) 85%, transparent);
}

#infoNote .note-label{
  color: var(--text-color);
  font-weight: 700;
}

#campsitePlanSvg{
  width: 980px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#campsitePlanSvg .bg{ fill: var(--panel-bg); }

#campsitePlanSvg text{
  fill: var(--text-color);
  font: 600 18px Arial, sans-serif;
}

#campsitePlanSvg .i{
  fill: transparent;
  stroke: var(--text-color);
  stroke-width: 3;
}

#campsitePlanSvg .soft{
  stroke: color-mix(in srgb, var(--text-color) 55%, transparent);
  stroke-width: 2;
}

#campsitePlanSvg .split{
  stroke: color-mix(in srgb, var(--text-color) 55%, transparent);
  stroke-width: 3;
  stroke-dasharray: 10 10;
}

#campsitePlanSvg .status{
  fill: color-mix(in srgb, var(--text-color) 78%, transparent);
}

#campsitePlanSvg .camp-fill{
  fill: rgba(93,153,210,.35);
  transition: opacity .22s ease;
}

#campsitePlanSvg .sport-fill{
  fill: color-mix(in srgb, var(--text-color) 5%, transparent);
  transition: opacity .22s ease;
}

#campsitePlanSvg .photo-underlay{
  opacity: .78;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.35));
}

#campsitePlanSvg .photo-dim{
  fill: rgba(0,0,0,.12);
}

#campsitePlanSvg #hotspots .hs{
  fill: transparent;
  stroke: none;
  pointer-events: all;
  cursor: pointer;
  transition: fill .15s ease, stroke .15s ease, opacity .15s ease;
  outline: none;
}

#campsitePlanSvg #hotspots .hs:hover{
  fill: color-mix(in srgb, var(--text-color) 10%, transparent);
}

#campsitePlanSvg #hotspots .hs:focus{
  fill: color-mix(in srgb, var(--text-color) 12%, transparent);
  stroke: color-mix(in srgb, var(--text-color) 85%, transparent);
  stroke-width: 3;
}

#campsitePlanSvg #hotspots .hs.is-selected{
  stroke: color-mix(in srgb, var(--text-color) 85%, transparent);
  stroke-width: 3;
}

@media (max-width: 768px){
  #campsitePlanSvg text{ font-size: 28px; }
}

.plan-legend{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem 1rem;
  align-items:center;
  margin-top:.75rem;
  padding:.6rem .8rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel-bg) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--text-color) 14%, transparent);
}

.plan-legend .key{
  display:flex; align-items:center; gap:.5rem;
  color: color-mix(in srgb, var(--text-color) 82%, transparent);
  font-size: .92rem;
}

.plan-legend .swatch{
  width: 18px; height: 14px; border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
}

.plan-legend .swatch.camp{
  background: rgba(93,153,210,.22);
  position: relative;
  overflow:hidden;
}

.plan-legend .swatch.camp:after{
  content:"";
  position:absolute; inset:-6px;
  background: repeating-linear-gradient(135deg,
    color-mix(in srgb, var(--text-color) 24%, transparent) 0,
    color-mix(in srgb, var(--text-color) 24%, transparent) 2px,
    transparent 2px,
    transparent 8px
  );
  opacity:.25;
}

.plan-legend .swatch.sport{
  background: color-mix(in srgb, var(--text-color) 6%, transparent);
}

.plan-legend .swatch.line{
  background: transparent;
  border-style:dashed;
}

.plan-legend .bolt{
  width: 18px; height: 18px; display:inline-grid; place-items:center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text-color) 24%, transparent);
}

.plan-rules{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem .75rem;
  margin-top:.75rem;
}

.plan-rule{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.35rem .6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-bg) 86%, transparent);
  border: 1px solid color-mix(in srgb, var(--text-color) 14%, transparent);
  color: color-mix(in srgb, var(--text-color) 86%, transparent);
  font-size: .92rem;
}

.plan-tools{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem .6rem;
  align-items:center;
  margin-top:.8rem;
}

.plan-tools .form-check{
  margin: 0;
}

.plan-tools .form-check-input{
  cursor:pointer;
}

.plan-tools .form-check-label{
  cursor:pointer;
  user-select:none;
}

.plan-mini{
  font-size:.92rem;
}

.plan-kitchen{
  display:grid;
  gap:.8rem;
}

.plan-kitchen .grid-2{
  display:grid;
  gap:.65rem .8rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 520px){
  .plan-kitchen .grid-2{ grid-template-columns: 1fr; }
}

.plan-hint{
  border-left: 3px solid color-mix(in srgb, var(--text-color) 22%, transparent);
  padding-left: .75rem;
  margin-top: .35rem;
}

.plan-outcome{
  padding:.65rem .75rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel-bg) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--text-color) 14%, transparent);
}

.plan-outcome strong{ color: var(--text-color); }

.plan-outcome .muted{ color: color-mix(in srgb, var(--text-color) 74%, transparent); }

.plan-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.65rem;
}

.plan-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 120;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-bg) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--text-color) 16%, transparent);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events:none;
  transition: opacity .15s ease;
}

.plan-toast.is-on{ opacity: 1; }

@media print {
  header,
  footer,
  .col-lg-4,
  .btn,
  .badge-soft,
  .plan-tip,
  .skip-link {
    display: none !important;
  }

  body { background: #fff !important; }

  .glass-panel,
  .soft-card { background: transparent !important; box-shadow: none !important; border: none !important; }

  #campsitePlanSvg { width: 100% !important; height: auto !important; }
  #campsitePlanSvg .bg { fill: #fff !important; }
  #campsitePlanSvg text { fill: #000 !important; }
  #campsitePlanSvg .i,
  #campsitePlanSvg .soft,
  #campsitePlanSvg .split { stroke: #000 !important; }
  #campsitePlanSvg .camp-fill,
  #campsitePlanSvg .sport-fill { fill: transparent !important; }
  #campsitePlanSvg #hotspots .hs { fill: transparent !important; stroke: none !important; }
}

#campsitePlanSvg .sport-fill{
  fill: rgba(0,0,0,.18);
}

#campsitePlanSvg .camp-fill{
  fill: rgba(70,130,180,.48);
  stroke: rgba(0,0,0,.15);
  stroke-width: 2;
}

#campsitePlanSvg .camp-fill.is-active{
  stroke: rgba(17,24,39,.55);
  stroke-width: 4;
}

#campsitePlanSvg .sport-fill.is-active{
  stroke: rgba(17,24,39,.35);
  stroke-width: 2;
}

#campsitePlanSvg .camp-fill{
  fill: rgba(34,197,94,.35);
}

#campsitePlanSvg .sport-fill{
  fill: rgba(0,0,0,.22);
}

#campsitePlanSvg .camp-fill{
  fill: rgba(34,197,94,.55);
}

#campsitePlanSvg .sport-fill{
  fill: rgba(0,0,0,.35);
}

#campsitePlanSvg #baseDim{
  fill: rgba(0,0,0,.18);
}

#campsitePlanSvg #fieldImg{
  opacity: .92;
}

#campsitePlanSvg .camp-fill{
  fill: color-mix(in srgb, var(--accent, #22c55e) 58%, transparent);
  opacity: 1;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.20));
}

#campsitePlanSvg .sport-fill{
  fill: rgba(0,0,0,.38);
  opacity: 1;
}

#campsitePlanSvg #westZone,
#campsitePlanSvg #eastZone{
  fill: color-mix(in srgb, var(--accent, #22c55e) 42%, transparent);
  stroke: rgba(17,24,39,.55);
}

#campsitePlanSvg #westLane,
#campsitePlanSvg #eastLane{
  fill: rgba(239,68,68,.32);
}

#campsitePlanSvg .map-label{
  paint-order: stroke fill;
  stroke: rgba(255,255,255,.85);
  stroke-width: 10;
  stroke-linejoin: round;
  letter-spacing: .06em;
}

#campsitePlanSvg .plug{ color: rgba(17,24,39,.92); }

#campsitePlanSvg .i{
  fill: rgba(255,255,255,.92);
  stroke: rgba(17,24,39,.35);
  stroke-width: 2;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  
}

.sl-theme {
  --primary-rgb: 12 35 64;
  
  --hub-accent: #0c2340;
  
}

[data-theme="dark"] .sl-theme {
  --primary-rgb: 34 74 130;
  
  --hub-accent: #224a82;
}

.sl-theme .sl-accent {
  border-color: rgba(var(--primary-rgb) / 0.22) !important;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, .10),
    0 0 0 1px rgba(var(--primary-rgb) / 0.10) inset;
}

.sl-theme .badge-soft {
  border-color: rgba(var(--primary-rgb) / 0.22);
}

.home-intro {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .home-intro {
    margin-top: 16px;
  }
}

.hero-media-shell,
.activity-media-shell .media-frame {
  border-radius: 1rem;
  overflow: hidden;
}

.activity-media-shell .media-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  min-height: 280px;
}

.activity-media-shell img,
.activity-media-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-media-shell .media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.mini-feature-card,
.info-chip-box {
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.price-panel #activity-price {
  margin-bottom: 0.25rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.small-muted {
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .activity-media-shell .media-frame,
  .activity-media-shell .media-fallback {
    min-height: 220px;
  }
}

.activity-switches {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 992px) {
  .activity-switches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.activity-switch {
  appearance: none;
  width: 100%;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 1rem 1rem 0.95rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.18s ease;
  cursor: pointer;
  color: inherit;
}

.activity-switch:hover,
.activity-switch:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(37, 99, 235, 0.28);
}

.activity-switch.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(37, 99, 235, 0.42);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.09);
  box-shadow:
    0 16px 34px rgba(30, 64, 175, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.activity-switches:hover .activity-switch {
  transform: scale(0.96);
  opacity: 0.88;
}

.activity-switches:hover .activity-switch:hover {
  transform: scale(1.06);
  opacity: 1;
}

.activity-switch--archery:not(.btn-glass--primary) {
  border-color: rgba(39, 110, 241, .28);
}

.activity-switch--laser-tag:not(.btn-glass--primary) {
  border-color: rgba(140, 82, 255, .28);
}

.activity-switch--trim-trail:not(.btn-glass--primary) {
  border-color: rgba(33, 153, 84, .28);
}

.walk-selector {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--text-color) 12%, transparent);
  border-left: 5px solid var(--walk-accent, rgba(255, 255, 255, 0.2));
  background: var(--panel-bg);
  color: var(--text-color);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: 0.2s ease;
  cursor: pointer;
}

.walk-selector:hover,
.walk-selector.is-active {
  background: color-mix(in srgb, var(--panel-bg) 94%, black 6%);
  border-color: color-mix(in srgb, var(--text-color) 18%, transparent);
  border-left-color: var(--walk-accent, rgba(255, 255, 255, 0.4));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.walk-selector,
.walk-selector p,
.walk-selector strong,
.walk-selector .small-muted,
.walk-selector .small,
.walk-selector i {
  color: var(--text-color) !important;
}

.walk-selector-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0 !important;
}

.walk-selector-heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.walk-selector-heading p {
  margin: 0 !important;
  line-height: 1.1;
}

.walk-selector p {
  margin: 0;
  font-size: .90rem;
}

.walk-selector h3 {
  margin: 0;
  font-size: 1.02rem;
}

.walk-selector-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.activity-row-divider {
  grid-column: 1 / -1;
  height: 2px;
  margin: 1.5rem 0;
  background: var(--text-color);
  border-radius: 999px;
}

.walk-colour-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 14px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.walk-detail-shell {
  min-height: 100%;
}

.walk-map-shell {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

#localWalkMap {
  width: 100%;
  min-height: 440px;
}

.map-caption {
  padding: .85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
}

.route-steps {
  display: grid;
  gap: 0.6rem;
}

.route-step-card {
  padding: 0.8rem 0.95rem;
}

.route-step-card strong {
  display: block;
  margin-bottom: 0;
  line-height: 1.45;
  font-size: 0.96rem;
}

.walk-print-summary {
  display: none;
}

.walk-card-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.centre-map-logo {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(20, 26, 44, .94);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.leaflet-container a {
  color: inherit;
}

.walk-print-panel {
  padding: 1rem 1.1rem;
}

.walk-selector.glow {
  box-shadow:
    0 0 0 2px var(--walk-accent),
    0 12px 28px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.25s ease;
}

.print-route-only [data-print-hide="route-only"] {
  display: none !important;
}

@media print {

  .theme-overlay,
  .skip-link,
  #site-nav,
  #site-footer,
  .print-hide,
  .explore-further-section {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  body * {
    visibility: hidden !important;
  }

  #selectedWalkPanel,
  #selectedWalkPanel * {
    visibility: visible !important;
  }

  #selectedWalkPanel {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  #selectedWalkPanel .row {
    display: block !important;
  }

  #selectedWalkPanel [class*="col-"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .glass-panel,
  .soft-card,
  .leader-note,
  .walk-support-card,
  .walk-note-box,
  .route-step-card,
  .walk-print-panel,
  .walk-map-shell {
    background: #fff !important;
    color: #000 !important;
    border-color: #cfcfcf !important;
    box-shadow: none !important;
  }

  .walk-print-summary {
    display: block !important;
    margin-bottom: 1.25rem;
  }

  #localWalkMap {
    min-height: 360px !important;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }
}

.activity-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.activity-spec-card {
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.activity-spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.activity-spec-value {
  font-size: 0.96rem;
  line-height: 1.45;
}

.activity-media-shell,
.activity-media-column .media-frame {
  max-height: 240px;
}

.activity-media-column .media-frame,
.activity-media-shell img,
.activity-media-shell video {
  height: 240px;
}

.activity-media-shell img,
.activity-media-shell video {
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .activity-media-shell,
  .activity-media-column .media-frame,
  .activity-media-shell img,
  .activity-media-shell video {
    height: 220px;
    max-height: 220px;
  }
}

.activity-media-column::before {
  content: "";
  position: absolute;
  inset: 12px -10px -12px -10px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 20%,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0) 60%);
  z-index: -1;
}

.price-note-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.price-note-list {
  margin: 0;
  padding-left: 1rem;
}

.price-note-list li {
  margin-bottom: 0.2rem;
  line-height: 1.45;
}

.activity-price-value {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
}

.activity-panel-divider {
  margin: 1.4rem 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.activity-next-step {
  padding-top: .4rem;
}

.activity-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 1100;
  padding: 0 1rem;
  pointer-events: none;
}

.sticky-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform: translateY(16px);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
  pointer-events: auto;
}

.sticky-cta__text {
  min-width: 0;
  flex: 1 1 auto;
}

.sticky-cta__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .sticky-cta {
    bottom: .75rem;
    padding: 0 .75rem;
  }

  .sticky-cta__inner {
    padding: .65rem .7rem;
    gap: .75rem;
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-cta__sub {
    display: none;
  }

  .sticky-cta__actions {
    width: 100%;
  }

  .sticky-cta__actions .btn {
    flex: 1 1 auto;
  }
}

/* #church-filters sizing rules moved to controls.css (walk-selector system) */

.pill-row,
.walk-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.walk-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.walk-meta-pill i {
  flex: 0 0 auto;
  font-size: 0.88rem;
}

.resource-hero .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.resource-hero .pill-row .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.resource-hero .pill-row .pill i {
  flex: 0 0 auto;
  font-size: 0.88rem;
}

.leader-checklist {
  display: grid;
  gap: 0.85rem;
}

.leader-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.leader-check-item i {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

#selectedWalkPanel .walk-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

#selectedWalkPanel .walk-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

#selectedWalkPanel .walk-meta-pill i {
  flex: 0 0 auto;
  font-size: 0.88rem;
}

@media (max-width: 767.98px) {

  .resource-hero .pill-row,
  #selectedWalkPanel .walk-meta-row {
    gap: 0.5rem;
  }

  .resource-hero .pill-row .pill,
  #selectedWalkPanel .walk-meta-pill {
    font-size: 0.88rem;
    padding: 0.42rem 0.72rem;
  }

  .leader-check-item {
    padding: 0.8rem 0.9rem;
    gap: 0.7rem;
  }
}

:root {
    --quiz-bg-strong: rgba(8, 15, 35, 0.82);
    --quiz-bg-soft: rgba(255, 255, 255, 0.1);
    --quiz-border: rgba(255, 255, 255, 0.18);
    --quiz-shadow: 0 24px 60px rgba(4, 10, 30, 0.35);
    --quiz-text-soft: rgba(255, 255, 255, 0.76);
    --quiz-accent: #7dd3fc;
    --quiz-accent-2: #c084fc;
    --quiz-success: #86efac;
    --quiz-danger: #fca5a5;
    --quiz-warning: #fde68a;
}

body {
    overflow-x: hidden;
}

body.quiz-mode header,
body.quiz-mode #site-footer,
body.quiz-mode #quiz-explore-further {
    display: none !important;
}

#main-content {
    position: relative;
    z-index: 2;
}

.small-muted {
    color: var(--quiz-text-soft);
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--quiz-accent);
}

.quiz-intro-splash {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: grid;
    place-items: center;
    padding: 2rem;
    background:
        radial-gradient(circle at top, rgba(125, 211, 252, 0.2), transparent 35%),
        radial-gradient(circle at bottom, rgba(192, 132, 252, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(7, 13, 28, 0.98), rgba(7, 13, 28, 0.92));
    animation: quizSplashFade 4.4s ease forwards;
    pointer-events: none;
}

.quiz-intro-splash__inner {
    text-align: center;
    animation: quizSplashScale 4s ease forwards;
}

.quiz-intro-splash__logo {
    width: min(280px, 62vw);
    max-width: 100%;
    filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.36));
    margin-bottom: 1.2rem;
}

.quiz-intro-splash__title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}

.quiz-intro-splash__sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quiz-question-media {
    width: 100%;
}

.quiz-question-image {
    display: block;
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 30px rgba(4, 10, 30, 0.18);
}

@keyframes quizSplashFade {
    0%, 72% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes quizSplashScale {
    0% {
        transform: scale(0.96);
        opacity: 0;
    }
    16%, 70% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.04);
        opacity: 0;
    }
}

.quiz-host-guide__hero {
    max-width: 780px;
}

.quiz-host-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.quiz-guide-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.14);
    min-height: 100%;
}

.quiz-guide-card__step {
    display: inline-grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: #07131f;
    background: linear-gradient(135deg, #7dd3fc, #c084fc);
}

.quiz-host-guide-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.quiz-selection-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(125, 211, 252, 0.14);
    border: 1px solid rgba(125, 211, 252, 0.28);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

.quiz-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.quiz-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    text-align: left;
    padding: 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    color: #fff;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.quiz-category-card:hover,
.quiz-category-card:focus {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 28px rgba(4, 10, 30, 0.22);
}

.quiz-category-card.is-selected {
    border-color: rgba(125, 211, 252, 0.55);
    background:
        linear-gradient(180deg, rgba(125, 211, 252, 0.22), rgba(192, 132, 252, 0.12)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(30, 70, 120, 0.22);
}

.quiz-category-card.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.quiz-category-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quiz-category-card__title {
    font-size: 1.08rem;
    font-weight: 800;
}

.quiz-category-card__desc {
    color: var(--quiz-text-soft);
    font-size: 0.94rem;
    line-height: 1.45;
}

.quiz-category-card__status {
    margin-top: auto;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--quiz-warning);
}

.quiz-category-card.is-selected .quiz-category-card__status {
    color: var(--quiz-success);
}

.quiz-rounds-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.quiz-round-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.78rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.quiz-round-pill__number {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(192, 132, 252, 0.95));
    color: #07131f;
    font-weight: 800;
    font-size: 0.84rem;
}

.team-name-input.form-control {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.team-name-input.form-control::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.team-name-input.form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(125, 211, 252, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(125, 211, 252, 0.16);
}

.quiz-play-main {
    min-height: 100%;
}

.quiz-mini-stat {
    padding: 0.75rem 0.95rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: var(--quiz-text-soft);
}

.quiz-mini-stat strong {
    color: #fff;
    margin-left: 0.35rem;
}

.quiz-question {
    font-size: clamp(1.6rem, 2.6vw, 2.45rem);
    line-height: 1.2;
    font-weight: 800;
    max-width: 18ch;
}

.quiz-answers {
    display: grid;
    gap: 1rem;
}

.quiz-answer-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
    font-weight: 700;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.quiz-answer-letter {
    display: inline-grid;
    place-items: center;
    min-width: 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
}

.quiz-answer-option.revealed-correct {
    border-color: rgba(134, 239, 172, 0.6);
    background: rgba(134, 239, 172, 0.15);
    box-shadow: 0 16px 28px rgba(32, 92, 52, 0.16);
}

.quiz-answer-option.revealed-wrong {
    border-color: rgba(252, 165, 165, 0.4);
    background: rgba(252, 165, 165, 0.1);
}

.team-choice-list {
    display: grid;
    gap: 0.9rem;
}

.team-choice-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.85rem;
    align-items: center;
}

.team-choice-name {
    font-weight: 700;
    line-height: 1.2;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-choice-buttons {
    display: grid;
    grid-template-columns: repeat(4, 48px);
    gap: 0.55rem;
    justify-content: end;
}

.team-choice-buttons[data-answer-count="2"] {
    grid-template-columns: repeat(2, 48px);
}

.team-choice-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 800;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.team-choice-btn:hover,
.team-choice-btn:focus {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.team-choice-btn.is-selected {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.34), rgba(192, 132, 252, 0.24));
    border-color: rgba(125, 211, 252, 0.45);
}

.scoreboard-card,
.team-answer-card {
    position: static;
    top: auto;
}

.col-xl-4 .team-answer-card {
    margin-top: 1rem;
}

.team-answer-card .quiz-selection-pill {
    margin-top: 0.25rem;
}

.team-answer-card .team-choice-list {
    margin-top: 0.75rem;
}

.scoreboard-list {
    display: grid;
    gap: 0.8rem;
}

.scoreboard-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scoreboard-row.leading-team {
    border-color: rgba(125, 211, 252, 0.42);
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.16), rgba(192, 132, 252, 0.1));
}

.scoreboard-rank {
    display: inline-grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
}

.scoreboard-name {
    font-weight: 700;
    min-width: 0;
    overflow-wrap: anywhere;
}

.scoreboard-score {
    font-size: 1.25rem;
    font-weight: 800;
}

.quiz-celebration-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(125, 211, 252, 0.18), transparent 40%),
        radial-gradient(circle at bottom, rgba(192, 132, 252, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        rgba(10, 18, 36, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-celebration-fireworks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.quiz-firework {
    --size: 10px;
    position: absolute;
    left: var(--x);
    bottom: -20px;
    width: var(--size);
    height: var(--size);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(125,211,252,0.95) 45%, rgba(192,132,252,0.9) 100%);
    box-shadow:
        0 0 10px rgba(255,255,255,0.9),
        0 0 24px rgba(125,211,252,0.6),
        0 0 36px rgba(192,132,252,0.4);
    animation: fireworkRise var(--duration) ease-out var(--delay) forwards;
    opacity: 0;
}

@keyframes fireworkRise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.35);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    55% {
        transform: translate3d(var(--drift), calc(var(--rise) * -1), 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate3d(calc(var(--drift) * 1.15), calc(var(--rise) * -1.15), 0) scale(0.15);
        opacity: 0;
    }
}

.quiz-history-list {
    display: grid;
    gap: 0.85rem;
}

.quiz-history-item {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .quiz-host-guide-grid,
    .quiz-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quiz-host-guide-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .quiz-host-guide-grid,
    .quiz-category-grid {
        grid-template-columns: 1fr;
    }

    .team-choice-row {
        grid-template-columns: 1fr;
    }

    .team-choice-buttons {
        justify-content: start;
    }

    .quiz-question {
        max-width: none;
    }

    .quiz-celebration-panel {
        min-height: 210px;
        padding: 1.5rem;
    }
}

.quiz-answer-option {
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.quiz-answer-option.revealed-correct {
    border-color: rgba(110, 255, 180, 0.58);
    background:
        linear-gradient(135deg, rgba(70, 210, 150, 0.34), rgba(70, 210, 150, 0.18));
    box-shadow:
        0 0 0 1px rgba(110, 255, 180, 0.18) inset,
        0 12px 28px rgba(20, 90, 70, 0.22);
}

.quiz-answer-option.revealed-wrong {
    border-color: rgba(255, 135, 135, 0.42);
    background:
        linear-gradient(135deg, rgba(255, 110, 110, 0.18), rgba(255, 110, 110, 0.08));
    opacity: 0.92;
}

.team-choice-btn.is-selected {
    color: #fff;
    border-color: rgba(120, 190, 255, 0.62);
    background:
        linear-gradient(135deg, rgba(90, 170, 255, 0.92), rgba(136, 105, 255, 0.88));
    box-shadow: 0 10px 22px rgba(52, 96, 190, 0.28);
}

.scoreboard-row.leading-team {
    border-color: rgba(255, 214, 92, 0.46);
    background:
        linear-gradient(135deg, rgba(255, 214, 92, 0.16), rgba(255, 180, 90, 0.08)),
        rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 0 1px rgba(255, 214, 92, 0.14) inset,
        0 12px 28px rgba(0, 0, 0, 0.14);
}

#celebration-winner {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
}

#celebration-subtitle {
    font-size: 1rem;
    opacity: 0.85;
}

.quiz-celebration-panel {
    text-align: center;
    padding: 2.5rem 2rem;
}

.quiz-celebration-panel .section-eyebrow {
    letter-spacing: 0.16em;
}
/* === Extracted page-scoped styles === */

/* ===== bedding-list-campsite ===== */

body[data-page="bedding-list-campsite"] {
  padding-bottom: 90px;
}
/* ===== bedding-list-stedfast ===== */
/* ── Stedfast theme (blue, matching stedfast.html) ──── */

body[data-page="bedding-list-stedfast"] .stedfast-theme {
  --primary-rgb: 24 78 114;
        --hub-accent: #184e72;
}

body[data-page="bedding-list-stedfast"] [data-theme="dark"] .stedfast-theme {
  --primary-rgb: 56 122 171;
        --hub-accent: #387aab;
}

/* ── Accent-stripe card ─────────────────────────────── */

body[data-page="bedding-list-stedfast"] .sl-card {
  position: relative;
        overflow: hidden;
}

body[data-page="bedding-list-stedfast"] .sl-card::before {
  content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(var(--primary-rgb)) 0%, rgba(var(--primary-rgb)/.4) 100%);
        border-radius: 6px 6px 0 0;
}

/* ── Eyebrow ────────────────────────────────────────── */

body[data-page="bedding-list-stedfast"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgb(var(--primary-rgb));
}

body[data-page="bedding-list-stedfast"] .small-muted {
  font-size: 0.85rem; color: var(--muted);
}

body[data-page="bedding-list-stedfast"] .section-gap {
  margin-bottom: 1.75rem;
}

/* ── Status pills ───────────────────────────────────── */

body[data-page="bedding-list-stedfast"] .status-strip {
  display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.6rem;
}

body[data-page="bedding-list-stedfast"] .counter-pill, body[data-page="bedding-list-stedfast"] .autosave-pill, body[data-page="bedding-list-stedfast"] .warn-pill {
  display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
}

body[data-page="bedding-list-stedfast"] .counter-pill {
  color: rgb(var(--primary-rgb));
}

body[data-page="bedding-list-stedfast"] .warn-pill {
  display: none; color: var(--muted);
}

body[data-page="bedding-list-stedfast"] .warn-pill.is-on {
  display: inline-flex;
}

body[data-page="bedding-list-stedfast"] .warn-pill.all-done {
  color: rgb(var(--primary-rgb));
}

body[data-page="bedding-list-stedfast"] .dot {
  width: 8px; height: 8px;
        border-radius: 50%;
        background: var(--muted);
        opacity: 0.4;
        flex-shrink: 0;
        transition: background 0.3s ease, opacity 0.3s ease;
}

body[data-page="bedding-list-stedfast"] .dot.on {
  background: rgb(var(--primary-rgb)); opacity: 1;
}

/* ── Room cards ─────────────────────────────────────── */

body[data-page="bedding-list-stedfast"] .room-card {
  padding: 1rem;
        border-radius: 1rem;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="bedding-list-stedfast"] .room-card.is-partial {
  border-color: rgba(var(--primary-rgb)/.4);
}

body[data-page="bedding-list-stedfast"] .room-card.is-full {
  border-color: rgb(var(--primary-rgb));
        box-shadow: 0 0 0 2px rgba(var(--primary-rgb)/.12);
}

body[data-page="bedding-list-stedfast"] .room-head {
  display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
        gap: 0.4rem;
}

body[data-page="bedding-list-stedfast"] .room-title {
  font-weight: 700; font-size: 0.95rem; color: var(--text-color);
}

body[data-page="bedding-list-stedfast"] .room-sub {
  font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem;
}

body[data-page="bedding-list-stedfast"] .room-status {
  display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.75rem;
        color: var(--muted);
        white-space: nowrap;
}

body[data-page="bedding-list-stedfast"] .status-icon {
  font-size: 0.7rem; color: rgb(var(--primary-rgb));
}

/* ── Bed inputs ─────────────────────────────────────── */

body[data-page="bedding-list-stedfast"] .bed-input {
  width: 100%;
        padding: 0.45rem 0.7rem;
        border-radius: 0.6rem;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        color: var(--text-color);
        font-size: 0.85rem;
        font-family: var(--font-body);
        transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body[data-page="bedding-list-stedfast"] .bed-input:focus {
  outline: none;
        border-color: rgb(var(--primary-rgb));
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb)/.15);
}

body[data-page="bedding-list-stedfast"] .bed-input::placeholder {
  opacity: 0.45;
}

/* ── Section title / badge ──────────────────────────── */

body[data-page="bedding-list-stedfast"] .section-title {
  display: flex;
        align-items: center;
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
}

body[data-page="bedding-list-stedfast"] .badge-soft {
  display: inline-flex;
        align-items: center;
        padding: 0.22rem 0.65rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 600;
        border: 1px solid rgba(var(--primary-rgb)/.28);
        color: rgb(var(--primary-rgb));
        background: rgba(var(--primary-rgb)/.07);
}

/* ── Note pill ──────────────────────────────────────── */

body[data-page="bedding-list-stedfast"] .note-pill {
  display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        border-radius: 0.75rem;
        padding: 0.65rem 0.9rem;
        font-size: 0.83rem;
        color: var(--muted);
}

body[data-page="bedding-list-stedfast"] .note-pill i {
  color: rgb(var(--primary-rgb)); margin-top: 0.1rem; flex-shrink: 0;
}

/* ── Sticky bar ─────────────────────────────────────── */

body[data-page="bedding-list-stedfast"] .sticky-bar {
  position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 120;
        padding: 0.75rem 1rem;
        pointer-events: none;
}

body[data-page="bedding-list-stedfast"] .sticky-bar .inner {
  max-width: 900px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
        padding: 0.7rem 1.25rem;
        border-radius: 1rem;
        pointer-events: auto;
}

body[data-page="bedding-list-stedfast"] .sticky-counter {
  font-weight: 700;
        font-size: 0.9rem;
        color: rgb(var(--primary-rgb));
        white-space: nowrap;
}

body[data-page="bedding-list-stedfast"] .sticky-actions {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}

/* ── Print ──────────────────────────────────────────── */

@media print {
@page  {

  }

  body[data-page="bedding-list-stedfast"] html, body[data-page="bedding-list-stedfast"] body {
    background: #fff !important; color: #000 !important;
  }

  body[data-page="bedding-list-stedfast"] body {
    padding: 0 !important;
  }

  body[data-page="bedding-list-stedfast"] .theme-overlay, body[data-page="bedding-list-stedfast"] .skip-link, body[data-page="bedding-list-stedfast"] header, body[data-page="bedding-list-stedfast"] footer, body[data-page="bedding-list-stedfast"] .sticky-bar, body[data-page="bedding-list-stedfast"] .print-hide {
    display: none !important;
  }

  body[data-page="bedding-list-stedfast"] #main-content, body[data-page="bedding-list-stedfast"] #main-content * {
    visibility: visible !important; opacity: 1 !important; color: #000 !important;
            -webkit-text-fill-color: #000 !important; text-shadow: none !important;
            box-shadow: none !important; filter: none !important; transform: none !important;
  }

  body[data-page="bedding-list-stedfast"] .glass-panel, body[data-page="bedding-list-stedfast"] .soft-card, body[data-page="bedding-list-stedfast"] .hub-card, body[data-page="bedding-list-stedfast"] .sl-card, body[data-page="bedding-list-stedfast"] .room-card {
    background: #fff !important; border: 1px solid #cfcfcf !important;
            box-shadow: none !important; backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            break-inside: avoid; page-break-inside: avoid;
  }

  body[data-page="bedding-list-stedfast"] .sl-card::before {
    display: none !important;
  }

  body[data-page="bedding-list-stedfast"] .bed-input, body[data-page="bedding-list-stedfast"] .form-control, body[data-page="bedding-list-stedfast"] input {
    background: #fff !important; color: #000 !important;
            -webkit-text-fill-color: #000 !important; border: 1px solid #999 !important; box-shadow: none !important;
  }

  body[data-page="bedding-list-stedfast"] a, body[data-page="bedding-list-stedfast"] a:visited {
    color: #000 !important; text-decoration: none !important;
  }

  body[data-page="bedding-list-stedfast"] a[href]::after {
    content: none !important;
  }
}


/* ===== bedding-listCH ===== */
/* ── Centenary theme ────────────────────────────────── */

body[data-page="bedding-listCH"] .centenary-theme {
  --primary-rgb: 107 30 43;
        --hub-accent: #6b1e2b;
}

body[data-page="bedding-listCH"] [data-theme="dark"] .centenary-theme {
  --primary-rgb: 159 18 57;
        --hub-accent: #9f1239;
}

/* ── Accent-stripe card (matches centenary.html) ────── */

body[data-page="bedding-listCH"] .cent-card {
  position: relative;
        overflow: hidden;
}

body[data-page="bedding-listCH"] .cent-card::before {
  content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(var(--primary-rgb)) 0%, rgba(var(--primary-rgb)/.45) 100%);
        border-radius: 6px 6px 0 0;
}

/* ── Eyebrow ────────────────────────────────────────── */

body[data-page="bedding-listCH"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgb(var(--primary-rgb));
}

body[data-page="bedding-listCH"] .small-muted {
  font-size: 0.85rem;
        color: var(--muted);
}

body[data-page="bedding-listCH"] .section-gap {
  margin-bottom: 1.75rem;
}

/* ── Status pills (counter / autosave / warn) ───────── */

body[data-page="bedding-listCH"] .status-strip {
  display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.6rem;
}

body[data-page="bedding-listCH"] .counter-pill, body[data-page="bedding-listCH"] .autosave-pill, body[data-page="bedding-listCH"] .warn-pill {
  display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
}

body[data-page="bedding-listCH"] .counter-pill {
  color: rgb(var(--primary-rgb));
}

body[data-page="bedding-listCH"] .warn-pill {
  display: none;
        color: var(--muted);
}

body[data-page="bedding-listCH"] .warn-pill.is-on {
  display: inline-flex;
}

body[data-page="bedding-listCH"] .warn-pill.all-done {
  color: rgb(var(--primary-rgb));
}

body[data-page="bedding-listCH"] .dot {
  width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--muted);
        opacity: 0.4;
        flex-shrink: 0;
        transition: background 0.3s ease, opacity 0.3s ease;
}

body[data-page="bedding-listCH"] .dot.on {
  background: rgb(var(--primary-rgb));
        opacity: 1;
}

/* ── Room cards ─────────────────────────────────────── */

body[data-page="bedding-listCH"] .room-card {
  padding: 1rem;
        border-radius: 1rem;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="bedding-listCH"] .room-card.is-partial {
  border-color: rgba(var(--primary-rgb) / 0.4);
}

body[data-page="bedding-listCH"] .room-card.is-full {
  border-color: rgb(var(--primary-rgb));
        box-shadow: 0 0 0 2px rgba(var(--primary-rgb) / 0.12);
}

body[data-page="bedding-listCH"] .room-head {
  display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
        gap: 0.4rem;
}

body[data-page="bedding-listCH"] .room-title {
  font-weight: 700;
        font-size: 0.95rem;
        color: var(--text-color);
}

body[data-page="bedding-listCH"] .room-sub {
  font-size: 0.75rem;
        color: var(--muted);
        margin-top: 0.1rem;
}

body[data-page="bedding-listCH"] .room-status {
  display: flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.75rem;
        color: var(--muted);
        white-space: nowrap;
}

body[data-page="bedding-listCH"] .status-icon {
  font-size: 0.7rem;
        color: rgb(var(--primary-rgb));
}

/* ── Bed inputs ─────────────────────────────────────── */

body[data-page="bedding-listCH"] .bed-input {
  width: 100%;
        padding: 0.45rem 0.7rem;
        border-radius: 0.6rem;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        color: var(--text-color);
        font-size: 0.85rem;
        font-family: var(--font-body);
        transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body[data-page="bedding-listCH"] .bed-input:focus {
  outline: none;
        border-color: rgb(var(--primary-rgb));
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb) / 0.15);
}

body[data-page="bedding-listCH"] .bed-input::placeholder {
  opacity: 0.45;
}

/* ── Section heading row ────────────────────────────── */

body[data-page="bedding-listCH"] .section-title {
  display: flex;
        align-items: center;
        gap: 0.6rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
}

body[data-page="bedding-listCH"] .badge-soft {
  display: inline-flex;
        align-items: center;
        padding: 0.22rem 0.65rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 600;
        border: 1px solid rgba(var(--primary-rgb) / 0.28);
        color: rgb(var(--primary-rgb));
        background: rgba(var(--primary-rgb) / 0.07);
}

/* ── Note pill ──────────────────────────────────────── */

body[data-page="bedding-listCH"] .note-pill {
  display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        border-radius: 0.75rem;
        padding: 0.65rem 0.9rem;
        font-size: 0.83rem;
        color: var(--muted);
}

body[data-page="bedding-listCH"] .note-pill i {
  color: rgb(var(--primary-rgb));
        margin-top: 0.1rem;
        flex-shrink: 0;
}

/* ── Callout banner ─────────────────────────────────── */

body[data-page="bedding-listCH"] .callout-primary {
  background: rgb(var(--primary-rgb));
        color: #fff;
        border-radius: 1rem;
        padding: 1.5rem 1.75rem;
        position: relative;
        overflow: hidden;
}

body[data-page="bedding-listCH"] .callout-primary::after {
  content: "";
        position: absolute;
        top: -40%;
        right: -5%;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        pointer-events: none;
}

body[data-page="bedding-listCH"] .callout-primary h2 {
  color: #fff;
}

body[data-page="bedding-listCH"] .callout-primary p {
  color: rgba(255, 255, 255, .88);
        margin: 0;
}

body[data-page="bedding-listCH"] .callout-primary .btn-glass {
  border-color: rgba(255, 255, 255, 0.55) !important;
        color: #fff !important;
}

/* ── Sticky action bar ──────────────────────────────── */

body[data-page="bedding-listCH"] .sticky-bar {
  position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 120;
        padding: 0.75rem 1rem;
        pointer-events: none;
        transform: translateY(0);
}

body[data-page="bedding-listCH"] .sticky-bar .inner {
  max-width: 900px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
        padding: 0.7rem 1.25rem;
        border-radius: 1rem;
        pointer-events: auto;
}

body[data-page="bedding-listCH"] .sticky-counter {
  font-weight: 700;
        font-size: 0.9rem;
        color: rgb(var(--primary-rgb));
        white-space: nowrap;
}

body[data-page="bedding-listCH"] .sticky-actions {
  display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
}

/* ── Print styles ───────────────────────────────────── */

@media print {
@page  {

  }

  body[data-page="bedding-listCH"] html, body[data-page="bedding-listCH"] body {
    background: #fff !important;
            color: #000 !important;
  }

  body[data-page="bedding-listCH"] body {
    padding: 0 !important;
  }

  body[data-page="bedding-listCH"] .theme-overlay, body[data-page="bedding-listCH"] .skip-link, body[data-page="bedding-listCH"] header, body[data-page="bedding-listCH"] footer, body[data-page="bedding-listCH"] .sticky-bar, body[data-page="bedding-listCH"] .print-hide {
    display: none !important;
  }

  body[data-page="bedding-listCH"] #main-content, body[data-page="bedding-listCH"] #main-content * {
    visibility: visible !important;
            opacity: 1 !important;
            color: #000 !important;
            -webkit-text-fill-color: #000 !important;
            text-shadow: none !important;
            box-shadow: none !important;
            filter: none !important;
            transform: none !important;
  }

  body[data-page="bedding-listCH"] .glass-panel, body[data-page="bedding-listCH"] .soft-card, body[data-page="bedding-listCH"] .hub-card, body[data-page="bedding-listCH"] .cent-card, body[data-page="bedding-listCH"] .room-card {
    background: #fff !important;
            border: 1px solid #cfcfcf !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            break-inside: avoid;
            page-break-inside: avoid;
  }

  body[data-page="bedding-listCH"] .cent-card::before {
    display: none !important;
  }

  body[data-page="bedding-listCH"] .bed-input, body[data-page="bedding-listCH"] .form-control, body[data-page="bedding-listCH"] input {
    background: #fff !important;
            color: #000 !important;
            -webkit-text-fill-color: #000 !important;
            border: 1px solid #999 !important;
            box-shadow: none !important;
  }

  body[data-page="bedding-listCH"] a, body[data-page="bedding-listCH"] a:visited {
    color: #000 !important;
            text-decoration: none !important;
  }

  body[data-page="bedding-listCH"] a[href]::after {
    content: none !important;
  }
}


/* ===== campPlan ===== */
/* ===========================
       Campsite Planner (namespaced)
       =========================== */

body[data-page="campPlan"] .cp-page {
  max-width: 1200px;
        margin-inline: auto;
}

body[data-page="campPlan"] .cp-heroRules {
  display: flex;
        gap: .5rem;
        flex-wrap: wrap;
        align-items: center;
        margin-top: .25rem;
}

body[data-page="campPlan"] .cp-rule {
  display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .35rem .65rem;
        border-radius: 999px;
        border: 1px solid rgba(0, 0, 0, .10);
        background: rgba(255, 255, 255, .38);
        font-weight: 700;
        font-size: .9rem;
}

body[data-page="campPlan"] [data-theme="dark"] .cp-rule {
  border-color: rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .06);
}

/* Map canvas */

body[data-page="campPlan"] .cp-planner {
  position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, .12);
        background-image: url("../assets/media/map-campsite-overlay.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, .06);
        cursor: crosshair;
}

body[data-page="campPlan"] [data-theme="dark"] .cp-planner {
  border-color: rgba(255, 255, 255, .12);
}

body[data-page="campPlan"] .cp-layer {
  position: absolute;
        inset: 0;
}

body[data-page="campPlan"] .cp-pins {
  z-index: 5;
}

body[data-page="campPlan"] .cp-markers {
  z-index: 4;
        pointer-events: none;
}

body[data-page="campPlan"] .cp-dim {
  z-index: 2;
        pointer-events: none;
}

body[data-page="campPlan"] .cp-ui {
  z-index: 8;
        pointer-events: none;
}

body[data-page="campPlan"] .cp-ui>* {
  pointer-events: auto;
}

/* HUD */

body[data-page="campPlan"] .cp-hud {
  position: absolute;
        left: 12px;
        top: 12px;
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
        align-items: center;
}

body[data-page="campPlan"] .cp-chipBtn {
  border-radius: 12px !important;
        background: rgba(0, 0, 0, .28) !important;
        border: 1px solid rgba(255, 255, 255, .18) !important;
        color: rgba(255, 255, 255, .94) !important;
        backdrop-filter: blur(10px);
}

body[data-page="campPlan"] .cp-chipBtn:hover {
  background: rgba(0, 0, 0, .36) !important;
}

body[data-page="campPlan"] .cp-modePills {
  display: inline-flex;
        gap: .25rem;
        padding: .25rem;
        border-radius: 12px;
        background: rgba(0, 0, 0, .22);
        border: 1px solid rgba(255, 255, 255, .16);
        backdrop-filter: blur(10px);
}

body[data-page="campPlan"] .cp-modePills .btn {
  border-radius: 10px !important;
        border: 1px solid transparent !important;
}

body[data-page="campPlan"] .cp-modePills .btn.is-on {
  background: rgba(255, 255, 255, .90) !important;
        color: rgba(0, 0, 0, .90) !important;
        border-color: rgba(0, 0, 0, .10) !important;
}

body[data-page="campPlan"] .cp-counter {
  position: absolute;
        right: 12px;
        top: 12px;
        padding: .45rem .7rem;
        border-radius: 12px;
        background: rgba(0, 0, 0, .32);
        border: 1px solid rgba(255, 255, 255, .18);
        color: rgba(255, 255, 255, .94);
        backdrop-filter: blur(10px);
        font-weight: 700;
        display: flex;
        gap: .55rem;
        flex-wrap: wrap;
        align-items: center;
}

/* Pins */

body[data-page="campPlan"] .cp-pin {
  position: absolute;
        transform: translate(-50%, -100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: grab;
        user-select: none;
}

body[data-page="campPlan"] .cp-pin:active {
  cursor: grabbing;
}

body[data-page="campPlan"] .cp-halo {
  position: absolute;
        left: 50%;
        top: calc(100% - 10px);
        transform: translate(-50%, -50%);
        width: 68px;
        height: 68px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .16) 45%, rgba(255, 255, 255, 0) 72%);
        pointer-events: none;
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
}

body[data-page="campPlan"] .cp-halo::after {
  content: "";
        position: absolute;
        inset: 10px;
        border-radius: 999px;
        border: 2px solid rgba(255, 255, 255, .55);
        opacity: .7;
        animation: cpPinPulse 2.2s ease-in-out infinite;
}

@keyframes cpPinPulse {
body[data-page="campPlan"] 0%, body[data-page="campPlan"] 100% {
    transform: scale(1);
            opacity: .65;
  }

  body[data-page="campPlan"] 50% {
    transform: scale(1.18);
            opacity: .25;
  }
}

/* ── Pin icons ───────────────────────────────── */

/* Base — sleeping tent (small, red border) */
body[data-page="campPlan"] .cp-pinIcon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 8px solid rgba(220, 50, 50, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  font-size: 1.4rem;
  line-height: 1;
}

body[data-page="campPlan"] .cp-pinIcon svg {
  display: none;
}

/* Marquee (large, yellow border) */
body[data-page="campPlan"] .cp-pin--marquee .cp-pinIcon {
  width: 85px;
  height: 85px;
  border-radius: 10px;
  border: 8px solid rgba(217, 160, 0, 0.9);
  font-size: 2rem;
}

/* Facility tent (largest, navy border) */
body[data-page="campPlan"] .cp-pin--facility .cp-pinIcon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 8px solid rgba(34, 75, 142, 0.85);
  font-size: 2rem;
}
  body[data-page="campPlan"] .cp-halo::after {
    animation: none !important;
  }
}

/* Campsite (dark green) theme, mirroring centenary/stedfast pattern */

body[data-page="campPlan"] .campsite-theme {
  --primary-rgb: 16 73 53;
        /* deep green */
        --hub-accent: #104935;
}

body[data-page="campPlan"] [data-theme="dark"] .campsite-theme {
  --primary-rgb: 24 117 84;
        --hub-accent: #187554;
}

/* Hero image sizing to match other pages */

body[data-page="campPlan"] .camp-hero-img {
  width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 14px;
}

@media (min-width: 992px) {
body[data-page="campPlan"] .camp-hero-img {
    height: 300px;
  }
}

/* Subtle campsite hero background grid like other hubs */

body[data-page="campPlan"] .camp-hero {
  position: relative;
        overflow: hidden;
}

body[data-page="campPlan"] .camp-hero .hero-grid {
  position: absolute;
        inset: 0;
        background:
          radial-gradient(600px 220px at 15% 20%, rgba(16, 73, 53, .18), transparent 60%),
          radial-gradient(540px 220px at 85% 35%, rgba(16, 73, 53, .14), transparent 60%),
          linear-gradient(180deg, rgba(255, 255, 255, .0), rgba(255, 255, 255, .0));
        pointer-events: none;
}

body[data-page="campPlan"] [data-theme="dark"] .camp-hero .hero-grid {
  background:
          radial-gradient(600px 220px at 15% 20%, rgba(24, 117, 84, .20), transparent 60%),
          radial-gradient(540px 220px at 85% 35%, rgba(24, 117, 84, .16), transparent 60%);
}

/* Keep hero chip row compact */

body[data-page="campPlan"] .hero-chips {
  display: flex;
        flex-wrap: wrap;
        gap: .5rem;
}

body[data-page="campPlan"] .hero-chips .chip {
  display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .35rem .6rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .65);
        border: 1px solid rgba(0, 0, 0, .06);
        font-size: .85rem;
}

body[data-page="campPlan"] [data-theme="dark"] .hero-chips .chip {
  background: rgba(0, 0, 0, .22);
        border-color: rgba(255, 255, 255, .12);
}

/* Green accent line like centenary maroon rules */

body[data-page="campPlan"] .accent-rule {
  border: 1px solid rgba(var(--primary-rgb), .55);
}


/* ===== centPlan ===== */
/* ── Centenary theme ────────────────────────────────── */

body[data-page="centPlan"] .centenary-theme {
  --primary-rgb: 107 30 43;
        --hub-accent: #6b1e2b;
}

body[data-page="centPlan"] [data-theme="dark"] .centenary-theme {
  --primary-rgb: 159 18 57;
        --hub-accent: #9f1239;
}

/* ── Accent-stripe card ─────────────────────────────── */

body[data-page="centPlan"] .cent-card {
  position: relative;
        overflow: hidden;
}

body[data-page="centPlan"] .cent-card::before {
  content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(var(--primary-rgb)) 0%, rgba(var(--primary-rgb)/.45) 100%);
        border-radius: 6px 6px 0 0;
}

/* ── Eyebrow ────────────────────────────────────────── */

body[data-page="centPlan"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgb(var(--primary-rgb));
}

body[data-page="centPlan"] .small-muted {
  font-size: 0.85rem; color: var(--muted);
}

body[data-page="centPlan"] .section-gap {
  margin-bottom: 1.75rem;
}

/* ── Note pill ──────────────────────────────────────── */

body[data-page="centPlan"] .note-pill {
  display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        border-radius: 0.75rem;
        padding: 0.65rem 0.9rem;
        font-size: 0.83rem;
        color: var(--muted);
}

body[data-page="centPlan"] .note-pill i {
  color: rgb(var(--primary-rgb)); margin-top: 0.1rem; flex-shrink: 0;
}

/* ── Badge ──────────────────────────────────────────── */

body[data-page="centPlan"] .badge-soft {
  display: inline-flex;
        align-items: center;
        padding: 0.22rem 0.65rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 600;
        border: 1px solid rgba(var(--primary-rgb) / 0.28);
        color: rgb(var(--primary-rgb));
        background: rgba(var(--primary-rgb) / 0.07);
}

/* ── Capacity summary strip ─────────────────────────── */

body[data-page="centPlan"] .capacity-summary {
  display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-bottom: 0.5rem;
}

body[data-page="centPlan"] .capacity-summary span {
  display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        color: var(--text-color);
}

body[data-page="centPlan"] .capacity-summary span i {
  color: rgb(var(--primary-rgb));
}

/* ── Filter buttons ─────────────────────────────────── */

body[data-page="centPlan"] .filters {
  margin-bottom: 0.75rem;
}

body[data-page="centPlan"] .filters p {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0.4rem;
}

body[data-page="centPlan"] .filter-btn-row {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}

/* ── Plan legend ────────────────────────────────────── */

body[data-page="centPlan"] .plan-key {
  display: flex;
        flex-wrap: wrap;
        gap: 0.6rem 1.1rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        align-items: center;
}

body[data-page="centPlan"] .plan-key__item {
  display: flex; align-items: center; gap: 0.35rem;
}

body[data-page="centPlan"] .plan-key__swatch {
  width: 14px; height: 14px;
        border-radius: 3px;
        flex-shrink: 0;
        border: 1px solid rgba(0,0,0,.08);
}

body[data-page="centPlan"] .plan-key__sleep {
  background: #b3cce8;
}

body[data-page="centPlan"] .plan-key__leader {
  background: #c8e6b3;
}

body[data-page="centPlan"] .plan-key__facility {
  background: #f5dfa0;
}

body[data-page="centPlan"] .plan-key__hall {
  background: #e8b3b3;
}

/* ── SVG plan wrapper ───────────────────────────────── */

body[data-page="centPlan"] .plan-scroll {
  overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0.75rem;
}

body[data-page="centPlan"] #centenaryPlanSvg {
  display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
}

/* SVG styles */

body[data-page="centPlan"] #centenaryPlanSvg .bg {
  fill: var(--surface-bg, #fafafa);
}

body[data-page="centPlan"] #centenaryPlanSvg .corr {
  fill: var(--surface-border, #e8e8e8); stroke: rgba(0,0,0,.08); stroke-width: 1;
}

body[data-page="centPlan"] #centenaryPlanSvg .i {
  fill: var(--panel-bg, #fff); stroke: rgba(0,0,0,.12); stroke-width: 1.5;
}

body[data-page="centPlan"] #centenaryPlanSvg .s {
  fill: var(--text-color, #172033); font-family: var(--font-body, Poppins, sans-serif); font-size: 18px; font-weight: 600;
}

/* Hotspots */

body[data-page="centPlan"] #centenaryPlanSvg .hs {
  fill: transparent;
        cursor: pointer;
        transition: fill 0.15s ease;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs.sleep {
  --hs-color: #b3cce8;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs.leader {
  --hs-color: #c8e6b3;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs.facility {
  --hs-color: #f5dfa0;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs.hall {
  --hs-color: #e8b3b3;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs.is-filtered {
  fill: var(--hs-color); opacity: 0.55;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs:hover, body[data-page="centPlan"] #centenaryPlanSvg .hs.is-selected {
  fill: var(--hs-color); opacity: 0.85;
}

body[data-page="centPlan"] #centenaryPlanSvg .hs.dim {
  fill: transparent; opacity: 0.2;
}

/* ── Info card (right column) ───────────────────────── */

body[data-page="centPlan"] .info-panel {
  display: flex; flex-direction: column; height: 100%;
}

body[data-page="centPlan"] .info-media {
  margin-bottom: 0.75rem;
}

body[data-page="centPlan"] .info-media img {
  width: 100%;
        max-height: 180px;
        object-fit: cover;
        border-radius: 0.75rem;
        border: 1px solid var(--surface-border);
}

body[data-page="centPlan"] .info-kv-row {
  display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.35rem 0;
        border-bottom: 1px solid var(--surface-border);
        font-size: 0.85rem;
}

body[data-page="centPlan"] .info-kv-row:last-child {
  border-bottom: none;
}

body[data-page="centPlan"] .info-kv-key {
  color: var(--muted); flex-shrink: 0;
}

body[data-page="centPlan"] .info-kv-val {
  font-weight: 600; text-align: right;
}

body[data-page="centPlan"] .info-note {
  font-size: 0.83rem;
        color: var(--muted);
        padding: 0.65rem 0.9rem;
        border-radius: 0.65rem;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        margin-top: 0.75rem;
}

body[data-page="centPlan"] .info-note[style*="none"] {
  display: none;
}

/* ── Tooltip ────────────────────────────────────────── */

body[data-page="centPlan"] .plan-tip {
  position: fixed;
        pointer-events: none;
        z-index: 200;
        padding: 0.4rem 0.75rem;
        border-radius: 0.5rem;
        background: var(--panel-bg);
        border: 1px solid var(--surface-border);
        box-shadow: 0 4px 14px rgba(0,0,0,.15);
        font-size: 0.8rem;
        opacity: 0;
        transition: opacity 0.12s ease;
        max-width: 180px;
}

body[data-page="centPlan"] .plan-tip strong {
  display: block; font-size: 0.85rem; color: var(--text-color);
}

body[data-page="centPlan"] .plan-tip small {
  color: var(--muted);
}

/* ── Callout banner ─────────────────────────────────── */

body[data-page="centPlan"] .callout-primary {
  background: rgb(var(--primary-rgb));
        color: #fff;
        border-radius: 1rem;
        padding: 1.5rem 1.75rem;
        position: relative;
        overflow: hidden;
}

body[data-page="centPlan"] .callout-primary::after {
  content: "";
        position: absolute;
        top: -40%; right: -5%;
        width: 260px; height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        pointer-events: none;
}

body[data-page="centPlan"] .callout-primary h2 {
  color: #fff;
}

body[data-page="centPlan"] .callout-primary p {
  color: rgba(255,255,255,.88); margin: 0;
}

body[data-page="centPlan"] .callout-primary .btn-glass {
  border-color: rgba(255,255,255,0.55) !important; color: #fff !important;
}

/* ── Reveal ─────────────────────────────────────────── */

/* ── Reveal ─────────────────────────────────────────── */

body[data-page="centPlan"] .reveal {
  opacity: 0; transform: translateY(14px); transition: opacity 520ms ease, transform 520ms ease;
}

body[data-page="centPlan"] .reveal.is-in {
  opacity: 1; transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
body[data-page="centPlan"] .reveal {
    opacity: 1 !important; transform: none !important;
  }
}

body[data-page="centPlan"] html.reduce-motion .reveal {
  opacity: 1 !important; transform: none !important;
}


/* ===== nw-reloaded-2026 ===== */
/* ── Page utilities ─────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
}

body[data-page="nw-reloaded-2026"] .small-muted {
  font-size: 0.85rem; color: var(--muted);
}

body[data-page="nw-reloaded-2026"] .section-gap {
  margin-bottom: 1.75rem;
}

/* ── Accent-stripe card ─────────────────────────────── */

body[data-page="nw-reloaded-2026"] .ev-card {
  position: relative;
        overflow: hidden;
}

body[data-page="nw-reloaded-2026"] .ev-card::before {
  content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 6px 6px 0 0;
}

/* ── Check-list ─────────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .check-list {
  list-style: none; padding: 0; margin: 0;
}

body[data-page="nw-reloaded-2026"] .check-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
        padding: 0.38rem 0; font-size: 0.9rem;
        border-bottom: 1px solid var(--surface-border);
}

body[data-page="nw-reloaded-2026"] .check-list li:last-child {
  border-bottom: none;
}

body[data-page="nw-reloaded-2026"] .check-list li i {
  color: var(--primary); margin-top: 0.15rem; flex-shrink: 0;
}

/* ── Note pill ──────────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .note-pill {
  display: flex; gap: 0.6rem; align-items: flex-start;
        background: var(--surface-bg); border: 1px solid var(--surface-border);
        border-radius: 0.75rem; padding: 0.65rem 0.9rem;
        font-size: 0.83rem; color: var(--muted);
}

body[data-page="nw-reloaded-2026"] .note-pill i {
  color: var(--accent); margin-top: 0.1rem; flex-shrink: 0;
}

/* ── Callout banner ─────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .callout-primary {
  background: var(--primary); color: #fff;
        border-radius: 1rem; padding: 1.5rem 1.75rem;
        position: relative; overflow: hidden;
}

body[data-page="nw-reloaded-2026"] .callout-primary::after {
  content: ""; position: absolute;
        top: -40%; right: -5%; width: 260px; height: 260px;
        border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none;
}

body[data-page="nw-reloaded-2026"] .callout-primary h2 {
  color: #fff;
}

body[data-page="nw-reloaded-2026"] .callout-primary p {
  color: rgba(255,255,255,.88); margin: 0;
}

body[data-page="nw-reloaded-2026"] .callout-primary strong {
  color: #fff;
}

body[data-page="nw-reloaded-2026"] .callout-primary .btn-glass {
  border-color: rgba(255,255,255,.55) !important; color: #fff !important;
}

/* ── Event poster ───────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .event-poster {
  border-radius: 1rem;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.14);
        box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

body[data-page="nw-reloaded-2026"] .event-poster img {
  width: 100%; height: auto; display: block;
}

/* ── Fact cards ─────────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .fact-card {
  border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        border-radius: 1rem;
        padding: 0.9rem 1rem;
        height: 100%;
}

body[data-page="nw-reloaded-2026"] .fact-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem;
}

body[data-page="nw-reloaded-2026"] .fact-value {
  font-weight: 800; font-size: 0.95rem; line-height: 1.3;
}

/* ── Activity grid (reuse index pattern) ────────────── */

body[data-page="nw-reloaded-2026"] .event-features {
  display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.4rem 0.9rem;
}

body[data-page="nw-reloaded-2026"] .event-feature {
  display: flex; align-items: center;
        gap: 0.45rem; font-size: 0.85rem;
        font-weight: 500; color: var(--text-color);
}

body[data-page="nw-reloaded-2026"] .event-feature i {
  font-size: 0.9rem; color: var(--primary);
}

/* ── Countdown ──────────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .countdown-strip {
  display: flex; align-items: center; justify-content: space-between;
        gap: .75rem; padding: 1rem 1.1rem;
        border-radius: 18px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

body[data-page="nw-reloaded-2026"] .cd-unit {
  flex: 1; text-align: center; padding: .6rem .4rem;
        border-radius: 14px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.14);
}

body[data-page="nw-reloaded-2026"] .cd-num {
  font-weight: 800; letter-spacing: .5px;
        font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.05;
}

body[data-page="nw-reloaded-2026"] .cd-lbl {
  font-size: .8rem; opacity: .85; margin-top: .25rem;
}

body[data-page="nw-reloaded-2026"] .cd-sep {
  font-weight: 700; opacity: .55; transform: translateY(-2px);
}

/* ── Photo grid ─────────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .event-photo {
  border-radius: 0.85rem; overflow: hidden;
        border: 1px solid rgba(255,255,255,.12);
}

body[data-page="nw-reloaded-2026"] .event-photo img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
        transition: transform .35s ease;
}

body[data-page="nw-reloaded-2026"] .event-photo:hover img {
  transform: scale(1.03);
}

/* ── Reveal ─────────────────────────────────────────── */

body[data-page="nw-reloaded-2026"] .reveal {
  opacity: 0; transform: translateY(14px); transition: opacity 520ms ease, transform 520ms ease;
}

body[data-page="nw-reloaded-2026"] .reveal.is-in {
  opacity: 1; transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
body[data-page="nw-reloaded-2026"] .reveal {
    opacity: 1 !important; transform: none !important;
  }
}

body[data-page="nw-reloaded-2026"] html.reduce-motion .reveal {
  opacity: 1 !important; transform: none !important;
}


/* ===== on-site-activities ===== */
/* ── Page utilities (matching residentials / centenary pattern) ─ */

body[data-page="on-site-activities"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
}

body[data-page="on-site-activities"] .small-muted {
  font-size: 0.85rem;
        color: var(--muted);
}

body[data-page="on-site-activities"] .section-gap {
  margin-bottom: 1.75rem;
}

/* ── Accent-stripe card ─────────────────────────────── */

body[data-page="on-site-activities"] .act-card {
  position: relative;
        overflow: hidden;
}

body[data-page="on-site-activities"] .act-card::before {
  content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 6px 6px 0 0;
}

/* ── Check-list ─────────────────────────────────────── */

body[data-page="on-site-activities"] .check-list {
  list-style: none;
        padding: 0;
        margin: 0;
}

body[data-page="on-site-activities"] .check-list li {
  display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        padding: 0.38rem 0;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--surface-border);
}

body[data-page="on-site-activities"] .check-list li:last-child {
  border-bottom: none;
}

body[data-page="on-site-activities"] .check-list li i {
  color: var(--primary);
        margin-top: 0.15rem;
        flex-shrink: 0;
}

/* ── Note pill ──────────────────────────────────────── */

body[data-page="on-site-activities"] .note-pill {
  display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        border-radius: 0.75rem;
        padding: 0.65rem 0.9rem;
        font-size: 0.83rem;
        color: var(--muted);
}

body[data-page="on-site-activities"] .note-pill i {
  color: var(--accent);
        margin-top: 0.1rem;
        flex-shrink: 0;
}

/* ── Callout banner ─────────────────────────────────── */

body[data-page="on-site-activities"] .callout-primary {
  background: var(--primary);
        color: #fff;
        border-radius: 1rem;
        padding: 1.5rem 1.75rem;
        position: relative;
        overflow: hidden;
}

body[data-page="on-site-activities"] .callout-primary::after {
  content: "";
        position: absolute;
        top: -40%;
        right: -5%;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
        pointer-events: none;
}

body[data-page="on-site-activities"] .callout-primary h2 {
  color: #fff;
}

body[data-page="on-site-activities"] .callout-primary p {
  color: rgba(255, 255, 255, .88);
        margin: 0;
}

body[data-page="on-site-activities"] .callout-primary .btn-glass {
  border-color: rgba(255, 255, 255, .55) !important;
        color: #fff !important;
}

/* ── Activity description block (keep original border style) ── */

body[data-page="on-site-activities"] .activity-description-block {
  border-left: 3px solid var(--accent, rgba(255, 255, 255, .2));
        padding-left: 1rem;
        max-width: 65ch;
}

body[data-page="on-site-activities"] .activity-description-block p {
  line-height: 1.6;
}

/* ── Media frame ────────────────────────────────────── */

body[data-page="on-site-activities"] .media-frame {
  margin-bottom: 10px !important;
}

/* ── Reveal ─────────────────────────────────────────── */

body[data-page="on-site-activities"] .reveal {
  opacity: 0;
        transform: translateY(14px);
        transition: opacity 520ms ease, transform 520ms ease;
}

body[data-page="on-site-activities"] .reveal.is-in {
  opacity: 1;
        transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
body[data-page="on-site-activities"] .reveal {
    opacity: 1 !important;
            transform: none !important;
  }
}

body[data-page="on-site-activities"] html.reduce-motion .reveal {
  opacity: 1 !important;
        transform: none !important;
}

/* ── Activity buttons: bring in line with residential tabs ───────── */

body[data-page="on-site-activities"] .activity-switches {
  display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
}

body[data-page="on-site-activities"] .walk-selector {
  position: relative;
    width: 100%;
    min-height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 0.65rem 0.9rem 0.65rem 1.1rem !important;
    background: color-mix(in srgb, var(--panel-bg), transparent 12%) !important;
    color: var(--text-color) !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    font-weight: 600;
    transition:
      background .2s ease,
      transform .2s ease,
      box-shadow .2s ease,
      border-color .2s ease;
    overflow: hidden;
}

body[data-page="on-site-activities"] .walk-selector::before {
  content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 6px;
    width: 3px;
    border-radius: 999px;
    background: var(--walk-accent, var(--primary));
    transition: width .2s ease;
}

body[data-page="on-site-activities"] .walk-selector:hover::before {
  width: 4px;
}

body[data-page="on-site-activities"] .walk-selector.is-active::before {
  width: 5px;
}

body[data-page="on-site-activities"] .walk-selector-top {
  display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
}

body[data-page="on-site-activities"] .walk-selector-heading {
  min-width: 0;
        flex: 1 1 auto;
}

body[data-page="on-site-activities"] .walk-selector-heading .small-muted {
  color: var(--text-color) !important;
        margin-bottom: 0 !important;
        line-height: 1.35;
}

body[data-page="on-site-activities"] .walk-selector-heading strong {
  color: var(--text-color) !important;
        font-weight: 600;
}

body[data-page="on-site-activities"] .walk-selector-stats {
  margin-bottom: 0.2rem !important;
}

body[data-page="on-site-activities"] .walk-selector-stats .small-muted, body[data-page="on-site-activities"] .walk-selector-stats span {
  font-size: 0.78rem !important;
        color: var(--muted) !important;
        font-weight: 600;
}

body[data-page="on-site-activities"] .walk-selector .fa-chevron-right {
  opacity: 0.75;
        flex-shrink: 0;
        color: var(--text-color) !important;
}

body[data-page="on-site-activities"] .walk-selector i.fa-solid:not(.fa-chevron-right) {
  width: 1.2rem;
        text-align: center;
        opacity: 0.95;
}

body[data-page="on-site-activities"] .activity-row-divider {
  display: none;
}

@media (max-width: 1199.98px) {
body[data-page="on-site-activities"] .activity-switches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
body[data-page="on-site-activities"] .activity-switches {
    grid-template-columns: 1fr;
  }

  body[data-page="on-site-activities"] .walk-selector {
    min-height: auto;
  }
}

/* HOVER — match filter tabs */

body[data-page="on-site-activities"] .walk-selector:hover {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

body[data-page="on-site-activities"] .walk-selector:hover::before {
  width: 4px;
}

/* ACTIVE — EXACT same feel as filters but with your accent */

body[data-page="on-site-activities"] .walk-selector.is-active {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: var(--walk-accent, var(--primary)) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.18),
      0 0 0 1px var(--walk-accent, var(--primary)) inset;
}

body[data-page="on-site-activities"] .walk-selector.is-active::before {
  width: 4px;
}

/* ACTIVE HOVER — lock it in (same as filters) */

body[data-page="on-site-activities"] .walk-selector.is-active:hover {
  background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--walk-accent, var(--primary)) !important;
    color: var(--text-color) !important;
}

body[data-page="on-site-activities"] .walk-selector:hover {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

body[data-page="on-site-activities"] .walk-selector.is-active {
  background: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: var(--walk-accent, var(--primary)) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      0 0 0 1px var(--walk-accent, var(--primary)) inset;
}

body[data-page="on-site-activities"] .walk-selector.is-active:hover {
  background: rgba(255, 255, 255, 0.14) !important;
    border-color: var(--walk-accent, var(--primary)) !important;
    color: var(--text-color) !important;
}

body[data-page="on-site-activities"] .walk-selector:hover::before {
  width: 4px;
}

body[data-page="on-site-activities"] .walk-selector.is-active::before {
  width: 6px;
}

/* ── Activity filter tabs ─────────────────────────────── */

body[data-page="on-site-activities"] .activity-filter {
  display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 1.5rem;
}

body[data-page="on-site-activities"] .act-tab {
  position: relative;
        width: 100%;
        min-height: 64px;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 10px !important;
        padding: 0.65rem 0.9rem 0.65rem 1.1rem !important;
        background: color-mix(in srgb, var(--panel-bg), transparent 12%) !important;
        color: var(--text-color) !important;
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
        font-weight: 600;
        transition:
          background .2s ease,
          transform .2s ease,
          box-shadow .2s ease,
          border-color .2s ease;
}

body[data-page="on-site-activities"] .act-tab::before {
  content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 6px;
        width: 3px;
        border-radius: 999px;
        background: var(--primary);
        transition: width .2s ease;
}

body[data-page="on-site-activities"] .act-tab i {
  width: 1.2rem;
        text-align: center;
        opacity: 0.9;
        margin-right: 0.2rem;
}

body[data-page="on-site-activities"] .act-tab:hover {
  background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-color: rgba(255, 255, 255, 0.18) !important;
        color: var(--text-color) !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

body[data-page="on-site-activities"] .act-tab:hover::before {
  width: 4px;
}

body[data-page="on-site-activities"] .act-tab.is-active {
  background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-color: rgba(255, 255, 255, 0.18) !important;
        color: var(--text-color) !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

body[data-page="on-site-activities"] .act-tab.is-active::before {
  width: 4px;
}

body[data-page="on-site-activities"] .act-tab.is-active:hover {
  background: rgba(255, 255, 255, 0.08) !important;
        color: var(--text-color) !important;
}

@media (max-width: 1199.98px) {
body[data-page="on-site-activities"] .activity-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
body[data-page="on-site-activities"] .activity-filter {
    grid-template-columns: 1fr;
  }

  body[data-page="on-site-activities"] .act-tab {
    min-height: auto;
  }
}

/* ── Media images inside activity box ─────────────────── */

body[data-page="on-site-activities"] .activity-media-shell .media-frame {
  border-radius: 0.75rem;
    overflow: hidden;
    background: var(--surface-bg);
    border: 1px solid var(--surface-border);
}

body[data-page="on-site-activities"] .activity-media-shell .media-frame img, body[data-page="on-site-activities"] .activity-media-shell .media-frame video, body[data-page="on-site-activities"] .activity-media-shell .media-frame iframe {
  width: 100%;
    height: 100%;
    display: block;
}

body[data-page="on-site-activities"] .activity-media-shell .media-frame img {
  object-fit: cover;
}

body[data-page="on-site-activities"] .activity-media-shell .media-frame--logo {
  padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body[data-page="on-site-activities"] .activity-media-shell .media-frame--logo img {
  object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* ── Activity spec grid ─────────────────────────────── */

body[data-page="on-site-activities"] .activity-spec-grid {
  display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

body[data-page="on-site-activities"] .activity-spec-card {
  min-width: 0;
}

body[data-page="on-site-activities"] .activity-spec-value {
  word-break: break-word;
}

@media (max-width: 991.98px) {
body[data-page="on-site-activities"] .activity-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
body[data-page="on-site-activities"] .activity-spec-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Activity pricing year switch ───────────────────── */

body[data-page="on-site-activities"] .activity-year-switch {
  display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 220px;
}

body[data-page="on-site-activities"] .activity-year-btn {
  position: relative;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 0.55rem 0.9rem 0.55rem 1.05rem !important;
    background: color-mix(in srgb, var(--panel-bg), transparent 12%) !important;
    color: var(--text-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    text-decoration: none !important;
    transition:
      background .2s ease,
      transform .2s ease,
      box-shadow .2s ease,
      border-color .2s ease;
    overflow: hidden;
}

body[data-page="on-site-activities"] .activity-year-btn::before {
  content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 6px;
    width: 3px;
    border-radius: 999px;
    background: var(--primary);
    transition: width .2s ease;
}

body[data-page="on-site-activities"] .activity-year-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
}

body[data-page="on-site-activities"] .activity-year-btn:hover::before {
  width: 4px;
}

body[data-page="on-site-activities"] .activity-year-btn.is-active, body[data-page="on-site-activities"] .activity-year-btn[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
}

body[data-page="on-site-activities"] .activity-year-btn.is-active::before, body[data-page="on-site-activities"] .activity-year-btn[aria-current="page"]::before {
  width: 4px;
}

body[data-page="on-site-activities"] .activity-year-btn span {
  position: relative;
    z-index: 1;
}

@media (max-width: 575.98px) {
body[data-page="on-site-activities"] .activity-year-switch {
    max-width: none;
  }
}

/* ── Activity pricing year switch ───────────────────── */

body[data-page="on-site-activities"] .activity-year-switch {
  display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    max-width: 220px;
}

body[data-page="on-site-activities"] .activity-year-btn {
  position: relative;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    padding: 0.55rem 0.9rem 0.55rem 1.05rem !important;
    background: color-mix(in srgb, var(--panel-bg), transparent 12%) !important;
    color: var(--text-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    text-decoration: none !important;
    transition:
      background .2s ease,
      transform .2s ease,
      box-shadow .2s ease,
      border-color .2s ease;
    overflow: hidden;
}

body[data-page="on-site-activities"] .activity-year-btn::before {
  content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 6px;
    width: 3px;
    border-radius: 999px;
    background: var(--primary);
    transition: width .2s ease;
}

body[data-page="on-site-activities"] .activity-year-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
}

body[data-page="on-site-activities"] .activity-year-btn:hover::before {
  width: 4px;
}

body[data-page="on-site-activities"] .activity-year-btn.is-active, body[data-page="on-site-activities"] .activity-year-btn[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
}

body[data-page="on-site-activities"] .activity-year-btn.is-active::before, body[data-page="on-site-activities"] .activity-year-btn[aria-current="page"]::before {
  width: 4px;
}

body[data-page="on-site-activities"] .activity-year-btn span {
  position: relative;
    z-index: 1;
}

@media (max-width: 575.98px) {
body[data-page="on-site-activities"] .activity-year-switch {
    max-width: none;
  }
}


/* ===== orienteering ===== */
body[data-page="orienteering"] .resource-hero .pill-row, body[data-page="orienteering"] .course-meta-row, body[data-page="orienteering"] .route-actions, body[data-page="orienteering"] .leader-checklist {
  display: flex;
              flex-wrap: wrap;
              gap: .65rem;
}

body[data-page="orienteering"] .resource-hero .pill, body[data-page="orienteering"] .course-meta-pill {
  display: inline-flex;
              align-items: center;
              gap: .45rem;
              padding: .45rem .8rem;
              border-radius: 999px;
              border: 1px solid rgba(255, 255, 255, .14);
              background: rgba(255, 255, 255, .08);
              font-size: .92rem;
              font-weight: 600;
}

body[data-page="orienteering"] .leader-note, body[data-page="orienteering"] .course-support-card, body[data-page="orienteering"] .course-note-box, body[data-page="orienteering"] .route-step-card, body[data-page="orienteering"] .course-print-panel, body[data-page="orienteering"] .control-sheet-card {
  border: 1px solid rgba(255, 255, 255, .12);
              background: rgba(255, 255, 255, .06);
              border-radius: 18px;
}

body[data-page="orienteering"] .leader-note, body[data-page="orienteering"] .course-support-card, body[data-page="orienteering"] .route-step-card, body[data-page="orienteering"] .course-print-panel, body[data-page="orienteering"] .control-sheet-card {
  padding: 1rem 1.1rem;
}

body[data-page="orienteering"] .course-note-box {
  padding: .9rem 1rem;
}

body[data-page="orienteering"] .leader-checklist {
  display: grid;
              gap: .85rem;
}

body[data-page="orienteering"] .bearing-pill {
  display: inline-flex;
              align-items: center;
              padding: 0.22rem 0.55rem;
              border-radius: 999px;
              font-size: 0.74rem;
              font-weight: 700;
              background: rgba(62, 207, 142, 0.16);
              border: 1px solid rgba(62, 207, 142, 0.35);
              white-space: nowrap;
              line-height: 1;
}

body[data-page="orienteering"] .bearing-pill--finish {
  background: rgba(255, 255, 255, 0.08);
              border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="orienteering"] .leader-check-item {
  display: flex;
              align-items: flex-start;
              gap: .8rem;
              padding: .9rem 1rem;
              border-radius: 16px;
              border: 1px solid rgba(255, 255, 255, .12);
              background: rgba(255, 255, 255, .06);
}

body[data-page="orienteering"] .leader-check-item i {
  margin-top: .2rem;
              flex: 0 0 auto;
}

body[data-page="orienteering"] .course-map-shell {
  border-radius: 22px;
              overflow: hidden;
              border: 1px solid rgba(255, 255, 255, .12);
              background: rgba(255, 255, 255, .04);
}

body[data-page="orienteering"] #orienteeringMap {
  width: 100%;
              min-height: 460px;
}

body[data-page="orienteering"] .map-caption {
  padding: .85rem 1rem;
              border-top: 1px solid rgba(255, 255, 255, .1);
              background: rgba(255, 255, 255, .04);
}

body[data-page="orienteering"] .route-steps {
  display: grid;
              gap: 0.45rem;
}

body[data-page="orienteering"] .route-step-card {
  padding: 0.7rem 0.85rem;
              border-radius: 14px;
              border: 1px solid rgba(255, 255, 255, 0.1);
              background: rgba(255, 255, 255, 0.05);
}

body[data-page="orienteering"] .course-card-kicker {
  font-size: 0.68rem;
              text-transform: uppercase;
              letter-spacing: 0.08em;
              opacity: 0.72;
              margin-bottom: 0.15rem;
              font-weight: 700;
}

body[data-page="orienteering"] .route-step-card strong {
  display: block;
              margin-bottom: 0.12rem;
              line-height: 1.35;
              font-size: 0.93rem;
}

body[data-page="orienteering"] .route-step-card .small-muted, body[data-page="orienteering"] .route-step-card div, body[data-page="orienteering"] .route-step-card p {
  margin-bottom: 0;
              line-height: 1.35;
              font-size: 0.9rem;
}

body[data-page="orienteering"] .map-compass {
  position: absolute;
              top: 14px;
              right: 14px;
              width: 60px;
              height: 60px;
              border-radius: 50%;
              background: rgba(20, 26, 44, .85);
              border: 1px solid rgba(255, 255, 255, .25);
              display: flex;
              align-items: center;
              justify-content: center;
              z-index: 600;
              font-size: 22px;
              color: #fff;
              box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

body[data-page="orienteering"] .control-sheet-card {
  padding: 0.9rem 1rem;
}

body[data-page="orienteering"] .control-sheet-grid {
  display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="orienteering"] .control-row {
  display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

body[data-page="orienteering"] .explore-further-section {
  margin-bottom: 2rem !important;
}

body[data-page="orienteering"] main > section.mb-4:last-of-type {
  margin-bottom: 2rem !important;
}

body[data-page="orienteering"] .map-compass span {
  position: absolute;
              top: 4px;
              font-size: 11px;
              font-weight: 700;
              letter-spacing: .05em;
}

body[data-page="orienteering"] .control-sheet-grid {
  display: grid;
              gap: .75rem;
              grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="orienteering"] .control-row {
  display: flex;
              gap: .85rem;
              align-items: flex-start;
              padding: .8rem .9rem;
              border-radius: 14px;
              border: 1px solid rgba(255, 255, 255, .1);
              background: rgba(255, 255, 255, .04);
}

body[data-page="orienteering"] .control-number span {
  display: flex;
              align-items: center;
              justify-content: center;
              width: 24px;
              height: 24px;
              font-size: 12px;
              font-weight: 700;
              color: #fff;
}

body[data-page="orienteering"] .control-number {
  width: 34px;
              height: 34px;
              border-radius: 50%;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              font-weight: 700;
              font-size: .9rem;
              background: rgba(62, 207, 142, .16);
              border: 1px solid rgba(62, 207, 142, .4);
              flex: 0 0 34px;
}

body[data-page="orienteering"] .print-route-only [data-print-hide="route-only"] {
  display: none !important;
}

body[data-page="orienteering"] .course-print-summary {
  display: none;
}

body[data-page="orienteering"] .centre-map-logo {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

body[data-page="orienteering"] .leaflet-popup-content-wrapper, body[data-page="orienteering"] .leaflet-popup-tip {
  background: rgba(20, 26, 44, .94);
              color: #fff;
              border: 1px solid rgba(255, 255, 255, .12);
              box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

body[data-page="orienteering"] .leaflet-container a {
  color: inherit;
}

@media (max-width: 767.98px) {
body[data-page="orienteering"] .control-sheet-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
body[data-page="orienteering"] .theme-overlay, body[data-page="orienteering"] .skip-link, body[data-page="orienteering"] #site-nav, body[data-page="orienteering"] #site-footer, body[data-page="orienteering"] .print-hide, body[data-page="orienteering"] .explore-further-section {
    display: none !important;
  }

  body[data-page="orienteering"] body {
    background: #fff !important;
            color: #000 !important;
  }

  body[data-page="orienteering"] body * {
    visibility: hidden !important;
  }

  body[data-page="orienteering"] #selectedCoursePanel, body[data-page="orienteering"] #selectedCoursePanel * {
    visibility: visible !important;
  }

  body[data-page="orienteering"] #selectedCoursePanel {
    position: absolute !important;
            left: 0 !important;
            top: 0 !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            display: block !important;
  }

  body[data-page="orienteering"] #selectedCoursePanel .row {
    display: block !important;
  }

  body[data-page="orienteering"] #selectedCoursePanel [class*="col-"] {
    display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            flex: none !important;
  }

  body[data-page="orienteering"] .glass-panel, body[data-page="orienteering"] .soft-card, body[data-page="orienteering"] .leader-note, body[data-page="orienteering"] .course-support-card, body[data-page="orienteering"] .course-note-box, body[data-page="orienteering"] .route-step-card, body[data-page="orienteering"] .course-print-panel, body[data-page="orienteering"] .course-map-shell, body[data-page="orienteering"] .control-sheet-card {
    background: #fff !important;
            color: #000 !important;
            border-color: #cfcfcf !important;
            box-shadow: none !important;
  }

  body[data-page="orienteering"] .course-print-summary {
    display: block !important;
            margin-bottom: 1.25rem;
  }

  body[data-page="orienteering"] #orienteeringMap {
    min-height: 360px !important;
  }

  body[data-page="orienteering"] a {
    color: #000 !important;
            text-decoration: none !important;
  }
}

body[data-page="orienteering"] .steps-grid {
  display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
}

body[data-page="orienteering"] .steps-col {
  display:grid;
    gap:0.45rem;
}

@media (max-width:900px) {
body[data-page="orienteering"] .steps-grid {
    grid-template-columns:1fr;
  }
}


/* ===== prices ===== */
body[data-page="prices"] .prices-theme {
  --primary-rgb: 34 75 142;
        --hub-accent: #224b8e;
}

body[data-page="prices"] [data-theme="dark"] .prices-theme {
  --primary-rgb: 74 123 201;
        --hub-accent: #4a7bc9;
}

body[data-page="prices"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgb(var(--primary-rgb));
}

body[data-page="prices"] .small-muted {
  font-size: 0.85rem;
        color: var(--muted);
}

body[data-page="prices"] .section-gap {
  margin-bottom: 1.75rem;
}

body[data-page="prices"] .price-card, body[data-page="prices"] .support-card, body[data-page="prices"] .jump-shell, body[data-page="prices"] .hero-card, body[data-page="prices"] .calc-card {
  position: relative;
        overflow: hidden;
}

body[data-page="prices"] .price-card::before, body[data-page="prices"] .support-card::before, body[data-page="prices"] .jump-shell::before, body[data-page="prices"] .hero-card::before, body[data-page="prices"] .calc-card::before {
  content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(var(--primary-rgb)) 0%, rgba(var(--primary-rgb)/.42) 100%);
        border-radius: 6px 6px 0 0;
}

body[data-page="prices"] .price-tabs .btn {
  border-radius: 999px;
}

body[data-page="prices"] .price-tab, body[data-page="prices"] a.price-tab, body[data-page="prices"] a.price-tab:link, body[data-page="prices"] a.price-tab:visited {
  position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.55rem 0.9rem 0.55rem 1.1rem;
    font-weight: 600;
    background: color-mix(in srgb, var(--panel-bg), transparent 12%);
    color: var(--text-color) !important;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition:
      background .2s ease,
      color .2s ease,
      transform .2s ease,
      box-shadow .2s ease,
      border-color .2s ease,
      backdrop-filter .2s ease;
}

body[data-page="prices"] .price-tab::before, body[data-page="prices"] a.price-tab::before {
  content: "";
    position: absolute;
    top: 18%;
    bottom: 18%;
    left: 0.4rem;
    width: 3px;
    border-radius: 999px;
    background: rgb(var(--primary-rgb));
    opacity: 1;
    transition: width .2s ease, background .2s ease;
}

body[data-page="prices"] .price-tab:hover, body[data-page="prices"] .price-tab:hover:link, body[data-page="prices"] .price-tab:hover:visited, body[data-page="prices"] a.price-tab:hover, body[data-page="prices"] a.price-tab:hover:link, body[data-page="prices"] a.price-tab:hover:visited {
  background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
}

body[data-page="prices"] .price-tab:hover::before, body[data-page="prices"] a.price-tab:hover::before {
  width: 4px;
    background: rgb(var(--primary-rgb));
}

body[data-page="prices"] .price-tab[aria-selected="true"], body[data-page="prices"] .price-tab.is-active, body[data-page="prices"] .price-tab[aria-current="page"], body[data-page="prices"] a.price-tab[aria-selected="true"], body[data-page="prices"] a.price-tab.is-active, body[data-page="prices"] a.price-tab[aria-current="page"], body[data-page="prices"] a.price-tab[aria-selected="true"]:link, body[data-page="prices"] a.price-tab[aria-selected="true"]:visited, body[data-page="prices"] a.price-tab.is-active:link, body[data-page="prices"] a.price-tab.is-active:visited, body[data-page="prices"] a.price-tab[aria-current="page"]:link, body[data-page="prices"] a.price-tab[aria-current="page"]:visited {
  background: #224B8E;
    color: #fff !important;
    transform: translateY(0);
    text-decoration: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body[data-page="prices"] .price-panel[hidden] {
  display: none !important;
}

body[data-page="prices"] .rate-table {
  width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        overflow: hidden;
        border-radius: 14px;
}

body[data-page="prices"] .rate-table th, body[data-page="prices"] .rate-table td {
  padding: .75rem .85rem;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        vertical-align: top;
}

body[data-page="prices"] .rate-table th {
  font-weight: 800;
}

body[data-page="prices"] .rate-table tr:last-child td {
  border-bottom: none;
}

body[data-page="prices"] .rate-sub {
  opacity: .86;
        font-size: .95rem;
}

body[data-page="prices"] .rate-tag {
  display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .25rem .6rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .08);
}

body[data-page="prices"] .price-panel {
  border: 0;
        background: transparent;
        padding: 0;
}

body[data-page="prices"] .price-shell {
  position: relative;
        overflow: hidden;
        border-radius: 18px;
        transition: transform .25s ease, box-shadow .25s ease;
}

body[data-page="prices"] .price-shell:hover {
  transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

body[data-page="prices"] .price-shell.camp-theme::before, body[data-page="prices"] .price-shell.sports-theme::before, body[data-page="prices"] .price-shell.corporate-theme::before, body[data-page="prices"] .price-shell.sl-theme::before, body[data-page="prices"] .price-shell.centenary-theme::before, body[data-page="prices"] .glass-panel.camp-theme.price-shell::before, body[data-page="prices"] .glass-panel.sports-theme.price-shell::before, body[data-page="prices"] .glass-panel.corporate-theme.price-shell::before, body[data-page="prices"] .glass-panel.sl-theme.price-shell::before, body[data-page="prices"] .glass-panel.centenary-theme.price-shell::before {
  content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        border-radius: 6px 6px 0 0;
}

body[data-page="prices"] .price-shell.centenary-theme::before, body[data-page="prices"] .glass-panel.centenary-theme.price-shell::before {
  background: linear-gradient(90deg, rgb(107 30 43) 0%, rgba(107 30 43 / .42) 100%);
}

body[data-page="prices"] .price-shell.sl-theme::before, body[data-page="prices"] .glass-panel.sl-theme.price-shell::before {
  background: linear-gradient(90deg, rgb(24 78 114) 0%, rgba(24 78 114 / .42) 100%);
}

body[data-page="prices"] .price-shell.camp-theme::before, body[data-page="prices"] .glass-panel.camp-theme.price-shell::before {
  background: linear-gradient(90deg, rgb(34 197 94) 0%, rgba(34 197 94 / .42) 100%);
}

body[data-page="prices"] .price-shell.sports-theme::before, body[data-page="prices"] .glass-panel.sports-theme.price-shell::before {
  background: linear-gradient(90deg, rgb(249 115 22) 0%, rgba(249 115 22 / .42) 100%);
}

body[data-page="prices"] .price-shell.corporate-theme::before, body[data-page="prices"] .glass-panel.corporate-theme.price-shell::before {
  background: linear-gradient(90deg, rgb(124 58 237) 0%, rgba(124 58 237 / .42) 100%);
}

body[data-page="prices"] .prices-sticky {
  position: sticky;
        top: calc(var(--nav-offset, 84px) + 10px);
        z-index: 30;
}

body[data-page="prices"] .prices-sticky .jump-wrap {
  display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        flex-wrap: wrap;
}

body[data-page="prices"] .jump-chips {
  display: flex;
        gap: .5rem;
        flex-wrap: wrap;
}

body[data-page="prices"] .jump-chip {
  display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .25rem .55rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .06);
        text-decoration: none;
        font-weight: 800;
        font-size: .85rem;
        line-height: 1.1;
        opacity: .92;
}

body[data-page="prices"] .jump-chip:hover {
  opacity: 1;
        transform: translateY(-1px);
}

body[data-page="prices"] .jump-chip.is-active {
  border-color: rgba(var(--primary-rgb), .55);
        box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
        background: rgba(255, 255, 255, .10);
}

body[data-page="prices"] .jump-chip .dot {
  width: .5rem;
        height: .5rem;
        border-radius: 999px;
        background: rgba(var(--primary-rgb), .95);
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .16);
}

body[data-page="prices"] .jump-chip.camp-theme .dot {
  background: rgba(34, 197, 94, .95);
        box-shadow: 0 0 0 3px rgba(34, 197, 94, .16);
}

body[data-page="prices"] .jump-chip.sports-theme .dot {
  background: rgba(249, 115, 22, .95);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, .16);
}

body[data-page="prices"] .jump-chip.corporate-theme .dot {
  background: rgba(124, 58, 237, .95);
        box-shadow: 0 0 0 3px rgba(124, 58, 237, .16);
}

body[data-page="prices"] .prices-sticky .btn {
  padding: .35rem .65rem;
}

body[data-page="prices"] .callout-primary {
  background: rgb(var(--primary-rgb));
        color: #fff;
        border-radius: 1rem;
        padding: 1.5rem 1.75rem;
        position: relative;
        overflow: hidden;
}

body[data-page="prices"] .callout-primary::after {
  content: "";
        position: absolute;
        top: -40%;
        right: -5%;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        pointer-events: none;
}

body[data-page="prices"] .callout-primary h2, body[data-page="prices"] .callout-primary h4 {
  color: #fff;
}

body[data-page="prices"] .callout-primary p {
  color: rgba(255, 255, 255, .88);
        margin: 0;
}

body[data-page="prices"] .callout-primary .btn-glass {
  border-color: rgba(255, 255, 255, .55) !important;
        color: #fff !important;
}

body[data-page="prices"] .support-card .btn {
  margin-top: 1rem;
}

body[data-page="prices"] .reveal {
  opacity: 0;
        transform: translateY(14px);
        transition: opacity 520ms ease, transform 520ms ease;
}

body[data-page="prices"] .reveal.is-in {
  opacity: 1;
        transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
body[data-page="prices"] .reveal {
    opacity: 1 !important;
            transform: none !important;
  }
}

body[data-page="prices"] html.reduce-motion .reveal {
  opacity: 1 !important;
        transform: none !important;
}

/* base chip */

body[data-page="prices"] .jump-chip {
  display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .65rem;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,.05);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
}

/* dot */

body[data-page="prices"] .jump-chip .dot {
  width: .5rem;
    height: .5rem;
    border-radius: 999px;
}

/* hover */

body[data-page="prices"] .jump-chip:hover {
  transform: translateY(-1px);
    background: rgba(255,255,255,.1);
}

/* active */

body[data-page="prices"] .jump-chip.is-active {
  color: #fff;
    transform: translateY(-1px);
}

/* ===== COLOURS ===== */

/* Residential (red) */

body[data-page="prices"] .jump-chip.centenary-theme .dot {
  background: rgb(107 30 43);
}

body[data-page="prices"] .jump-chip.centenary-theme.is-active {
  background: rgb(107 30 43);
}

/* Camping (green) — already tied to residential section visually */

body[data-page="prices"] .jump-chip.camp-theme .dot {
  background: rgb(34 197 94);
}

/* Activities (orange) */

body[data-page="prices"] .jump-chip.activities-theme .dot {
  background: rgb(249 115 22);
}

body[data-page="prices"] .jump-chip.activities-theme.is-active {
  background: rgb(249 115 22);
}

/* Meetings (purple) */

body[data-page="prices"] .jump-chip.corporate-theme .dot {
  background: rgb(124 58 237);
}

body[data-page="prices"] .jump-chip.corporate-theme.is-active {
  background: rgb(124 58 237);
}

/* Add-ons (brown) */

body[data-page="prices"] .jump-chip.addons-theme .dot {
  background: rgb(120 72 32);
}

body[data-page="prices"] .jump-chip.addons-theme.is-active {
  background: rgb(120 72 32);
}

/* Sports Barn (gold) */

body[data-page="prices"] .jump-chip.sports-theme .dot {
  background: rgb(249 115 22);
}

body[data-page="prices"] .jump-chip.sports-theme.is-active {
  background: rgb(249 115 22);
    color: #fff;
}


/* ===== scavenger-hunt ===== */
body[data-page="scavenger-hunt"] .resource-hero .pill-row {
  display: flex;
              flex-wrap: wrap;
              gap: .6rem;
}

body[data-page="scavenger-hunt"] .resource-hero .pill {
  display: inline-flex;
              align-items: center;
              padding: .45rem .8rem;
              border-radius: 999px;
              border: 1px solid rgba(255, 255, 255, .14);
              background: rgba(255, 255, 255, .08);
              font-size: .92rem;
              font-weight: 600;
}

body[data-page="scavenger-hunt"] .resource-actions {
  display: flex;
              flex-wrap: wrap;
              gap: .75rem;
}

body[data-page="scavenger-hunt"] .hunt-question {
  margin-bottom: 1rem;
              border-left: 3px solid rgba(80, 140, 220, .6);
              padding-left: .6rem;
}

body[data-page="scavenger-hunt"] .hunt-answer {
  margin-top: 1rem;
              border-top: 1px solid rgba(255, 255, 255, .1);
              padding-top: 1rem;
}

body[data-page="scavenger-hunt"] .hunt-answer>summary {
  list-style: none;
              cursor: pointer;
              display: inline-flex;
              align-items: center;
              gap: .5rem;
}

body[data-page="scavenger-hunt"] .hunt-answer>summary::-webkit-details-marker {
  display: none;
}

body[data-page="scavenger-hunt"] .hunt-answer-panel {
  margin-top: 1rem;
              padding: 1rem 1.1rem;
              border-radius: 18px;
              border: 1px solid rgba(255, 255, 255, .12);
              background: rgba(255, 255, 255, .06);
}

body[data-page="scavenger-hunt"] .leader-note {
  margin-top: 1rem;
              padding: 1rem 1.1rem;
              border-radius: 18px;
              border: 1px solid rgba(255, 255, 255, .05);
              background: rgba(255, 255, 255, .05);
}

body[data-page="scavenger-hunt"] .hunt-answer-label {
  display: inline-block;
              margin-bottom: .4rem;
              font-weight: 700;
}

body[data-page="scavenger-hunt"] .route-card {
  margin-top: 1rem;
              padding: 1rem 1.1rem;
              border-radius: 18px;
              border: 1px solid rgba(255, 255, 255, .12);
              background: rgba(255, 255, 255, .05);
}

body[data-page="scavenger-hunt"] .scavenger-checklist {
  margin: 0;
              padding-left: 1.1rem;
}

body[data-page="scavenger-hunt"] #termsAccordion.print-answers .hunt-answer {
  display: block !important;
}

@media print {
body[data-page="scavenger-hunt"] .print-hide, body[data-page="scavenger-hunt"] #site-nav, body[data-page="scavenger-hunt"] #site-footer, body[data-page="scavenger-hunt"] .theme-overlay, body[data-page="scavenger-hunt"] .skip-link, body[data-page="scavenger-hunt"] .resource-actions, body[data-page="scavenger-hunt"] .terms-jump, body[data-page="scavenger-hunt"] #termsJumpSpacer {
    display: none !important;
  }

  body[data-page="scavenger-hunt"] body {
    background: #fff !important;
                    color: #000 !important;
  }

  body[data-page="scavenger-hunt"] .glass-panel, body[data-page="scavenger-hunt"] .soft-card, body[data-page="scavenger-hunt"] .terms-item, body[data-page="scavenger-hunt"] .hunt-answer-panel, body[data-page="scavenger-hunt"] .leader-note, body[data-page="scavenger-hunt"] .route-card {
    box-shadow: none !important;
                    background: #fff !important;
                    border-color: #ccc !important;
                    color: #000 !important;
  }

  body[data-page="scavenger-hunt"] .terms-item, body[data-page="scavenger-hunt"] .terms-item[open], body[data-page="scavenger-hunt"] .hunt-question, body[data-page="scavenger-hunt"] .hunt-answer {
    break-inside: avoid;
  }

  body[data-page="scavenger-hunt"] .terms-item>.terms-content, body[data-page="scavenger-hunt"] .hunt-question>.terms-content {
    display: block !important;
  }

  body[data-page="scavenger-hunt"] .hunt-answer {
    display: none !important;
  }

  body[data-page="scavenger-hunt"] #termsAccordion.print-answers .hunt-answer {
    display: block !important;
  }

  body[data-page="scavenger-hunt"] .hunt-answer>summary {
    display: none !important;
  }
}


/* ===== stedPlan ===== */
/* ── Stedfast theme (blue) ──────────────────────────── */

body[data-page="stedPlan"].stedfast-theme {
  --primary-rgb: 24 78 114;
        --hub-accent:  #184e72;
}

body[data-page="stedPlan"] [data-theme="dark"] body[data-page="stedPlan"].stedfast-theme {
  --primary-rgb: 56 122 171;
        --hub-accent:  #387aab;
}

/* ── Accent-stripe card ─────────────────────────────── */

body[data-page="stedPlan"] .sl-card {
  position: relative;
        overflow: hidden;
}

body[data-page="stedPlan"] .sl-card::before {
  content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, rgb(var(--primary-rgb)) 0%, rgba(var(--primary-rgb)/.4) 100%);
        border-radius: 6px 6px 0 0;
}

/* ── Eyebrow ────────────────────────────────────────── */

body[data-page="stedPlan"] .eyebrow {
  font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgb(var(--primary-rgb));
}

body[data-page="stedPlan"] .small-muted {
  font-size: 0.85rem; color: var(--muted);
}

body[data-page="stedPlan"] .section-gap {
  margin-bottom: 1.75rem;
}

/* ── Note pill ──────────────────────────────────────── */

body[data-page="stedPlan"] .note-pill {
  display: flex;
        gap: 0.6rem;
        align-items: flex-start;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        border-radius: 0.75rem;
        padding: 0.65rem 0.9rem;
        font-size: 0.83rem;
        color: var(--muted);
}

body[data-page="stedPlan"] .note-pill i {
  color: rgb(var(--primary-rgb)); margin-top: 0.1rem; flex-shrink: 0;
}

/* ── Badge ──────────────────────────────────────────── */

body[data-page="stedPlan"] .badge-soft {
  display: inline-flex;
        align-items: center;
        padding: 0.22rem 0.65rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 600;
        border: 1px solid rgba(var(--primary-rgb)/.28);
        color: rgb(var(--primary-rgb));
        background: rgba(var(--primary-rgb)/.07);
}

/* ── Capacity summary ───────────────────────────────── */

body[data-page="stedPlan"] .capacity-summary {
  display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-bottom: 0.5rem;
}

body[data-page="stedPlan"] .capacity-summary span {
  display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        border: 1px solid var(--surface-border);
        background: var(--surface-bg);
        color: var(--text-color);
}

body[data-page="stedPlan"] .capacity-summary span i {
  color: rgb(var(--primary-rgb));
}

/* ── Filter buttons ─────────────────────────────────── */

body[data-page="stedPlan"] .filters {
  margin-bottom: 0.75rem;
}

body[data-page="stedPlan"] .filters p {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0.4rem;
}

body[data-page="stedPlan"] .filter-btn-row {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}

/* ── Plan legend ────────────────────────────────────── */

body[data-page="stedPlan"] .plan-key {
  display: flex;
        flex-wrap: wrap;
        gap: 0.6rem 1.1rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        align-items: center;
}

body[data-page="stedPlan"] .plan-key__item {
  display: flex; align-items: center; gap: 0.35rem;
}

body[data-page="stedPlan"] .plan-key__swatch {
  width: 14px; height: 14px;
        border-radius: 3px;
        flex-shrink: 0;
        border: 1px solid rgba(0,0,0,.08);
}

body[data-page="stedPlan"] .plan-key__sleep {
  background: #b3cce8;
}

body[data-page="stedPlan"] .plan-key__facility {
  background: #f5dfa0;
}

body[data-page="stedPlan"] .plan-key__hall {
  background: #e8b3b3;
}

/* ── SVG plan wrapper ───────────────────────────────── */

body[data-page="stedPlan"] .plan-scroll {
  overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0.75rem;
}

body[data-page="stedPlan"] #stedfastPlanSvg {
  display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
}

/* SVG room styles — theme-aware */

body[data-page="stedPlan"] #stedfastPlanSvg .bg {
  fill: var(--surface-bg, #fafafa);
}

body[data-page="stedPlan"] #stedfastPlanSvg .corr {
  fill: var(--surface-border, #e8e8e8); stroke: rgba(0,0,0,.08); stroke-width: 1;
}

body[data-page="stedPlan"] #stedfastPlanSvg .i {
  fill: var(--panel-bg, #fff); stroke: rgba(0,0,0,.14); stroke-width: 2;
}

body[data-page="stedPlan"] #stedfastPlanSvg text {
  fill: var(--text-color, #172033); font: 600 18px var(--font-body, Poppins, sans-serif);
}

body[data-page="stedPlan"] #stedfastPlanSvg .divider {
  stroke: rgba(0,0,0,.18); stroke-width: 2;
}

/* Hotspots */

body[data-page="stedPlan"] #stedfastPlanSvg .hs {
  fill: transparent;
        cursor: pointer;
        transition: fill 0.15s ease;
}

body[data-page="stedPlan"] #stedfastPlanSvg .hs.sleep {
  --hs-color: #b3cce8;
}

body[data-page="stedPlan"] #stedfastPlanSvg .hs.facility {
  --hs-color: #f5dfa0;
}

body[data-page="stedPlan"] #stedfastPlanSvg .hs.hall {
  --hs-color: #e8b3b3;
}

body[data-page="stedPlan"] #stedfastPlanSvg .hs.is-filtered {
  fill: var(--hs-color); opacity: 0.55;
}

body[data-page="stedPlan"] #stedfastPlanSvg .hs:hover, body[data-page="stedPlan"] #stedfastPlanSvg .hs.is-selected {
  fill: var(--hs-color); opacity: 0.85;
}

body[data-page="stedPlan"] #stedfastPlanSvg .hs.dim {
  fill: transparent; opacity: 0.2;
}

/* ── Info panel ─────────────────────────────────────── */

body[data-page="stedPlan"] .info-panel {
  display: flex; flex-direction: column; height: 100%;
}

body[data-page="stedPlan"] .info-media {
  margin-bottom: 0.75rem;
}

body[data-page="stedPlan"] .info-media img {
  width: 100%;
        max-height: 180px;
        object-fit: cover;
        border-radius: 0.75rem;
        border: 1px solid var(--surface-border);
}

body[data-page="stedPlan"] .info-kv-row {
  display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.35rem 0;
        border-bottom: 1px solid var(--surface-border);
        font-size: 0.85rem;
}

body[data-page="stedPlan"] .info-kv-row:last-child {
  border-bottom: none;
}

body[data-page="stedPlan"] .info-kv-row .small-muted {
  flex-shrink: 0;
}

body[data-page="stedPlan"] .info-kv-row span:last-child {
  font-weight: 600; text-align: right;
}

body[data-page="stedPlan"] .info-note {
  font-size: 0.83rem;
        color: var(--muted);
        padding: 0.65rem 0.9rem;
        border-radius: 0.65rem;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        margin-top: 0.75rem;
}

/* ── Tooltip ────────────────────────────────────────── */

body[data-page="stedPlan"] .plan-tip {
  position: fixed;
        pointer-events: none;
        z-index: 200;
        padding: 0.4rem 0.75rem;
        border-radius: 0.5rem;
        background: var(--panel-bg);
        border: 1px solid var(--surface-border);
        box-shadow: 0 4px 14px rgba(0,0,0,.15);
        font-size: 0.8rem;
        opacity: 0;
        transition: opacity 0.12s ease;
        max-width: 200px;
}

body[data-page="stedPlan"] .plan-tip strong {
  display: block; font-size: 0.85rem; color: var(--text-color);
}

body[data-page="stedPlan"] .plan-tip small {
  color: var(--muted);
}

/* ── Reveal ─────────────────────────────────────────── */

body[data-page="stedPlan"] .reveal {
  opacity: 0; transform: translateY(14px); transition: opacity 520ms ease, transform 520ms ease;
}

body[data-page="stedPlan"] .reveal.is-in {
  opacity: 1; transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
body[data-page="stedPlan"] .reveal {
    opacity: 1 !important; transform: none !important;
  }
}

body[data-page="stedPlan"] html.reduce-motion .reveal {
  opacity: 1 !important; transform: none !important;
}

@media (max-width: 768px) {
body[data-page="stedPlan"] #stedfastPlanSvg text {
    font-size: 20px;
  }
}


/* ===== treasure-hunt ===== */
body[data-page="treasure-hunt"] .resource-hero .pill-row {
  display: flex;
        flex-wrap: wrap;
        gap: .6rem;
}

body[data-page="treasure-hunt"] .resource-hero .pill {
  display: inline-flex;
        align-items: center;
        padding: .45rem .8rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .08);
        font-size: .92rem;
        font-weight: 600;
}

body[data-page="treasure-hunt"] .resource-actions {
  display: flex;
        flex-wrap: wrap;
        gap: .75rem;
}

body[data-page="treasure-hunt"] .hunt-question {
  margin-bottom: 1rem;
}

body[data-page="treasure-hunt"] .hunt-answer {
  margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding-top: 1rem;
}

body[data-page="treasure-hunt"] .hunt-answer>summary {
  list-style: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: .5rem;
}

body[data-page="treasure-hunt"] .hunt-answer>summary::-webkit-details-marker {
  display: none;
}

body[data-page="treasure-hunt"] .hunt-answer-panel {
  margin-top: 1rem;
        padding: 1rem 1.1rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .06);
}

body[data-page="treasure-hunt"] .leader-note {
  margin-top: 1rem;
        padding: 1rem 1.1rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .05);
}

body[data-page="treasure-hunt"] .hunt-answer-label {
  display: inline-block;
        margin-bottom: .4rem;
        font-weight: 700;
}

body[data-page="treasure-hunt"] .route-card {
  margin-top: 1rem;
        padding: 1rem 1.1rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .05);
}

/* show answers when accordion has print mode */

body[data-page="treasure-hunt"] #termsAccordion.print-answers .hunt-answer {
  display: block !important;
}

@media print {
body[data-page="treasure-hunt"] .print-hide, body[data-page="treasure-hunt"] #site-nav, body[data-page="treasure-hunt"] #site-footer, body[data-page="treasure-hunt"] .theme-overlay, body[data-page="treasure-hunt"] .skip-link, body[data-page="treasure-hunt"] .resource-actions, body[data-page="treasure-hunt"] .terms-jump, body[data-page="treasure-hunt"] #termsJumpSpacer {
    display: none !important;
  }

  body[data-page="treasure-hunt"] body {
    background: #fff !important;
            color: #000 !important;
  }

  body[data-page="treasure-hunt"] .glass-panel, body[data-page="treasure-hunt"] .soft-card, body[data-page="treasure-hunt"] .terms-item, body[data-page="treasure-hunt"] .hunt-answer-panel, body[data-page="treasure-hunt"] .leader-note, body[data-page="treasure-hunt"] .route-card {
    box-shadow: none !important;
            background: #fff !important;
            border-color: #ccc !important;
            color: #000 !important;
  }

  body[data-page="treasure-hunt"] .terms-item, body[data-page="treasure-hunt"] .terms-item[open], body[data-page="treasure-hunt"] .hunt-question, body[data-page="treasure-hunt"] .hunt-answer {
    break-inside: avoid;
  }

  body[data-page="treasure-hunt"] .terms-item>.terms-content, body[data-page="treasure-hunt"] .hunt-question>.terms-content {
    display: block !important;
  }

  /* hide answers by default when printing */

  body[data-page="treasure-hunt"] .hunt-answer {
    display: none !important;
  }

  /* show answers when answer-print mode enabled */

  body[data-page="treasure-hunt"] #termsAccordion.print-answers .hunt-answer {
    display: block !important;
  }

  body[data-page="treasure-hunt"] .hunt-answer>summary {
    display: none !important;
  }
}

body[data-page="treasure-hunt"] .hunt-question {
  border-left: 3px solid rgba(80,140,220,.6);
    padding-left: .6rem;
}
body[data-page="campPlan"] .capacity-summary {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

body[data-page="campPlan"] .capacity-summary span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.8);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}

body[data-page="campPlan"] .capacity-summary span strong {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
}
body[data-page="campPlan"] .res-tab {
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 10px !important;
  padding: .7rem 1rem !important;
  font-weight: 600 !important;
  color: rgba(0, 0, 0, 0.7) !important;
  transition: all .15s ease !important;
}

body[data-page="campPlan"] .res-tab:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(0, 0, 0, 0.18) !important;
}

body[data-page="campPlan"] .res-tab.is-on {
  background: rgba(255, 255, 255, 0.97) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
  color: rgba(0, 0, 0, 0.9) !important;
}