:root {
  --hps-yellow: #fac800;
  --hps-yellow-dark: #e6b800;
  --hps-steel: #646e6e;
  --hps-ink: #1c2222;
  --hps-charcoal: #303838;
  --hps-paper: #f7f8f7;
  --hps-paper-deep: #eef0ef;
  --hps-line: #dce0e0;
  --hps-muted: #6b7575;
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --section: clamp(4.5rem, 8vw, 7.5rem);
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hps-ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: linear-gradient(180deg, var(--hps-paper) 0%, var(--hps-paper-deep) 100%);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 560; letter-spacing: -0.03em; line-height: 1.08; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }
.shell-wide { width: min(1360px, calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.section-pad { padding-block: var(--section); }
.display-xl { font-size: clamp(2.4rem, 6vw, 4.75rem); letter-spacing: -0.035em; line-height: 1.04; }
.display-lg { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.display-md { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.lead { font-size: 1.05rem; color: var(--hps-muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--hps-steel); font-size: 0.78rem; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 1.25rem; height: 2px; background: var(--hps-yellow); }
.label-caps { font-size: 0.78rem; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
.draw-line { display: block; height: 2px; width: 3.5rem; background: var(--hps-yellow); margin-top: 1.25rem; }
.btn-primary, .btn-ghost, .btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 3rem; padding: 0.85rem 1.35rem; font-size: 0.92rem; font-weight: 700; border: 0; cursor: pointer;
  transition: 0.25s var(--ease);
}
.btn-primary { background: var(--hps-yellow); color: var(--hps-ink); }
.btn-primary:hover { background: var(--hps-yellow-dark); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.35); color: #fff; background: transparent; font-weight: 650; }
.btn-ghost:hover { border-color: var(--hps-yellow); color: var(--hps-yellow); }
.btn-dark { background: var(--hps-ink); color: #fff; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 650; color: var(--hps-charcoal); }
.link-arrow:hover { color: var(--hps-ink); }
.media-frame { position: relative; overflow: hidden; background: var(--hps-charcoal); }
.media-frame::before, .media-frame::after {
  content: ""; position: absolute; z-index: 3; pointer-events: none; width: 14px; height: 14px;
  border-color: var(--hps-yellow); border-style: solid;
}
.media-frame::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.media-frame::after { right: 8px; bottom: 8px; border-width: 0 2px 2px 0; }
.media-fill {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.group:hover .media-fill { transform: scale(1.04); }

/* Header */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.site-header.is-solid {
  background: rgba(247,248,247,0.94);
  border-bottom: 1px solid rgba(220,224,220,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(28,34,34,0.06);
}
.site-header.is-transparent { background: transparent; border-bottom: 1px solid transparent; box-shadow: none; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  min-height: 4.25rem; height: 4.25rem;
}
@media (min-width: 768px) { .header-inner { min-height: 4.75rem; height: 4.75rem; } }
.header-logo { position: relative; z-index: 2; flex-shrink: 0; }
.header-logo img { height: 2.75rem; width: auto; transition: transform 0.25s var(--ease); }
.header-logo:hover img { transform: translateY(-1px); }
@media (min-width: 768px) { .header-logo img { height: 3.25rem; } }

.nav-desktop { display: none; align-items: center; gap: 0.1rem; }
@media (min-width: 1280px) { .nav-desktop { display: flex; } .nav-toggle { display: none !important; } }

.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.55rem 0.7rem; font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--hps-charcoal); transition: color 0.2s;
  border-radius: 2px;
}
@media (min-width: 1536px) { .nav-link { padding: 0.55rem 0.85rem; } }
.site-header.is-transparent .nav-link { color: rgba(255,255,255,0.9); }
.nav-link::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.35rem; height: 2px;
  background: var(--hps-yellow); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--hps-ink); }
.site-header.is-transparent .nav-link:hover { color: #fff; }
.nav-link.is-active { color: var(--hps-ink); font-weight: 700; }
.site-header.is-transparent .nav-link.is-active { color: #fff; }
.nav-chevron { opacity: 0.55; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-item.is-open .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Simple dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 0.35rem); left: 0; min-width: 14rem;
  background: #fff; border: 1px solid var(--hps-line);
  padding: 0.45rem 0; z-index: 30;
  box-shadow: 0 18px 40px rgba(28,34,34,0.1);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav-item.is-open .nav-dropdown, .nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 0.6rem 1rem; font-size: 0.9rem; color: var(--hps-charcoal);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav-dropdown a:hover { background: var(--hps-paper); color: var(--hps-ink); padding-left: 1.15rem; }

/* Mega menu */
.nav-mega {
  position: absolute; left: 50%; top: calc(100% + 0.15rem);
  transform: translateX(-50%) translateY(8px);
  width: min(44rem, calc(100vw - 2rem));
  z-index: 30; pointer-events: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s;
}
.nav-item.has-mega.is-open .nav-mega, .nav-item.has-mega:hover .nav-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-mega-panel {
  background: #fff; border: 1px solid var(--hps-line);
  box-shadow: 0 22px 50px rgba(28,34,34,0.12);
  overflow: hidden;
}
.nav-mega-panel::before {
  content: ""; display: block; height: 3px; background: linear-gradient(90deg, var(--hps-yellow), rgba(250,200,0,0.35));
}
.nav-mega-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--hps-line); background: linear-gradient(180deg, #fff, var(--hps-paper));
}
.nav-mega-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hps-steel);
}
.nav-mega-lead { margin-top: 0.2rem; font-size: 0.88rem; color: var(--hps-muted); }
.nav-mega-all {
  display: inline-flex; align-items: center; gap: 0.35rem;
  min-height: 2.35rem; padding: 0.45rem 0.9rem;
  background: var(--hps-ink); color: #fff; font-size: 0.82rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.nav-mega-all:hover { background: var(--hps-charcoal); transform: translateY(-1px); }
.nav-mega-grid {
  display: grid; gap: 0; grid-template-columns: 1fr;
  max-height: min(52vh, 22rem); overflow: auto;
}
@media (min-width: 640px) { .nav-mega-grid { grid-template-columns: 1fr 1fr; } }
.nav-mega-card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.85rem 1.1rem; border-top: 1px solid rgba(220,224,220,0.65);
  transition: background 0.2s;
}
.nav-mega-card:hover { background: var(--hps-paper); }
.nav-mega-thumb {
  width: 3.25rem; height: 3.25rem; flex-shrink: 0;
  background-size: cover; background-position: center; background-color: var(--hps-charcoal);
  border: 1px solid var(--hps-line);
}
.nav-mega-copy { display: grid; gap: 0.2rem; min-width: 0; }
.nav-mega-copy strong { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; letter-spacing: -0.02em; }
.nav-mega-copy small { font-size: 0.78rem; line-height: 1.45; color: var(--hps-muted); }

.header-actions { display: flex; align-items: center; gap: 0.55rem; position: relative; z-index: 2; }
.header-cta { min-height: 2.5rem !important; padding: 0.55rem 1rem !important; font-size: 0.85rem !important; }
@media (max-width: 639px) { .header-actions > .header-cta { display: none; } }

.lang-switch {
  display: inline-flex; align-items: center; gap: 0;
  padding: 0.2rem; border: 1px solid var(--hps-line); background: rgba(255,255,255,0.65);
  border-radius: 999px;
}
.site-header.is-transparent .lang-switch {
  border-color: rgba(255,255,255,0.22); background: rgba(28,34,34,0.25);
}
.lang-switch a {
  min-width: 2rem; padding: 0.3rem 0.45rem; text-align: center;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; color: var(--hps-muted);
  border-radius: 999px; transition: background 0.2s, color 0.2s;
}
.lang-switch a.is-active {
  background: var(--hps-yellow); color: var(--hps-ink);
}
.site-header.is-transparent .lang-switch a { color: rgba(255,255,255,0.62); }
.site-header.is-transparent .lang-switch a.is-active { background: var(--hps-yellow); color: var(--hps-ink); }
.lang-sep { width: 1px; height: 0.85rem; background: var(--hps-line); }
.site-header.is-transparent .lang-sep { background: rgba(255,255,255,0.2); }

.nav-toggle {
  display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center;
  border: 0; background: transparent; cursor: pointer; color: var(--hps-ink);
}
.site-header.is-transparent .nav-toggle { color: #fff; }
.nav-toggle-bar {
  display: block; width: 1.25rem; height: 2px; background: currentColor; margin: 3px 0;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav-backdrop {
  position: fixed; inset: 0; z-index: 39; background: rgba(28,34,34,0.45);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.mobile-nav-backdrop.is-open { opacity: 1; }

.mobile-nav {
  position: fixed; inset-inline: 0; top: 4.25rem; z-index: 41;
  max-height: calc(100vh - 4.25rem); overflow: auto;
  background: var(--hps-paper);
  border-top: 1px solid var(--hps-line);
  box-shadow: 0 18px 40px rgba(28,34,34,0.12);
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), visibility 0.28s;
}
@media (min-width: 768px) { .mobile-nav { top: 4.75rem; max-height: calc(100vh - 4.75rem); } }
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.85rem var(--gutter); border-bottom: 1px solid var(--hps-line);
}
.mobile-nav-head-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-switch--mobile { background: #fff; }
.mobile-nav-list { padding: 0 var(--gutter) 1.5rem; }
.mobile-nav-group { border-bottom: 1px solid rgba(220,224,220,0.75); }
.mobile-nav-group.is-active .mobile-nav-link { color: var(--hps-ink); }
.mobile-nav-row { display: flex; align-items: center; gap: 0.25rem; }
.mobile-nav-link {
  flex: 1; display: block; padding: 0.9rem 0; font-size: 0.98rem; font-weight: 600; color: var(--hps-charcoal);
}
.mobile-nav-expand {
  display: inline-flex; width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center;
  border: 0; background: transparent; color: var(--hps-steel); cursor: pointer;
}
.mobile-nav-plus {
  display: block; font-size: 1.2rem; line-height: 1; transition: transform 0.22s var(--ease);
}
.mobile-nav-expand[aria-expanded="true"] .mobile-nav-plus { transform: rotate(45deg); }
.mobile-nav-sub {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.32s var(--ease), opacity 0.25s var(--ease), padding 0.25s;
  padding-left: 0.85rem; border-left: 2px solid rgba(250,200,0,0.85);
}
.mobile-nav-sub.is-open { max-height: 28rem; opacity: 1; padding-bottom: 0.75rem; }
.mobile-nav-sub-all {
  display: block; padding: 0.35rem 0 0.55rem; font-size: 0.82rem; font-weight: 700; color: var(--hps-steel);
}
.mobile-nav-sub-link {
  display: block; padding: 0.45rem 0; font-size: 0.9rem; color: var(--hps-muted);
  transition: color 0.2s;
}
.mobile-nav-sub-link:hover { color: var(--hps-ink); }
.mobile-nav-accent {
  pointer-events: none; position: sticky; bottom: 0; left: 0;
  display: block; width: 4rem; height: 2px; background: var(--hps-yellow); margin-top: -2px;
}

/* Hero */
.page-hero, .home-hero {
  position: relative; isolation: isolate; overflow: hidden; background: var(--hps-ink); color: #fff;
  padding-top: 4.5rem;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg .media-fill { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,34,34,0.92) 8%, rgba(28,34,34,0.55) 55%, rgba(28,34,34,0.35) 100%);
}
.hero-content {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 46vh; padding: 4rem 0;
}
.home-hero .hero-content { min-height: 78vh; padding-top: 6rem; }
.hero-content .eyebrow { color: var(--hps-yellow); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* Grids / cards */
.portal-grid { display: grid; gap: 0.75rem; margin-top: 3rem; }
@media (min-width: 768px) { .portal-grid { grid-template-columns: 1fr 1fr; } }
.portal-card { display: block; position: relative; overflow: hidden; color: #fff; }
.portal-card .media-frame { aspect-ratio: 16/10; }
@media (min-width: 768px) { .portal-card .media-frame { aspect-ratio: 5/3; } }
.portal-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,34,34,0.88), rgba(28,34,34,0.25), transparent);
}
.portal-card .body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem 1.75rem; }
.catalog-grid { display: grid; gap: 0.75rem; margin-top: 3rem; }
@media (min-width: 640px) { .catalog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .catalog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.catalog-card .media-frame { aspect-ratio: 4/3; }
.catalog-card .body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.25rem 1.5rem; color: #fff; }
.catalog-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,34,34,0.84), rgba(28,34,34,0.25), transparent);
}

