/* =====================================================================
   Servisdr — "Heritage Trust"
   Libre Caslon Display (headings) + Libre Franklin (body/UI)
   Palette: navy #16233A · brass #A8834E · ivory #FAF6EE
   All classes namespaced hr- (BEM).
   ===================================================================== */

/* ---------- Fonts (self-hosted, latin + latin-ext) ---------- */
@font-face {
  font-family: "Libre Caslon Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("caslon-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Libre Caslon Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("caslon-display-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Libre Franklin";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("franklin-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Libre Franklin";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("franklin-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --hr-navy: #16233A;
  --hr-navy-deep: #101A2C;
  --hr-navy-800: #1E2E48;
  --hr-navy-line: #2A3B5A;
  --hr-brass: #A8834E;
  --hr-brass-bright: #C6A063;
  --hr-brass-deep: #8A6A3B;
  --hr-ivory: #FAF6EE;
  --hr-parchment: #F2EADB;
  --hr-parchment-deep: #E7DCC4;
  --hr-ink: #16233A;
  --hr-ink-2: #55617A;
  --hr-ink-on-dark: #E9E3D5;
  --hr-ink-on-dark-2: #A9B2C4;

  --hr-serif: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --hr-sans: "Libre Franklin", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --hr-shell: 1200px;
  --hr-gutter: clamp(18px, 4.5vw, 46px);
  --hr-radius: 3px;

  --hr-shadow-plate:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 1px 0 var(--hr-parchment-deep),
    0 26px 46px -30px rgba(22, 35, 58, .5);
  --hr-shadow-lift:
    inset 0 1px 0 rgba(255, 255, 255, .55),
    0 2px 0 var(--hr-parchment-deep),
    0 34px 58px -30px rgba(22, 35, 58, .55);
  --hr-line: color-mix(in srgb, var(--hr-brass) 42%, transparent);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.hr-locked, html.hr-locked body { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:target { scroll-margin-top: clamp(88px, 12vh, 140px); }

body {
  font-family: var(--hr-sans);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--hr-ink);
  background: var(--hr-ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
strong { font-weight: 700; }
:focus-visible { outline: 2px solid var(--hr-brass); outline-offset: 3px; border-radius: 2px; }

/* Skip link */
.hr-skip {
  position: fixed; left: 16px; top: -80px; z-index: 200;
  background: var(--hr-navy); color: var(--hr-ivory);
  padding: 12px 20px; border: 1px solid var(--hr-brass);
  font-weight: 600; letter-spacing: .02em; transition: top .2s ease;
}
.hr-skip:focus { top: 16px; }

/* ---------- Reveal (gated behind .hr-js) ---------- */
.hr-js .hr-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.hr-js .hr-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hr-js .hr-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Layout helpers ---------- */
.hr-shell { width: 100%; max-width: var(--hr-shell); margin-inline: auto; padding-inline: var(--hr-gutter); }
.hr-section { padding-block: clamp(56px, 8vw, 108px); position: relative; }
.hr-section--tight { padding-block: clamp(30px, 4vw, 48px); }
.hr-section--parchment { background: var(--hr-parchment); }
.hr-section--ink {
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(198, 160, 99, .10), transparent 60%),
    var(--hr-navy-deep);
  color: var(--hr-ink-on-dark);
}

/* Engraved rule with brass lozenge */
.hr-rule { display: flex; align-items: center; gap: 14px; }
.hr-rule::before, .hr-rule::after {
  content: ""; height: 0; flex: 1;
  border-top: 1px solid var(--hr-line);
  box-shadow: 0 3px 0 -2px var(--hr-line);
}
.hr-rule__mark { width: 9px; height: 9px; background: var(--hr-brass); transform: rotate(45deg); flex: none; }
.hr-section--ink .hr-rule::before, .hr-section--ink .hr-rule::after { border-top-color: rgba(198, 160, 99, .32); box-shadow: 0 3px 0 -2px rgba(198, 160, 99, .32); }

/* Kicker (heritage tag — NOT an all-caps tracked eyebrow) */
.hr-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--hr-sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; color: var(--hr-brass-deep);
  margin-bottom: 20px;
}
.hr-kicker::before {
  content: ""; width: 30px; height: 0;
  border-top: 1px solid var(--hr-brass); position: relative;
}
.hr-kicker__dot { width: 6px; height: 6px; background: var(--hr-brass); transform: rotate(45deg); }
.hr-section--ink .hr-kicker { color: var(--hr-brass-bright); }
.hr-section--ink .hr-kicker::before { border-top-color: var(--hr-brass-bright); }

/* Section head */
.hr-head-block { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(38px, 5vw, 62px); }
.hr-head-block--left { margin-inline: 0; text-align: left; }
.hr-head-block .hr-kicker::before { display: none; }
.hr-head-block--left .hr-kicker::before { display: block; }

.hr-title {
  font-family: var(--hr-serif); font-weight: 400;
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
  line-height: 1.08; letter-spacing: -0.01em; color: var(--hr-ink);
}
.hr-section--ink .hr-title { color: var(--hr-ivory); }
.hr-lede { margin-top: 18px; font-size: 1.075rem; color: var(--hr-ink-2); max-width: 60ch; }
.hr-head-block .hr-lede { margin-inline: auto; }
.hr-head-block--left .hr-lede { margin-inline: 0; }
.hr-section--ink .hr-lede { color: var(--hr-ink-on-dark-2); }

/* ---------- Seal ---------- */
.hr-seal { display: inline-block; line-height: 0; color: var(--hr-brass); }
.hr-seal svg { width: 100%; height: 100%; display: block; }
.hr-seal__disc { fill: var(--hr-navy); }
.hr-seal__ring { fill: none; stroke: var(--hr-brass); }
.hr-seal__ring--thin { stroke: var(--hr-brass-bright); }
.hr-seal__ticks { fill: none; stroke: var(--hr-brass); }
.hr-seal__text { fill: var(--hr-brass-bright); font-family: var(--hr-serif); }
.hr-seal__mono { fill: var(--hr-ivory); font-family: var(--hr-serif); }
.hr-seal__star { fill: var(--hr-brass); }

/* ---------- Buttons ---------- */
.hr-btn {
  --btn-bg: var(--hr-brass); --btn-fg: var(--hr-navy); --btn-bd: var(--hr-brass);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: var(--hr-radius);
  font-family: var(--hr-sans); font-weight: 600; font-size: .95rem; letter-spacing: .015em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.hr-btn svg { width: 18px; height: 18px; flex: none; }
.hr-btn:hover { transform: translateY(-2px); }
.hr-btn--solid { --btn-bg: var(--hr-brass); --btn-fg: #241a0d; box-shadow: 0 14px 26px -16px rgba(168, 131, 78, .9); }
.hr-btn--solid:hover { --btn-bg: var(--hr-brass-bright); }
.hr-btn--ink { --btn-bg: var(--hr-navy); --btn-fg: var(--hr-ivory); --btn-bd: var(--hr-navy); }
.hr-btn--ink:hover { --btn-bg: #223a5e; }
.hr-btn--ghost { --btn-bg: transparent; --btn-fg: var(--hr-navy); --btn-bd: var(--hr-brass); }
.hr-btn--ghost:hover { --btn-bg: var(--hr-navy); --btn-fg: var(--hr-ivory); --btn-bd: var(--hr-navy); }
.hr-btn--ivory { --btn-bg: var(--hr-ivory); --btn-fg: var(--hr-navy); --btn-bd: var(--hr-ivory); }
.hr-btn--ivory:hover { --btn-bg: #fff; }
.hr-btn--onink { --btn-bg: transparent; --btn-fg: var(--hr-ivory); --btn-bd: rgba(233, 227, 213, .5); }
.hr-btn--onink:hover { --btn-bg: rgba(233, 227, 213, .12); --btn-bd: var(--hr-brass-bright); }
.hr-btn--lg { padding: 16px 30px; font-size: 1rem; }
.hr-btn--block { width: 100%; }

.hr-btnrow { display: flex; flex-wrap: wrap; gap: 14px; }
.hr-btnrow--center { justify-content: center; }
.hr-actions-foot { margin-top: clamp(34px, 4vw, 50px); }

/* Read-more link */
.hr-more {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .92rem; color: var(--hr-brass-deep);
  letter-spacing: .01em;
  border-bottom: 1px solid var(--hr-line); padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.hr-more svg { width: 17px; height: 17px; transition: transform .25s ease; }
.hr-more:hover { color: var(--hr-navy); border-color: var(--hr-brass); }
.hr-more:hover svg { transform: translateX(4px); }

/* Plate — crisp heritage card with corner ticks */
.hr-plate {
  position: relative; background: var(--hr-ivory);
  border: 1px solid var(--hr-line); border-radius: var(--hr-radius);
  box-shadow: var(--hr-shadow-plate);
}
.hr-plate--parchment { background: var(--hr-parchment); }
.hr-tick { position: relative; }
.hr-tick::before, .hr-tick::after {
  content: ""; position: absolute; width: 12px; height: 12px; pointer-events: none;
}
.hr-tick::before { top: 8px; left: 8px; border-top: 1.5px solid var(--hr-brass); border-left: 1.5px solid var(--hr-brass); }
.hr-tick::after { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--hr-brass); border-right: 1.5px solid var(--hr-brass); }

/* Photo frame */
.hr-frame { position: relative; border: 1px solid var(--hr-line); padding: 8px; background: var(--hr-ivory); border-radius: var(--hr-radius); }
.hr-frame__img { overflow: hidden; border-radius: 1px; position: relative; }
.hr-frame__img img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   Topbar
   ===================================================================== */
.hr-topbar {
  background: var(--hr-navy-deep); color: var(--hr-ink-on-dark);
  font-size: .82rem; border-bottom: 1px solid var(--hr-navy-line);
}
.hr-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px; flex-wrap: wrap; }
.hr-topbar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hr-topbar__item { display: inline-flex; align-items: center; gap: 9px; color: var(--hr-ink-on-dark-2); }
.hr-topbar__item svg { width: 15px; height: 15px; color: var(--hr-brass-bright); }
a.hr-topbar__item:hover { color: var(--hr-ivory); }
.hr-topbar__sep { color: var(--hr-brass); }
@media (max-width: 720px) { .hr-topbar__hide { display: none; } }

/* =====================================================================
   Masthead / header
   ===================================================================== */
.hr-head { position: sticky; top: 0; z-index: 90; background: var(--hr-ivory); border-bottom: 1px solid var(--hr-line); }
.hr-head::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px;
  background: repeating-linear-gradient(90deg, var(--hr-brass) 0 6px, transparent 6px 12px);
  opacity: .28; pointer-events: none;
}
.hr-head__brandbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 16px; transition: padding .3s ease; }
.hr-head.is-stuck .hr-head__brandbar { padding-block: 9px; }

.hr-brand { display: inline-flex; align-items: center; gap: 14px; }
.hr-brand__seal { width: 52px; height: 52px; flex: none; transition: width .3s ease, height .3s ease; }
.hr-head.is-stuck .hr-brand__seal { width: 42px; height: 42px; }
.hr-brand__text { display: flex; flex-direction: column; line-height: 1; }
.hr-brand__name { font-family: var(--hr-serif); font-size: 1.7rem; color: var(--hr-navy); letter-spacing: .01em; }
.hr-brand__name b { font-weight: 400; color: var(--hr-brass); }
.hr-brand__tag { font-size: .66rem; letter-spacing: .34em; color: var(--hr-ink-2); margin-top: 5px; padding-left: 2px; }

.hr-head__actions { display: flex; align-items: center; gap: 14px; }
.hr-phone { display: inline-flex; align-items: center; gap: 11px; }
.hr-phone__ic { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--hr-line); border-radius: 50%; color: var(--hr-brass); flex: none; }
.hr-phone__ic svg { width: 18px; height: 18px; }
.hr-phone__text { display: flex; flex-direction: column; line-height: 1.15; }
.hr-phone__label { font-size: .68rem; letter-spacing: .16em; color: var(--hr-ink-2); }
.hr-phone__num { font-family: var(--hr-serif); font-size: 1.2rem; color: var(--hr-navy); }

/* Navbar row */
.hr-head__navbar { border-top: 1px solid var(--hr-line); }
.hr-head.is-stuck .hr-head__navbar { border-top-color: transparent; }
.hr-nav__list { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.2vw, 34px); }
.hr-nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 15px 2px; font-weight: 500; font-size: .92rem; color: var(--hr-navy);
  letter-spacing: .01em; transition: color .2s ease;
}
.hr-head.is-stuck .hr-nav__link { padding-block: 12px; }
.hr-nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px;
  background: var(--hr-brass); transform: scaleX(0); transform-origin: center;
  transition: transform .28s ease;
}
.hr-nav__link:hover { color: var(--hr-brass-deep); }
.hr-nav__link:hover::after, .hr-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.hr-nav__link[aria-current="page"] { color: var(--hr-brass-deep); }

/* Dropdown */
.hr-nav__sub { position: relative; }
.hr-nav__sub-btn svg { width: 14px; height: 14px; transition: transform .25s ease; }
.hr-nav__sub.is-open .hr-nav__sub-btn svg,
.hr-nav__sub:hover .hr-nav__sub-btn svg { transform: rotate(180deg); }
.hr-nav__menu {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 244px; background: var(--hr-ivory); border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius); box-shadow: var(--hr-shadow-lift); padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease; z-index: 5;
}
.hr-nav__menu::before {
  content: ""; position: absolute; top: -7px; left: 50%; width: 12px; height: 12px;
  transform: translateX(-50%) rotate(45deg); background: var(--hr-ivory);
  border-left: 1px solid var(--hr-line); border-top: 1px solid var(--hr-line);
}
.hr-nav__sub:hover .hr-nav__menu, .hr-nav__sub:focus-within .hr-nav__menu, .hr-nav__sub.is-open .hr-nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.hr-nav__menu a { display: block; padding: 10px 14px; font-size: .9rem; color: var(--hr-navy); border-radius: 2px; transition: background-color .18s ease, color .18s ease; }
.hr-nav__menu a:hover { background: var(--hr-parchment); color: var(--hr-brass-deep); }
.hr-nav__menu li:last-child a { border-top: 1px solid var(--hr-line); margin-top: 6px; color: var(--hr-brass-deep); font-weight: 600; }

