/* ── SCU Design Tokens ── */
:root {
  --gold: #FFDC4B;
  --gold-light: #FFF3B0;
  --navy: #084E74;
  --navy-dark: #032436;
  --teal: #038391;
  --sage: #E4EFEE;
  --sage-light: #F4F9F8;
  --border: #CDDCE3;
  --border-light: #EDF3F6;
  --text: #032436;
  --text-muted: #6c757d;
  --white: #fff;
  --radius: 0.4rem;
  --radius-lg: 0.5rem;
  --gutter: 1.875rem;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Graphik Web", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem); margin-bottom: 0.5rem; }
h2 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.75rem); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--sage); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.35vw, 1.35rem); margin: 1.75rem 0 0.75rem; color: var(--navy-dark); }
h4 { font-size: 1.05rem; margin: 1.25rem 0 0.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--teal); }
strong { font-weight: 600; color: var(--navy-dark); }

ul, ol { margin: 0.75rem 0 1rem 1.5rem; }
li { margin-bottom: 0.25rem; }

/* ── Code ── */
code { font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 0.875rem; background: var(--sage-light); padding: 0.1rem 0.3rem; border-radius: 3px; }
pre { background: var(--sage-light); padding: 1rem 1.25rem; border-radius: var(--radius); overflow-x: auto; margin: 1rem 0; }
pre code { background: none; padding: 0; }

/* ── Skip link ── */
.skip-link { position: absolute; top: -100px; left: 0; background: var(--navy); color: var(--white); padding: 0.5rem 1rem; z-index: 1000; font-size: 0.875rem; }
.skip-link:focus { top: 0; }

/* ── Top Bar ── */
.top-bar { background: var(--navy-dark); color: var(--white); font-size: 0.8125rem; padding: 0.5rem 0; }
.top-bar__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: flex-end; gap: 1.5rem; }
.top-bar a { color: var(--gold); text-decoration: none; font-weight: 500; }
.top-bar a:hover { text-decoration: underline; }

/* ── Site Header ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; }
.site-header__inner { max-width: var(--max-width); margin: 0 auto; padding: 0.75rem var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.site-header__logo { display: flex; align-items: center; text-decoration: none; }
.site-header__logo-img { height: 44px; width: auto; }
.site-header__nav { display: flex; gap: 0.25rem; }
.site-header__nav a { padding: 0.5rem 0.875rem; border-radius: var(--radius); text-decoration: none; color: var(--navy-dark); font-size: 0.9375rem; font-weight: 500; transition: background .15s; }
.site-header__nav a:hover { background: var(--sage); color: var(--navy); }
.site-header__nav a.active { background: var(--navy); color: var(--white); }

/* ── Breadcrumbs ── */
.breadcrumbs { max-width: var(--max-width); margin: 0 auto; padding: 1.25rem var(--gutter) 0; font-size: 0.8125rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumbs span { margin: 0 0.375rem; }

/* ── Page wrapper ── */
.page-wrapper { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Banner ── */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 2.5rem var(--gutter); border-radius: var(--radius-lg); margin: 1.25rem 0 2rem; }
.page-banner h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-banner__meta { font-size: 0.875rem; opacity: .85; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; }
.page-banner__meta .badge { opacity: 1; }

/* ── Two-column layout ── */
.page-layout { display: grid; grid-template-columns: 220px 1fr; grid-template-areas: "sidebar content"; gap: 2.5rem; margin-bottom: 3rem; }
.page-sidebar { grid-area: sidebar; }
.page-content { grid-area: content; }
@media (max-width: 860px) { .page-layout { grid-template-columns: 1fr; } }

/* ── Sidebar ── */
.page-sidebar { position: sticky; top: 80px; align-self: start; padding-top: 0.5rem; }
.sidebar-nav { list-style: none; margin: 0; }
.sidebar-nav li { margin-bottom: 0.125rem; }
.sidebar-nav a { display: block; padding: 0.5rem 0.75rem; border-radius: var(--radius); text-decoration: none; color: var(--text); font-size: 0.875rem; font-weight: 500; transition: background .15s; border-left: 3px solid transparent; }
.sidebar-nav a:hover { background: var(--sage-light); color: var(--navy); }
.sidebar-nav a.active { background: var(--sage); color: var(--navy); border-left-color: var(--navy); font-weight: 600; }
/* Sidebar item title and description (for section page sidebars) */
.sidebar-nav__title { display: block; font-weight: 600; }
.sidebar-nav__desc { display: block; font-size: 0.8125rem; color: var(--text-muted); font-weight: 400; margin-top: 0.125rem; }

.sidebar-nav__heading { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); padding: 1rem 0.75rem 0.25rem; font-weight: 600; font-family: Montserrat, sans-serif; }
.sidebar-nav__heading:first-child { padding-top: 0.25rem; }
@media (max-width: 860px) { .page-layout { grid-template-columns: 1fr; grid-template-areas: "content" "sidebar"; } .page-sidebar { position: static; border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 2rem; order: 2; } .sidebar-nav { display: flex; flex-wrap: wrap; gap: 0.25rem; } .sidebar-nav a { border-left: none; border-bottom: 3px solid transparent; border-radius: 0; } .sidebar-nav a.active { border-bottom-color: var(--navy); } .sidebar-nav__heading { width: 100%; } }