.partners-bar {
  border-bottom: 1px solid var(--hps-line); background: rgba(255,255,255,0.8);
  padding: 1.15rem 0;
}
.partners-bar-inner { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; justify-content: space-between; }
.partner-list { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0; }
.partner-list span { font-family: var(--font-display); font-weight: 600; color: rgba(28,34,34,0.75); }
.partner-sep { width: 1px; height: 1rem; background: var(--hps-line); margin-inline: 1rem; display: inline-block; }

.two-col { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }

.news-featured { display: grid; gap: 2.5rem; margin-top: 3rem; align-items: start; }
@media (min-width: 1024px) { .news-featured { grid-template-columns: 1.35fr 1fr; gap: 3.5rem; } }
.news-side { border-top: 1px solid var(--hps-line); }
@media (min-width: 1024px) { .news-side { border-top: 0; border-left: 1px solid var(--hps-line); padding-left: 2.5rem; } }
.news-side-item { display: flex; gap: 1.25rem; padding: 1.75rem 0; border-top: 1px solid var(--hps-line); }
.news-side-item:first-child { border-top: 0; padding-top: 0; }
.news-thumb { width: 6.5rem; height: 6.5rem; flex-shrink: 0; display: none; }
@media (min-width: 640px) { .news-thumb { display: block; } }