/* Burger */
.hr-burger { display: none; width: 46px; height: 46px; border: 1px solid var(--hr-line); border-radius: var(--hr-radius); flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: var(--hr-navy); }
.hr-burger span { width: 20px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }

/* =====================================================================
   Drawer
   ===================================================================== */
.hr-backdrop { position: fixed; inset: 0; background: rgba(16, 26, 44, .55); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 110; }
.hr-backdrop.is-open { opacity: 1; visibility: visible; }
.hr-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(90vw, 380px); z-index: 120;
  background: var(--hr-navy); color: var(--hr-ink-on-dark);
  border-left: 3px solid var(--hr-brass);
  transform: translateX(105%); transition: transform .34s cubic-bezier(.2, .7, .2, 1);
  display: flex; flex-direction: column; overflow-y: auto; padding: 22px 26px 32px;
}
.hr-drawer.is-open { transform: translateX(0); }
.hr-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--hr-navy-line); }
.hr-drawer__brand { display: inline-flex; align-items: center; gap: 12px; }
.hr-drawer__seal { width: 42px; height: 42px; }
.hr-drawer__name { font-family: var(--hr-serif); font-size: 1.4rem; color: var(--hr-ivory); }
.hr-drawer__name b { font-weight: 400; color: var(--hr-brass-bright); }
.hr-drawer__tag { display: block; font-size: .6rem; letter-spacing: .3em; color: var(--hr-ink-on-dark-2); margin-top: 3px; }
.hr-drawer__close { width: 42px; height: 42px; border: 1px solid var(--hr-navy-line); border-radius: var(--hr-radius); display: grid; place-items: center; color: var(--hr-ivory); }
.hr-drawer__close svg { width: 20px; height: 20px; }
.hr-drawer__list { margin-top: 8px; }
.hr-drawer__list a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--hr-navy-line); font-size: 1.02rem; color: var(--hr-ink-on-dark); }
.hr-drawer__list a[aria-current="page"] { color: var(--hr-brass-bright); }
.hr-drawer__list .hr-drawer__sub a { padding-left: 16px; font-size: .92rem; color: var(--hr-ink-on-dark-2); }
.hr-drawer__cta { display: grid; gap: 12px; margin-top: 22px; }
.hr-drawer__info { margin-top: 22px; display: grid; gap: 10px; font-size: .86rem; color: var(--hr-ink-on-dark-2); border-top: 1px solid var(--hr-navy-line); padding-top: 18px; }
.hr-drawer__info strong { color: var(--hr-ivory); font-weight: 600; }
.hr-drawer__info a { color: var(--hr-brass-bright); }

