:root {
  --hs-navy: #071522;
  --hs-navy-soft: #0e2234;
  --hs-ink: #15202b;
  --hs-slate: #66717d;
  --hs-ivory: #f6f2e9;
  --hs-paper: #fffdf8;
  --hs-gold: #c7a65a;
  --hs-gold-light: #e6cf94;
  --hs-red: #9d2634;
  --hs-line: #dcd5c7;
  --hs-sans: "DM Sans", system-ui, sans-serif;
  --hs-serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--hs-ink); background: var(--hs-ivory); font-family: var(--hs-sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  height: 84px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--hs-navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 30;
}
.brand, .footer-brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 42px;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  border: 1px solid var(--hs-gold);
  color: var(--hs-gold-light);
  position: relative;
  font-family: var(--hs-serif);
  font-size: 13px;
}
.brand-mark::before { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(199,166,90,.35); }
.brand-mark span { position: relative; }
.brand-copy { display: grid; }
.brand-copy strong { font-family: var(--hs-serif); font-size: 20px; letter-spacing: .01em; }
.brand-copy small { margin-top: 1px; color: #aab4bd; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 13px; font-weight: 600; }
.site-nav a { padding: 31px 0 27px; border-bottom: 3px solid transparent; color: #d6dce1; transition: .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; border-color: var(--hs-gold); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { width: 24px; height: 2px; display: block; margin: 5px; background: #fff; }

.site-footer { padding: 48px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; color: #cbd3da; background: var(--hs-navy); }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { color: #fff; font-family: var(--hs-serif); font-size: 18px; }
.footer-brand small { margin-top: 3px; color: #81909c; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 25px; font-size: 11px; font-weight: 700; }
.site-footer > p { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 20px; color: #74838f; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }

@media (max-width: 820px) {
  .site-header { height: 70px; padding-inline: 20px; }
  .brand-copy strong { font-size: 17px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 70px; left: 0; right: 0; padding: 12px 20px 22px; display: none; align-items: stretch; flex-direction: column; gap: 0; background: var(--hs-navy); box-shadow: 0 20px 35px rgba(0,0,0,.25); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 3px; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; gap: 17px; }
}