/* ── Content ── */
.page-content { min-width: 0; }

/* ── Callout ── */
.callout { background: var(--sage-light); border-left: 4px solid var(--navy); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; font-size: 0.9375rem; }
.callout--gold { border-left-color: var(--gold); background: #FFFDF5; }
.callout p:last-child { margin-bottom: 0; }
.callout--deadline { border-left-color: #dc3545; background: #FFF5F5; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; margin: 1.25rem 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; line-height: 1.5; }
thead { border-bottom: 2px solid var(--navy); }
th { text-align: left; padding: 0.75rem 1rem; font-family: Montserrat, sans-serif; font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: .03em; color: var(--navy); background: var(--white); }
td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-light); }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--sage-light); }
.table-recommended { background: #FFFDF5; }
.table-recommended td:first-child::after { content: " ★"; color: var(--gold); font-size: 0.75rem; }

/* ── Step list ── */
.steps ol { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps ol > li { counter-increment: step; position: relative; padding: 0.75rem 1rem 0.75rem 3.5rem; margin-bottom: 0.375rem; border-radius: var(--radius); border: 1px solid var(--border-light); }
.steps ol > li::before { content: counter(step); position: absolute; left: 0.75rem; top: 0.75rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--navy); color: var(--white); font-family: Montserrat, sans-serif; font-weight: 700; font-size: 0.875rem; display: flex; align-items: center; justify-content: center; }
.steps ol > li ul, .steps ol > li ol { margin: 0.5rem 0 0 1.25rem; }
.steps ol > li li { padding: 0.25rem 0; margin: 0; border: none; }
.steps ol > li li::before { display: none; }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1rem 0;
  font-family: Montserrat, sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--navy-dark); text-align: left;
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--navy); }
.faq-q::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--navy);
  width: 1.5rem; text-align: center; flex-shrink: 0; transition: transform 0.2s;
}
.faq-q[aria-expanded="true"]::after { content: '\2212'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-a[aria-hidden="false"] { max-height: 30rem; padding: 0 0 1.25rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ── Cards ── */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.info-card { padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: 0 2px 12px rgba(3,36,54,.06); background: var(--white); }
.info-card h4 { font-size: 0.9375rem; margin: 0 0 0.5rem; }
.info-card p { font-size: 0.875rem; margin: 0; color: var(--text-muted); }

/* ── Badge ── */
.badge { display: inline-block; padding: 0.2rem 0.625rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.badge--gold { background: var(--gold); color: #000; }
.badge--navy { background: var(--navy); color: var(--white); }

/* ── Footer ── */
.site-footer { background: var(--navy-dark); color: var(--white); margin-top: 3rem; padding: 2.5rem 0 1.5rem; }
.site-footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.site-footer h4 { color: var(--gold); font-size: 0.875rem; margin-bottom: 0.75rem; border: none; padding: 0; font-family: Montserrat, sans-serif; }
.site-footer p, .site-footer a { font-size: 0.8125rem; color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer__bottom { max-width: var(--max-width); margin: 2rem auto 0; padding: 1.25rem var(--gutter) 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.75rem; color: rgba(255,255,255,.5); }

/* ── Category nav grid (home page) ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.category-card { padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--white); box-shadow: 0 2px 12px rgba(3,36,54,.06); text-decoration: none; color: var(--text); transition: transform .15s, box-shadow .15s; }
.category-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(3,36,54,.1); color: var(--text); }
.category-card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; color: var(--navy); }
.category-card p { font-size: 0.875rem; margin: 0 0 1rem; color: var(--text-muted); }
.category-card__count { font-size: 0.75rem; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── Article list ── */
.article-list { list-style: none; margin: 1rem 0; }
.article-list li { margin-bottom: 0.5rem; }
.article-list a { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius); text-decoration: none; color: var(--navy); border: 1px solid var(--border-light); transition: background .15s, border-color .15s; }
.article-list a:hover { background: var(--sage-light); border-color: var(--border); }
.article-list a .article-list__title { font-weight: 600; }
.article-list a .article-list__desc { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.125rem; }

/* ── Home hero ── */
.home-hero {
  background: linear-gradient(135deg, #0a5a82 0%, var(--navy) 42%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin: 1.25rem 0 2.5rem;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}
.home-hero::before {
  /* subtle radial glow behind Lockie */
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,220,75,.16) 0%, rgba(255,220,75,0) 65%);
  pointer-events: none;
}
.home-hero__text {
  flex: 1;
  padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}
.home-hero__eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.home-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 1.9rem + 2vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 600;
}
.home-hero__lede {
  font-size: 1.125rem;
  line-height: 1.55;
  opacity: .92;
  max-width: 34rem;
  margin: 0 0 1.75rem;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.home-hero__cta,
.home-hero__cta--ghost {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.home-hero__cta { background: var(--gold); color: #032436; }
.home-hero__cta:hover {
  background: #ffe166;
  color: #032436;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,220,75,.4);
}
.home-hero__cta--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.home-hero__cta--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.home-hero__figure {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 0 2rem 0 0.5rem;
  display: flex;
  align-items: flex-end;
}
.home-hero__figure img {
  display: block;
  height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform-origin: bottom right;
}

@media (max-width: 760px) {
  .home-hero { flex-direction: column; align-items: stretch; min-height: 0; }
  .home-hero__figure { justify-content: center; padding: 0 0 1.5rem; }
  .home-hero__figure img { height: 220px; }
  .home-hero__text { padding-bottom: 1.5rem; }
}

/* ── Poster grid ── */
.poster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.poster-card { border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1.25rem; background: var(--white); }
.poster-card__preview { overflow: hidden; border-radius: 6px; }
.poster-card p { margin: 0.5rem 0 0; }

/* ── FAQ block ── */
.faq p { margin-bottom: 0.75rem; }
.faq p strong { display: block; margin-bottom: 0.25rem; font-family: Montserrat, sans-serif; }

/* ── Homepage: announcements ── */
.announcement-grid { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 2rem; }
.announcement-card {
  display: block; padding: 1.5rem 1.75rem; border-radius: var(--radius-lg);
  border: 2px solid var(--gold); background: linear-gradient(135deg, #FFFDF5 0%, #FFF8D0 100%);
  text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s;
}
.announcement-card:hover { box-shadow: 0 4px 20px rgba(3,36,54,.1); transform: translateY(-1px); color: var(--text); }
.announcement-card h3 { font-size: 1.15rem; margin: 0 0 0.375rem; color: var(--navy-dark); }
.announcement-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }
.announcement-card__badges { margin-bottom: 0.5rem; }
.announcement-card__action { font-size: 0.8125rem; color: var(--navy); font-weight: 600; display: inline-block; margin-top: 0.75rem; }

/* ── Homepage: awareness cards ── */
.awareness-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin: 0 0 2rem; }
.awareness-card {
  display: block; padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); background: var(--white);
  box-shadow: 0 2px 12px rgba(3,36,54,.06);
  text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s;
}
.awareness-card:hover { box-shadow: 0 4px 20px rgba(3,36,54,.1); transform: translateY(-2px); color: var(--text); }
.awareness-card h3 { font-size: 1.05rem; margin: 0 0 0.375rem; color: var(--navy); }
.awareness-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ── Homepage section headings ── */
.home-section { margin-bottom: 2rem; }
.home-section__heading {
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); font-family: Montserrat, sans-serif; font-weight: 600;
  margin: 0 0 1rem; padding: 0; border: none;
}

/* ── Homepage CTA button ── */
.home-cta {
  display: inline-block; padding: 0.625rem 1.25rem; border-radius: var(--radius);
  background: var(--navy); color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 0.9375rem;
}
.home-cta:hover { background: var(--teal); color: var(--white); }

/* ── Badge variants ── */
.badge--alert { background: #dc3545; color: var(--white); }

/* ── Lockie mascot ── */
.lockie-intro { display: flex; gap: 2rem; align-items: center; margin: 1.5rem 0; }
.lockie-intro__text { flex: 1; }
.lockie-hero { flex-shrink: 0; height: 240px; width: auto; object-fit: contain; }
.lockie-tips { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin: 1.5rem 0; }
.lockie-tip { padding: 1.25rem 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-light); background: var(--sage-light); }
.lockie-tip strong { display: block; font-family: Montserrat, sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: 0.375rem; }
.lockie-tip p { margin: 0; }
@media (max-width: 640px) { .lockie-intro { flex-direction: column; text-align: center; } .lockie-hero { height: 200px; } }

/* ── Section/category landing ── */
.section-category-heading { font-size: 1.15rem; margin: 1.75rem 0 0.75rem; color: var(--navy); }
.kb-category-heading { font-size: 1rem; margin: 1.5rem 0 0.5rem; color: var(--navy-dark); }
.view-all { display: inline-block; font-size: 0.875rem; font-weight: 600; color: var(--navy); text-decoration: none; margin-bottom: 0.75rem; }
.view-all:hover { color: var(--teal); text-decoration: underline; }

/* ── Report incident section ── */
.report-incident {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  margin: 0 0 2rem;
}
.report-incident__icon { flex-shrink: 0; color: var(--navy); margin-top: 0.125rem; }
.report-incident__icon svg { width: 2rem; height: 2rem; }
.report-incident__text { flex: 1; min-width: 0; }
.report-incident__title { color: var(--navy-dark); font-size: 1.25rem; margin: 0 0 0.25rem; border: none; padding: 0; }
.report-incident__intro { font-size: 0.9375rem; color: var(--text); margin: 0 0 0.875rem; }
.report-incident__list { list-style: none; margin: 0; padding: 0; }
.report-incident__list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text);
  padding: 0.125rem 0;
}
.report-incident__list svg { flex-shrink: 0; width: 1rem; height: 1rem; color: var(--teal); margin-top: 0.15rem; }
.report-incident__action { flex-shrink: 0; align-self: center; }
.report-incident__button {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #032436;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.report-incident__button:hover { background: #ffe166; }
@media (max-width: 760px) {
  .report-incident { flex-direction: column; }
  .report-incident__action { align-self: stretch; }
  .report-incident__button { text-align: center; display: block; }
}

/* ── KB card grid (homepage) ── */
.kb-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.kb-card {
  display: block; padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); background: var(--white);
  box-shadow: 0 2px 12px rgba(3,36,54,.06);
  text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s, border-color .15s;
}
.kb-card:hover { box-shadow: 0 4px 20px rgba(3,36,54,.1); transform: translateY(-2px); border-color: var(--border); color: var(--text); }
.kb-card h3 { font-size: 1.05rem; margin: 0 0 0.375rem; color: var(--navy); }
.kb-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 0.75rem; }
.kb-card__count { font-size: 0.75rem; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── Search ── */
.search-box { display: flex; align-items: center; gap: 0.375rem; margin-right: 1rem; }
.search-box input {
  padding: 0.375rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.875rem; width: 180px; transition: border-color .15s;
}
.search-box input:focus { outline: none; border-color: var(--navy); }
.search-box button {
  padding: 0.375rem 0.625rem; border: none; background: var(--navy); color: var(--white);
  border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.search-box button:hover { background: var(--teal); }
.search-results { margin-top: 2rem; }

/* ── Help cards ── */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.help-card {
  display: block; padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); background: var(--white);
  text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s;
}
.help-card:hover { box-shadow: 0 4px 20px rgba(3,36,54,.1); transform: translateY(-2px); }
.help-card h3 { font-size: 1rem; margin: 0 0 0.375rem; color: var(--navy); }
.help-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 0.75rem; }
.help-card__contact { font-size: 0.8125rem; color: var(--navy); font-weight: 600; }