/* =====================================================================
   Hero
   ===================================================================== */
.hr-hero {
  position: relative; color: var(--hr-ink-on-dark);
  background:
    radial-gradient(90% 120% at 82% 0%, rgba(198, 160, 99, .12), transparent 55%),
    var(--hr-navy);
  overflow: hidden;
}
.hr-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(90deg, rgba(198, 160, 99, .05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(198, 160, 99, .04) 0 1px, transparent 1px 44px);
}
.hr-hero__inner { position: relative; padding-block: clamp(48px, 7vw, 92px); display: grid; gap: clamp(36px, 5vw, 60px); grid-template-columns: 1fr; }
.hr-hero__watermark {
  position: absolute; top: -6%; right: -8%; width: min(560px, 62vw); opacity: .06; color: var(--hr-brass-bright); pointer-events: none;
}
.hr-hero__title {
  font-family: var(--hr-serif); font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.015em;
  color: var(--hr-ivory); margin-top: 10px;
}
.hr-hero__title em { font-style: italic; color: var(--hr-brass-bright); }
.hr-hero__text { margin-top: 22px; font-size: 1.1rem; color: var(--hr-ink-on-dark); max-width: 54ch; }
.hr-hero__text strong { color: var(--hr-ivory); }
.hr-hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hr-hero__points { margin-top: 30px; display: grid; gap: 12px; }
.hr-hero__points li { display: flex; align-items: center; gap: 12px; color: var(--hr-ink-on-dark); font-size: .98rem; }
.hr-hero__points svg { width: 20px; height: 20px; color: var(--hr-brass-bright); flex: none; }

