/* ------- Page layout ------- */
:root{
  --maroon: #8c1f2f;
  --gold:   #f2c14e;
  --ink:    #151515;
  --white:  #ffffff;
}

/* ---------- Reset ---------- */
*{ box-sizing: border-box; margin:0; padding:0; }
img{ max-width:100%; display:block; }

/* ---------- Base ---------- */
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

/* ---------- Header ---------- */
.site-header{
  display: grid;
  grid-template-columns: 220px 1fr 150px; /* left menu / center title / right logo */
  align-items: center;
  gap: 1rem;
  padding: 20px 24px;
  background: var(--white);
  position: relative;
  z-index: 10;
}

/* Left vertical menu */
.side-links{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-links a{
  font-family: Oswald, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-decoration: none;
  color: var(--maroon);
}
.side-links a[aria-current="page"]{
  font-weight: 700;
}

.container {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.section-title{ font-family: Anton, Impact, Oswald, sans-serif; color: var(--maroon); }
.h3{ font-family: Oswald, Arial, sans-serif; font-size: 22px; letter-spacing:.3px; margin-bottom:12px; color: var(--maroon); }
.h4{ font-family: Oswald, Arial, sans-serif; font-size: 18px; margin: 16px 0 8px; color: var(--maroon); }
.muted{ color:#6b6b6b; }

/* ------- Cards / callouts ------- */
.card{
  background:#fff;
  border: 1px solid #e9e9e9;
  border-top: 6px solid var(--gold);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.card + .card{ margin-top: 18px; }
.card--header{ padding-top: 24px; }
.callout{
  background: var(--maroon);
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Eyebrow + meta */
.eyebrow{
  text-transform: uppercase;
  color: var(--maroon);
  font-family: Oswald, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.dates{ margin: 6px 0 8px; font-size: 18px; }
.pill{
  display:inline-block;
  margin: 4px 0 14px;
  padding: 6px 12px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
  color: var(--maroon);
  background: #fff7e0; /* subtle gold-tinted bg */
}

/* ------- Grid ------- */
.grid-2{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin: 18px 0;
}
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* ------- Parade key points ------- */
.key-points{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.key-points li{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items:flex-start;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e6e6e6;
}
.key-points li:last-child{ border-bottom:none; }
.key-points .label{
  font-family: Oswald, Arial, sans-serif;
  color: var(--maroon);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing:.08em;
}
.key-points .value{ line-height: 1.5; }

/* ------- Policy block ------- */
.policy{ border-left: 6px solid var(--maroon); }
.list-check{
  margin: 10px 0 8px 0;
  padding-left: 0;
  padding-bottom: ;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list-check > li{
  position: relative;
  padding-left: 28px;
}
.list-check > li::before{
  content: "✔";
  position: absolute; left: 0; top: 2px;
  font-weight: 700;
  color: var(--gold);
}
.loiter{
  margin-top: 8px;
  padding-left: 18px;
  list-style: disc;
}
.note{
  margin-top: 12px;
  padding: 12px 14px;
  background: #fff7f1;
  border: 1px solid #ffe0b3;
  border-radius: 10px;
}
.signed{ margin-top: 14px; font-weight: 600; }

/* ke/* 1) Use a shared max width + fluid gutters to keep content centered */
:root{ --page-max: 1100px; }

.site-header,
.container{
  max-width: var(--page-max);
  margin-inline: auto;                     /* centers the block */
  padding-inline: clamp(16px, 4vw, 24px);  /* comfy side padding on small screens */
}
/* ----- Footer look & spacing ----- */
.site-footer{
  border-top: 8px solid var(--gold);     /* gold accent line */
  background: #fff;
  padding: 24px 0 36px;                  /* breathing room above bottom edge */
  box-shadow: 0 -1px 0 rgba(0,0,0,.06) inset; /* subtle separation */
  /* Gap above the bottom gold border/footer */
  margin-top: clamp(28px, 6vw, 80px);
}

}

/* optional maroon micro-stripe inside the footer */
.site-footer::before{
  content: "";
  display: block;
  height: 6px;
  background: var(--maroon);
  opacity: .95;
}

/* center the footer content to the same page width */
.footer-inner{
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
  text-align: center;
}
.footer-text{
  margin-top: 14px;
  font-size: 14px;
  color: #6b6b6b;
}


/* 2) Center the header layout on smaller screens */
@media (max-width: 900px){
  .site-header{
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "menu"
      "logo";
    justify-items: center;
    text-align: center;
    row-gap: 12px;
  }
  .page-title{ margin-bottom: 4px; }

  /* Make the nav wrap and center */
  .side-links{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  /* Center the logo block too */
  .logo{ justify-self: center; }
}

/* 3) Ensure content cards don’t hug the edges on very small phones */
@media (max-width: 520px){
  .container{ padding-inline: 16px; }
}
ep existing .below-spacer from home page */