/* ── Badge audience ── */
.badge--audience { background: var(--sage); color: var(--navy); font-size: 0.75rem; }

/* ── Policies & Procedures (homepage) ── */
.doc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.doc-card {
  display: block; padding: 1.25rem 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); background: var(--white);
  text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s, border-color .15s;
}
.doc-card:hover { box-shadow: 0 4px 20px rgba(3,36,54,.1); transform: translateY(-1px); border-color: var(--border); color: var(--text); }
.doc-card__header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.375rem; }
.doc-card__header h4 { font-size: 1rem; margin: 0; color: var(--navy); }
.doc-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 0.75rem; line-height: 1.5; }
.doc-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.75rem; font-size: 0.75rem; color: var(--text-muted); }
.doc-card__version { font-family: Montserrat, sans-serif; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.doc-card__date { font-size: 0.75rem; color: var(--text-muted); }

/* ── Status badges ── */
.badge--approved { background: #155724; color: #fff; }
.badge--draft { background: #c08400; color: #fff; }
.badge--planned { background: #4a5568; color: #fff; }

/* ── Staff-only / scope badges ── */
.badge--staff { background: var(--navy); color: var(--gold); }

/* ── Mockup note banner ── */
.mockup-note {
  background: #FFF3B0;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--navy-dark);
}

/* ── Section tile cards (homepage) ── */
.section-tile {
  display: block;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(3,36,54,.06);
  margin: 0;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.section-tile:hover {
  box-shadow: 0 8px 24px rgba(3,36,54,.12);
  transform: translateY(-3px);
  border-color: var(--border);
  color: var(--text);
}
.section-tile__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.section-tile__heading {
  font-size: 1.125rem;
  margin: 0;
  color: var(--navy-dark);
  border: none;
  padding: 0;
}
.section-tile__count {
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.section-tile__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.section-tile__cta {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}
.section-tile__arrow {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}
.section-tile:hover .section-tile__arrow {
  transform: translateX(4px);
}

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
@media print { .site-header, .top-bar, .page-sidebar, .site-footer, .breadcrumbs { display: none; } .page-layout { display: block; } .page-banner { background: none; color: var(--text); padding: 1rem 0; } .page-banner h1 { color: var(--navy); } }