/* Ledger card */
.hr-ledger {
  background: linear-gradient(180deg, rgba(30, 46, 72, .9), rgba(16, 26, 44, .92));
  border: 1px solid var(--hr-navy-line); border-radius: var(--hr-radius);
  padding: clamp(24px, 3vw, 32px); box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .7);
  position: relative;
}
.hr-ledger__seal { width: 66px; height: 66px; margin-bottom: 16px; }
.hr-ledger__title { font-family: var(--hr-serif); font-size: 1.6rem; color: var(--hr-ivory); }
.hr-ledger__sub { margin-top: 10px; color: var(--hr-ink-on-dark-2); font-size: .96rem; }
.hr-ledger__cta { margin-top: 22px; }
.hr-ledger__points { margin-top: 22px; display: grid; gap: 11px; }
.hr-ledger__points li { display: flex; align-items: flex-start; gap: 11px; font-size: .92rem; color: var(--hr-ink-on-dark); }
.hr-ledger__points svg { width: 18px; height: 18px; color: var(--hr-brass-bright); flex: none; margin-top: 3px; }
.hr-ledger__note { margin-top: 18px; font-size: .82rem; color: var(--hr-ink-on-dark-2); border-top: 1px solid var(--hr-navy-line); padding-top: 16px; }

/* Hero plate photo */
.hr-hero__plate { position: relative; margin-top: 4px; }
.hr-hero__plate .hr-frame { border-color: rgba(198, 160, 99, .4); background: rgba(16, 26, 44, .5); }
.hr-hero__plate img { aspect-ratio: 16 / 7; }
.hr-hero__caption {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--hr-navy-deep); border: 1px solid var(--hr-brass);
  color: var(--hr-brass-bright); font-size: .74rem; letter-spacing: .12em; padding: 8px 14px;
}

/* =====================================================================
   Trust strip (medallions)
   ===================================================================== */
.hr-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hr-line); border: 1px solid var(--hr-line); border-radius: var(--hr-radius); overflow: hidden; }
.hr-strip__item { background: var(--hr-parchment); padding: clamp(22px, 3vw, 34px) 18px; text-align: center; }
.hr-strip__num { font-family: var(--hr-serif); font-size: clamp(2.2rem, 4.4vw, 3.2rem); color: var(--hr-navy); line-height: 1; display: inline-flex; align-items: baseline; gap: 2px; }
.hr-strip__num sup, .hr-strip__num .hr-suffix { font-family: var(--hr-sans); font-size: .9rem; font-weight: 700; color: var(--hr-brass); align-self: flex-start; margin-top: 6px; }
.hr-strip__label { margin-top: 12px; font-size: .82rem; letter-spacing: .04em; color: var(--hr-ink-2); }

/* =====================================================================
   Services — feature + ledger rows
   ===================================================================== */
