:root {
  --hh-navy: #18314f;
  --hh-navy-dark: #10253d;
  --hh-gold: #c7a66a;
  --hh-cream: #f6f2e9;
  --hh-text: #26313a;
  --hh-white: #ffffff;
  --hh-shadow: 0 10px 28px rgba(15, 34, 54, .12);
  --hh-radius: 12px;
}

/* Version 2.1 shared site frame */
.hh-site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: rgba(16, 37, 61, .98);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.hh-header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.hh-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--hh-white) !important;
  text-decoration: none !important;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
}
.hh-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}
.hh-brand span { max-width: 250px; }
.hh-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}
.hh-nav a {
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .025em;
  padding: 12px 12px;
  border-radius: 7px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.hh-nav a:hover,
.hh-nav a:focus-visible {
  color: #fff !important;
  background: rgba(255,255,255,.11);
  transform: translateY(-1px);
}
.hh-nav a[aria-current="page"] {
  color: #fff !important;
  background: rgba(199,166,106,.23);
  box-shadow: inset 0 -2px 0 var(--hh-gold);
}

/* Gentle consistency and polish without replacing imagery */
main img, section img, article img {
  max-width: 100%;
}
.hero img, .hero-photo img, .seo-photo img, .expand-hero img {
  image-rendering: auto;
}
.button, .btn, a.button, a.btn {
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover, .btn:hover, a.button:hover, a.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15,34,54,.16);
}

.hh-site-footer {
  width: 100%;
  background: var(--hh-navy-dark);
  color: rgba(255,255,255,.86);
  text-align: center;
  padding: 22px 24px;
  font-size: .92rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hh-site-footer a {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hh-site-footer .hh-footer-name {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hh-header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 78px;
    gap: 14px;
  }
  .hh-brand span { display: none; }
  .hh-brand img { width: 60px; height: 60px; }
  .hh-nav { gap: 2px; }
  .hh-nav a { font-size: .86rem; padding: 10px 9px; }
}
@media (max-width: 680px) {
  .hh-header-inner {
    width: 100%;
    padding: 10px 14px 12px;
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }
  .hh-brand img { width: 56px; height: 56px; }
  .hh-nav {
    width: 100%;
    justify-content: center;
    gap: 1px;
  }
  .hh-nav a {
    font-size: .78rem;
    padding: 9px 7px;
  }
}
@media (max-width: 430px) {
  .hh-nav a { font-size: .73rem; padding: 8px 5px; }
}