.timeline { max-width: 56rem; margin-top: 3.5rem; }
.timeline-item { display: grid; grid-template-columns: 1rem 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .timeline-item { grid-template-columns: 8.5rem 1rem 1fr; gap: 1.5rem; } }
.timeline-date { display: none; text-align: right; padding-top: 0.25rem; }
@media (min-width: 768px) { .timeline-date { display: block; } }
.timeline-rail { position: relative; display: flex; justify-content: center; }
.timeline-rail::before { content: ""; position: absolute; top: 0.75rem; bottom: 0; width: 1px; background: var(--hps-line); }
.timeline-item.is-last .timeline-rail::before { display: none; }
.timeline-dot {
  position: relative; z-index: 1; margin-top: 0.5rem; width: 0.625rem; height: 0.625rem;
  border-radius: 999px; background: var(--hps-yellow); box-shadow: 0 0 0 3px var(--hps-paper);
}
.timeline-body { padding-bottom: 3rem; padding-left: 0.25rem; }
.timeline-body .mobile-date { margin-bottom: 0.5rem; }
@media (min-width: 768px) { .timeline-body .mobile-date { display: none; } }

.cta-band { background: var(--hps-yellow); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 3.5rem; }
.cta-inner h2 { max-width: 18ch; color: var(--hps-ink); }