.hr-svc { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 34px); }
.hr-svc__feature { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.hr-svc__feature .hr-svc__media { position: relative; }
.hr-svc__feature .hr-svc__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hr-svc__index {
  position: absolute; top: 16px; left: 16px; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--hr-navy); color: var(--hr-brass-bright); font-family: var(--hr-serif); font-size: 1.5rem;
  border: 1px solid var(--hr-brass);
}
.hr-svc__body { padding: clamp(24px, 3vw, 34px); }
.hr-svc__title { font-family: var(--hr-serif); font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--hr-navy); }
.hr-svc__title a:hover { color: var(--hr-brass-deep); }
.hr-svc__text { margin-top: 12px; color: var(--hr-ink-2); }
.hr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hr-tags li { font-size: .78rem; letter-spacing: .03em; color: var(--hr-brass-deep); border: 1px solid var(--hr-line); padding: 5px 12px; border-radius: 2px; background: var(--hr-parchment); }
.hr-svc__foot { margin-top: 22px; }

.hr-svc__rows { display: grid; gap: clamp(16px, 2vw, 22px); }
.hr-svc__row { display: grid; grid-template-columns: 96px 1fr; gap: 20px; padding: clamp(16px, 2vw, 22px); align-items: center; }
.hr-svc__row .hr-svc__thumb { width: 96px; height: 96px; overflow: hidden; border: 1px solid var(--hr-line); border-radius: 2px; }
.hr-svc__row .hr-svc__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hr-svc__rowtitle { font-family: var(--hr-serif); font-size: 1.28rem; color: var(--hr-navy); }
.hr-svc__rowtitle a:hover { color: var(--hr-brass-deep); }
.hr-svc__rowtext { margin-top: 6px; font-size: .92rem; color: var(--hr-ink-2); }
.hr-svc__rowfoot { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 12px; }
.hr-svc__rowfoot .hr-tags { margin-top: 0; }

/* =====================================================================
   Charter (why us)
   ===================================================================== */
.hr-charter { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hr-line); border: 1px solid var(--hr-line); border-radius: var(--hr-radius); overflow: hidden; }
.hr-clause { background: var(--hr-parchment); padding: clamp(26px, 3vw, 38px); position: relative; }
.hr-clause__top { display: flex; align-items: center; gap: 16px; }
.hr-clause__num { font-family: var(--hr-serif); font-size: 1.9rem; color: var(--hr-brass); line-height: 1; }
.hr-clause__badge { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--hr-brass); border-radius: 50%; color: var(--hr-brass-deep); flex: none; }
.hr-clause__badge svg { width: 22px; height: 22px; }
.hr-clause__title { font-family: var(--hr-serif); font-size: 1.4rem; color: var(--hr-navy); margin-top: 20px; }
.hr-clause__text { margin-top: 12px; color: var(--hr-ink-2); font-size: .98rem; }

/* =====================================================================
   Corporate (pull-quote + media)
   ===================================================================== */
.hr-corp { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.hr-corp__media { position: relative; }
.hr-corp__wide { position: relative; }
.hr-corp__wide img { aspect-ratio: 4 / 3; }
.hr-corp__badge {
  position: absolute; left: -8px; bottom: 26px; display: flex; align-items: center; gap: 12px;
  background: var(--hr-navy); color: var(--hr-ivory); padding: 14px 18px; border-left: 3px solid var(--hr-brass);
  max-width: 300px; box-shadow: 0 24px 40px -26px rgba(0, 0, 0, .6);
}
.hr-corp__badge svg { width: 22px; height: 22px; color: var(--hr-brass-bright); flex: none; }
.hr-corp__badge-title { font-weight: 600; font-size: .9rem; }
.hr-corp__badge-text { font-size: .78rem; color: var(--hr-ink-on-dark-2); margin-top: 2px; }
.hr-corp__accent { position: absolute; right: -6px; top: -30px; width: 180px; display: none; }
.hr-corp__accent img { aspect-ratio: 3 / 4; }
.hr-corp__quote { font-family: var(--hr-serif); font-size: clamp(1.6rem, 2.8vw, 2.35rem); line-height: 1.14; color: var(--hr-navy); letter-spacing: -0.01em; }
.hr-corp p { margin-top: 18px; color: var(--hr-ink-2); }
.hr-checklist { margin-top: 24px; display: grid; gap: 14px; }
.hr-checklist li { display: flex; gap: 14px; align-items: flex-start; }
.hr-checklist li::before {
  content: ""; width: 10px; height: 10px; margin-top: 8px; flex: none;
  background: var(--hr-brass); transform: rotate(45deg);
}
.hr-checklist strong { color: var(--hr-navy); }

/* =====================================================================
   Dark stats
   ===================================================================== */
.hr-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 34px); }
.hr-stat { text-align: center; padding: clamp(22px, 3vw, 32px) 14px; border: 1px solid rgba(198, 160, 99, .3); border-radius: var(--hr-radius); background: rgba(30, 46, 72, .32); }
.hr-stat__ic { width: 44px; height: 44px; margin: 0 auto 16px; display: grid; place-items: center; border: 1px solid rgba(198, 160, 99, .4); border-radius: 50%; color: var(--hr-brass-bright); }
.hr-stat__ic svg { width: 22px; height: 22px; }
.hr-stat__num { font-family: var(--hr-serif); font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--hr-ivory); line-height: 1; display: inline-flex; align-items: baseline; gap: 4px; }
.hr-stat__num .hr-suffix { font-family: var(--hr-sans); font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--hr-brass-bright); }
.hr-stat__label { margin-top: 14px; font-size: .84rem; color: var(--hr-ink-on-dark-2); }

/* =====================================================================
   Process (timeline)
   ===================================================================== */
.hr-steps { display: grid; grid-template-columns: 1fr; gap: 4px; }
.hr-step { position: relative; padding: 24px 0 24px 74px; border-top: 1px solid var(--hr-line); }
.hr-step:first-child { border-top: 0; }
.hr-step__seal { position: absolute; left: 0; top: 22px; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--hr-brass); border-radius: 50%; font-family: var(--hr-serif); font-size: 1.5rem; color: var(--hr-brass-deep); background: var(--hr-ivory); }
.hr-step__seal::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 999px; background: var(--hr-line); transform: translateX(-50%); }
.hr-step:last-child .hr-step__seal::after { display: none; }
.hr-step__title { font-family: var(--hr-serif); font-size: 1.35rem; color: var(--hr-navy); }
.hr-step__text { margin-top: 8px; color: var(--hr-ink-2); font-size: .96rem; }

/* CTA inline */
.hr-cta-inline { margin-top: clamp(34px, 4vw, 52px); display: grid; gap: 20px; align-items: center; padding: clamp(26px, 3vw, 38px); background: var(--hr-navy); color: var(--hr-ivory); border-radius: var(--hr-radius); border-left: 4px solid var(--hr-brass); }
.hr-cta-inline h3 { font-family: var(--hr-serif); font-size: 1.5rem; }
.hr-cta-inline p { color: var(--hr-ink-on-dark-2); margin-top: 6px; }

/* =====================================================================
   Brands (seal grid)
   ===================================================================== */
.hr-brands { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.hr-brand-seal { display: flex; flex-direction: column; align-items: center; text-align: center; padding: clamp(20px, 2.4vw, 28px) 14px; background: var(--hr-ivory); border: 1px solid var(--hr-line); border-radius: var(--hr-radius); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.hr-brand-seal:hover { transform: translateY(-3px); border-color: var(--hr-brass); box-shadow: var(--hr-shadow-plate); }
.hr-brand-seal__mono { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--hr-brass); border-radius: 50%; font-family: var(--hr-serif); font-size: 1.5rem; color: var(--hr-brass-deep); }
.hr-brand-seal__name { font-family: var(--hr-serif); font-size: 1.2rem; color: var(--hr-navy); margin-top: 14px; }
.hr-brand-seal__meta { font-size: .74rem; color: var(--hr-ink-2); margin-top: 6px; }

/* =====================================================================
   Fault directory
   ===================================================================== */
.hr-faults { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 36px); }
.hr-faults__col { padding-top: 22px; border-top: 2px solid var(--hr-navy); }
.hr-faults__title { font-family: var(--hr-serif); font-size: 1.35rem; color: var(--hr-navy); margin-bottom: 14px; }
.hr-faults__list li { border-bottom: 1px solid var(--hr-line); }
.hr-faults__list a { display: block; padding: 11px 0; font-size: .95rem; color: var(--hr-ink); transition: color .2s ease, padding-left .2s ease; }
.hr-faults__list a:hover { color: var(--hr-brass-deep); padding-left: 8px; }

/* =====================================================================
   Regions
   ===================================================================== */
.hr-regions { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 2.6vw, 30px); }
.hr-region { padding: clamp(24px, 3vw, 32px); }
.hr-region__head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--hr-line); }
.hr-region__ic { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--hr-brass); border-radius: 50%; color: var(--hr-brass-deep); flex: none; }
.hr-region__ic svg { width: 22px; height: 22px; }
.hr-region__name { font-family: var(--hr-serif); font-size: 1.5rem; color: var(--hr-navy); }
.hr-region__count { font-size: .8rem; color: var(--hr-ink-2); }
.hr-region__list { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.hr-region__list a { font-size: .92rem; color: var(--hr-ink); padding: 4px 0; border-bottom: 1px dotted var(--hr-line); transition: color .2s ease; }
.hr-region__list a:hover { color: var(--hr-brass-deep); }

/* =====================================================================
   Testimonials (static grid)
   ===================================================================== */
.hr-quotes { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 26px); }
.hr-quote { padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; }
.hr-quote__mark { font-family: var(--hr-serif); font-size: 3.4rem; line-height: .6; color: var(--hr-brass); opacity: .6; height: 26px; }
.hr-stars { display: inline-flex; gap: 3px; margin: 8px 0 14px; }
.hr-stars svg { width: 17px; height: 17px; fill: var(--hr-brass); }
.hr-stars svg.is-dim { fill: var(--hr-parchment-deep); }
.hr-quote__text { color: var(--hr-ink); font-size: .98rem; flex: 1; }
.hr-quote__author { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--hr-line); }
.hr-quote__avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--hr-navy); color: var(--hr-brass-bright); font-family: var(--hr-serif); font-size: 1.05rem; border: 1px solid var(--hr-brass); flex: none; }
.hr-quote__name { font-weight: 600; color: var(--hr-navy); }
.hr-quote__meta { font-size: .8rem; color: var(--hr-ink-2); margin-top: 2px; }

/* =====================================================================
   Blog
   ===================================================================== */