.site-footer { background: var(--hps-ink); color: #fff; position: relative; }
.site-footer::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 2px; background: var(--hps-yellow); }
.footer-grid { display: grid; gap: 3rem; padding-block: var(--section); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.45fr 1fr 1.1fr; gap: 4rem; } }
.site-footer a { color: rgba(255,255,255,0.62); }
.site-footer a:hover { color: #fff; }
.footer-muted { color: rgba(255,255,255,0.58); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.15rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.38); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }

.form-panel { border: 1px solid var(--hps-line); background: #fff; border-left: 3px solid var(--hps-yellow); padding: 1.75rem; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.form-field label { display: flex; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.4rem; }
.form-control {
  width: 100%; border: 1px solid var(--hps-line); background: #fff; padding: 0.75rem 0.9rem;
  color: var(--hps-ink); outline: none;
}
.form-control:focus { border-color: var(--hps-steel); }
textarea.form-control { min-height: 8rem; resize: vertical; }
.topic-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.topic-row button {
  border: 1px solid var(--hps-line); background: #fff; padding: 0.55rem 0.85rem;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
}
.topic-row button.is-active { background: var(--hps-ink); color: #fff; border-color: var(--hps-ink); }
.form-msg { margin-top: 1rem; padding: 0.85rem 1rem; font-size: 0.92rem; }
.form-msg.ok { background: #eef8ef; color: #1d5c2e; }
.form-msg.err { background: #fdeeee; color: #8a1f1f; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.contact-strip {
  display: grid; gap: 0; border-bottom: 1px solid var(--hps-line); background: #fff;
}
@media (min-width: 768px) { .contact-strip { grid-template-columns: 1fr 1fr 1fr; } }
.contact-strip a, .contact-strip div {
  padding: 1.25rem var(--gutter); border-bottom: 1px solid var(--hps-line);
}
@media (min-width: 768px) {
  .contact-strip a, .contact-strip div { border-bottom: 0; border-right: 1px solid var(--hps-line); }
  .contact-strip > *:last-child { border-right: 0; }
}
.map-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 1024px) { .map-grid { grid-template-columns: 1fr 1fr 1fr; } }
.map-frame { position: relative; border: 1px solid var(--hps-line); background: var(--hps-charcoal); overflow: hidden; }
.map-frame iframe { width: 100%; height: 16rem; border: 0; pointer-events: none; }
.map-pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); z-index: 2; pointer-events: none;
}
.map-actions { position: absolute; right: 0.85rem; bottom: 0.85rem; z-index: 3; }
.map-actions a { background: var(--hps-ink); color: #fff; padding: 0.55rem 0.9rem; font-size: 0.85rem; font-weight: 650; }

.ref-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0 1.5rem; }
.ref-filters button {
  min-height: 2.5rem; padding: 0.45rem 0.9rem; border: 1px solid var(--hps-line);
  background: #fff; font-weight: 600; font-size: 0.88rem; cursor: pointer;
}
.ref-filters button.is-active { background: var(--hps-yellow); border-color: var(--hps-yellow); }
.ref-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .ref-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ref-grid { grid-template-columns: 1fr 1fr 1fr; } }
.ref-card .media-frame { aspect-ratio: 4/3; }
.ref-card .meta { padding: 1rem 0 0.25rem; }
.spec-list { border-block: 1px solid var(--hps-line); }
.spec-row { display: grid; gap: 0.35rem; padding: 1.15rem 0; border-bottom: 1px solid var(--hps-line); }
@media (min-width: 768px) { .spec-row { grid-template-columns: 12rem 1fr; gap: 2rem; } }
.spec-row:last-child { border-bottom: 0; }
.sibling-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.sibling-nav a {
  min-height: 2.5rem; padding: 0.45rem 0.9rem; border: 1px solid var(--hps-line);
  background: #fff; font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center;
}
.sibling-nav a.is-active { background: var(--hps-yellow); border-color: var(--hps-yellow); }
.gallery-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid.three { grid-template-columns: 1fr 1fr 1fr; } }
.list-check { display: grid; gap: 0.45rem; margin-top: 1rem; }
.list-check li { padding-left: 1rem; position: relative; color: var(--hps-muted); }
.list-check li::before { content: ""; position: absolute; left: 0; top: 0.65rem; width: 0.4rem; height: 2px; background: var(--hps-yellow); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Compact mega menu override */
.nav-mega { width: min(38rem, calc(100vw - 2rem)); }
.nav-mega-grid { max-height: none; }
@media (min-width: 640px) { .nav-mega-grid { grid-template-columns: 1fr 1fr 1fr; } }
.nav-mega-card {
  flex-direction: column; align-items: center; text-align: center;
  gap: 0.5rem; padding: 0.9rem 0.6rem;
  border-top: none; border-right: 1px solid rgba(220,224,220,0.5);
}
.nav-mega-card:last-child { border-right: none; }
.nav-mega-thumb { width: 4rem; height: 4rem; border-radius: 4px; background-color: #fff; background-size: contain; background-repeat: no-repeat; }
.nav-mega-title { font-size: 0.85rem; font-weight: 600; color: var(--hps-charcoal); line-height: 1.3; }
.nav-mega-head { padding: 0.75rem 1rem; }
.nav-mega-eyebrow { font-size: 0.68rem; }
.nav-mega-all { min-height: 2rem; padding: 0.35rem 0.7rem; font-size: 0.75rem; }