.hr-posts { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 2.6vw, 30px); }
.hr-post { overflow: hidden; display: flex; flex-direction: column; }
.hr-post__media { position: relative; }
.hr-post__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hr-post__cat { position: absolute; top: 14px; left: 14px; background: var(--hr-navy); color: var(--hr-brass-bright); font-size: .72rem; letter-spacing: .1em; padding: 6px 12px; border: 1px solid var(--hr-brass); }
.hr-post__body { padding: clamp(22px, 2.6vw, 28px); display: flex; flex-direction: column; flex: 1; }
.hr-post__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .78rem; color: var(--hr-ink-2); }
.hr-post__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hr-post__meta svg { width: 14px; height: 14px; color: var(--hr-brass); }
.hr-post__title { font-family: var(--hr-serif); font-size: 1.3rem; line-height: 1.2; color: var(--hr-navy); margin-top: 14px; }
.hr-post__title a:hover { color: var(--hr-brass-deep); }
.hr-post__text { margin-top: 10px; font-size: .92rem; color: var(--hr-ink-2); flex: 1; }
.hr-post__foot { margin-top: 18px; }

/* =====================================================================
   FAQ + sidebar
   ===================================================================== */
.hr-faq { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 4vw, 54px); }
.hr-accordion { border-top: 1px solid var(--hr-line); }
.hr-acc { border-bottom: 1px solid var(--hr-line); }
.hr-acc__btn { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; text-align: left; padding: 20px 0; font-family: var(--hr-serif); font-size: 1.2rem; color: var(--hr-navy); }
.hr-acc__ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border: 1px solid var(--hr-line); border-radius: 50%; color: var(--hr-brass-deep); transition: transform .3s ease, background-color .3s ease, color .3s ease; }
.hr-acc__ic svg { width: 18px; height: 18px; }
.hr-acc.is-open .hr-acc__ic { transform: rotate(180deg); background: var(--hr-brass); color: #241a0d; border-color: var(--hr-brass); }
.hr-acc__panel { height: 0; overflow: hidden; transition: height .34s cubic-bezier(.3, .7, .2, 1); }
@media (prefers-reduced-motion: reduce) { .hr-acc__panel { transition: none; } }
.hr-acc__inner { padding: 0 0 22px; color: var(--hr-ink-2); max-width: 64ch; }

.hr-sidebar { display: grid; gap: 20px; align-content: start; }
.hr-side { padding: clamp(22px, 2.6vw, 28px); border-radius: var(--hr-radius); }
.hr-side--brass { background: var(--hr-navy); color: var(--hr-ivory); border: 1px solid var(--hr-brass); }
.hr-side--dark { background: var(--hr-navy-deep); color: var(--hr-ink-on-dark); border: 1px solid var(--hr-navy-line); }
.hr-side__title { font-family: var(--hr-serif); font-size: 1.3rem; margin-bottom: 12px; }
.hr-side--brass .hr-side__title, .hr-side--dark .hr-side__title { color: var(--hr-ivory); }
.hr-side p { font-size: .92rem; }
.hr-side--brass p { color: var(--hr-ink-on-dark); }
.hr-side__phone { display: block; font-family: var(--hr-serif); font-size: 1.7rem; color: var(--hr-brass-bright); margin: 14px 0 16px; }
.hr-side--plain { background: var(--hr-parchment); border: 1px solid var(--hr-line); }
.hr-linklist li { border-bottom: 1px solid var(--hr-line); }
.hr-linklist li:last-child { border-bottom: 0; }
.hr-linklist a { display: block; padding: 10px 0; font-size: .93rem; color: var(--hr-ink); transition: color .2s ease, padding-left .2s ease; }
.hr-linklist a:hover { color: var(--hr-brass-deep); padding-left: 6px; }
.hr-hours { display: grid; gap: 2px; }
.hr-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--hr-navy-line); font-size: .9rem; }
.hr-hours li:last-child { border-bottom: 0; }
.hr-hours span:last-child { color: var(--hr-brass-bright); font-weight: 600; }

/* =====================================================================
   CTA band
   ===================================================================== */
.hr-ctaband { position: relative; overflow: hidden; background: var(--hr-navy); color: var(--hr-ivory); padding-block: clamp(48px, 6vw, 80px); }
.hr-ctaband::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(90deg, rgba(198, 160, 99, .05) 0 1px, transparent 1px 44px);
}
.hr-ctaband__seal { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 300px; opacity: .08; color: var(--hr-brass-bright); }
.hr-ctaband__inner { position: relative; display: grid; gap: 26px; align-items: center; }
.hr-ctaband__title { font-family: var(--hr-serif); font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.08; }
.hr-ctaband__text { color: var(--hr-ink-on-dark); margin-top: 14px; max-width: 46ch; }
.hr-ctaband__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =====================================================================
   Footer
   ===================================================================== */
.hr-footer { background: var(--hr-navy-deep); color: var(--hr-ink-on-dark-2); }
.hr-footer__top { padding-block: clamp(48px, 6vw, 76px); border-bottom: 1px solid var(--hr-navy-line); }
.hr-footer__grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 44px); }
.hr-footer__brand { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hr-footer__seal { width: 50px; height: 50px; }
.hr-footer__brandname { font-family: var(--hr-serif); font-size: 1.6rem; color: var(--hr-ivory); }
.hr-footer__brandname b { font-weight: 400; color: var(--hr-brass-bright); }
.hr-footer__brandtag { display: block; font-size: .62rem; letter-spacing: .3em; color: var(--hr-ink-on-dark-2); margin-top: 4px; }
.hr-footer__about { font-size: .92rem; color: var(--hr-ink-on-dark-2); max-width: 42ch; }
.hr-footer__title { font-family: var(--hr-sans); font-weight: 600; font-size: .82rem; letter-spacing: .14em; color: var(--hr-brass-bright); margin-bottom: 16px; }
.hr-footer__links li, .hr-footer__contact li { margin-bottom: 11px; }
.hr-footer__links a { font-size: .93rem; color: var(--hr-ink-on-dark-2); transition: color .2s ease; }
.hr-footer__links a:hover { color: var(--hr-ivory); }
.hr-footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; }
.hr-footer__contact svg { width: 18px; height: 18px; color: var(--hr-brass-bright); flex: none; margin-top: 3px; }
.hr-footer__contact strong { display: block; color: var(--hr-ivory); font-weight: 600; margin-bottom: 3px; }
.hr-footer__contact a { color: var(--hr-brass-bright); }
.hr-footer__seo { padding-block: 30px; border-bottom: 1px solid var(--hr-navy-line); }
.hr-footer__seo-title { font-family: var(--hr-serif); font-size: 1.05rem; color: var(--hr-ivory); margin-bottom: 14px; }
.hr-footer__seo-links { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.hr-footer__seo-links a { font-size: .8rem; color: var(--hr-ink-on-dark-2); border: 1px solid var(--hr-navy-line); padding: 6px 12px; border-radius: 2px; transition: border-color .2s ease, color .2s ease; }
.hr-footer__seo-links a:hover { color: var(--hr-brass-bright); border-color: var(--hr-brass); }
.hr-footer__bottom { padding-block: 22px; }
.hr-footer__bottom-inner { display: flex; flex-direction: column; gap: 14px; font-size: .82rem; }
.hr-footer__legal { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.hr-footer__legal a:hover { color: var(--hr-ivory); }

/* =====================================================================
   Floating callbar + to-top
   ===================================================================== */
.hr-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; justify-content: center; gap: 10px;
  background: var(--hr-brass); color: #241a0d; font-weight: 700; letter-spacing: .01em;
  padding: 14px; border-top: 2px solid var(--hr-brass-deep);
}
.hr-callbar svg { width: 19px; height: 19px; }
.hr-to-top {
  position: fixed; right: 20px; bottom: 24px; z-index: 79; width: 46px; height: 46px;
  display: grid; place-items: center; background: var(--hr-navy); color: var(--hr-ivory);
  border: 1px solid var(--hr-brass); border-radius: 50%;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease, background-color .2s ease;
}
.hr-to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.hr-to-top:hover { background: var(--hr-brass); color: #241a0d; }
.hr-to-top svg { width: 20px; height: 20px; }

/* =====================================================================
   Responsive
   ===================================================================== */
.hr-head__navbar-wrap { display: none; }

@media (min-width: 620px) {
  .hr-strip { grid-template-columns: repeat(4, 1fr); }
  .hr-stats { grid-template-columns: repeat(4, 1fr); }
  .hr-svc__feature { flex-direction: row; }
  .hr-svc__feature .hr-svc__media { width: 46%; }
  .hr-svc__feature .hr-svc__media img { height: 100%; aspect-ratio: auto; }
  .hr-svc__feature .hr-svc__body { flex: 1; }
  .hr-quotes { grid-template-columns: repeat(2, 1fr); }
  .hr-posts { grid-template-columns: repeat(2, 1fr); }
  .hr-brands { grid-template-columns: repeat(3, 1fr); }
  .hr-footer__bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  .hr-hero__inner { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .hr-hero__aside { align-self: stretch; }
  .hr-hero__plate { grid-column: 1 / -1; }
  .hr-charter { grid-template-columns: repeat(3, 1fr); }
  .hr-clause--wide { grid-column: auto; }
  .hr-corp { grid-template-columns: 1fr 1.08fr; }
  .hr-corp__accent { display: block; }
  .hr-brands { grid-template-columns: repeat(4, 1fr); }
  .hr-faults { grid-template-columns: repeat(3, 1fr); }
  .hr-regions { grid-template-columns: repeat(3, 1fr); }
  .hr-quotes { grid-template-columns: repeat(3, 1fr); }
  .hr-posts { grid-template-columns: repeat(3, 1fr); }
  .hr-faq { grid-template-columns: 1.7fr 1fr; }
  .hr-cta-inline { grid-template-columns: 1.4fr 1fr; }
  .hr-cta-inline .hr-btnrow { justify-content: flex-end; }
  .hr-ctaband__inner { grid-template-columns: 1.3fr 1fr; }
  .hr-ctaband__actions { justify-content: flex-end; }
  .hr-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; }
}

@media (min-width: 1040px) {
  .hr-head__navbar-wrap { display: block; }
}

/* Collapse masthead to single row on smaller screens */
@media (max-width: 1039px) {
  .hr-head__actions .hr-phone { display: none; }
  .hr-head__actions .hr-btn { display: none; }
  .hr-burger { display: inline-flex; }
}
@media (max-width: 720px) {
  .hr-callbar { display: flex; }
  .hr-to-top { bottom: 78px; }
  body { padding-bottom: 56px; }
}
@media (max-width: 460px) {
  .hr-brand__tag { display: none; }
  .hr-region__list { grid-template-columns: 1fr; }
}
