@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio/antonio-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/mona-sans/MonaSansVF.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-stretch: normal;
  font-display: swap;
}

:root {
	--hbc-color-background: #f3efe7;
	--hbc-color-surface: #fbf8f2;
	--hbc-color-text: #11110f;
	--hbc-color-accent: #9b692b;
	--hbc-color-secondary: #54262b;
	--hbc-font-display: "Antonio", Impact, sans-serif;
	--hbc-font-body: "Mona Sans", Arial, sans-serif;
	--hbc-content-width: 90rem;
	--hbc-space-page: clamp(1.25rem, 4.1vw, 4.75rem);
  --ivory: #f3efe7;
  --paper: #fbf8f2;
  --ink: #11110f;
  --charcoal: #242420;
  --bronze: #9b692b;
  --forest: #20342d;
  --oxblood: #54262b;
  --stone: #c9c0b1;
  --header-height: 5.75rem;
  --page-pad: clamp(1.25rem, 4.1vw, 4.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Mona Sans", Arial, sans-serif;
  font-size: 1rem;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 220ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

::selection {
  color: var(--paper);
  background: var(--oxblood);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: color 450ms var(--ease), background-color 450ms var(--ease), border-color 450ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(17, 17, 15, 0.13);
  background: rgba(243, 239, 231, 0.93);
  backdrop-filter: blur(12px);
}

.site-header.is-dark {
  color: var(--paper);
}

.site-header.is-dark.is-scrolled {
  border-bottom-color: rgba(251, 248, 242, 0.18);
  background: rgba(17, 17, 15, 0.91);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  width: clamp(8.5rem, 12vw, 11rem);
  min-height: 3.4rem;
  align-items: center;
  padding: 0.38rem 0.65rem;
  background: var(--paper);
}

.brand img,
.footer-lockup img {
  width: 100%;
  mix-blend-mode: multiply;
}

.brand img {
  width: 100%;
  max-height: 3.4rem;
  object-fit: contain;
  margin: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.1vw, 2.5rem);
  font-family: "Antonio", Impact, sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.desktop-nav a,
.footer-nav a {
  position: relative;
}

.desktop-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0.45rem;
  width: 2.1rem;
  height: 1px;
  background: currentColor;
  transition: transform 500ms var(--ease), top 500ms var(--ease);
}

.menu-toggle span:first-child {
  top: 1.15rem;
}

.menu-toggle span:last-child {
  top: 1.82rem;
}

.menu-open .menu-toggle span:first-child {
  top: 1.5rem;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  top: 1.5rem;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0;
  width: 100vw;
  display: none;
  align-items: flex-end;
  padding: calc(var(--header-height) + 2rem) var(--page-pad) 2.25rem;
  color: var(--paper);
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: visibility 650ms, opacity 650ms var(--ease), transform 650ms var(--ease);
}

.mobile-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  width: 100%;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 3.85rem;
  border-bottom: 1px solid rgba(251, 248, 242, 0.22);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(56rem, 100svh);
  grid-template-columns: minmax(7.5rem, 0.42fr) minmax(0, 2.58fr);
  grid-template-rows: auto 1fr auto;
  gap: 2rem 3vw;
  align-items: start;
  padding: calc(var(--header-height) + clamp(3rem, 8vh, 6rem)) var(--page-pad) clamp(3rem, 7vh, 5.5rem);
  background: var(--ivory);
  isolation: isolate;
  overflow: hidden;
}

.hero > * {
  min-width: 0;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 10.5vw;
  width: 1px;
  height: 100%;
  background: rgba(17, 17, 15, 0.12);
  content: "";
}

.hero-frame {
  position: absolute;
  z-index: -1;
  right: 3.2vw;
  bottom: 8vh;
  width: clamp(4rem, 8vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid var(--bronze);
  border-left: 0;
}

.hero-frame::before,
.hero-frame::after {
  position: absolute;
  background: var(--bronze);
  content: "";
}

.hero-frame::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.hero-frame::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.hero-welcome {
  grid-column: 1;
  padding-top: 0.75rem;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  font-weight: 450;
  line-height: 1;
}

.hero-title {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(5rem, 10.35vw, 10.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  margin-left: -0.13em;
  color: var(--oxblood);
}

.hero-title span:nth-child(3) {
  margin-left: 0.18em;
}

.hero-title span:nth-child(4) {
  margin-left: 0.38em;
}

.hero-detail {
  display: grid;
  grid-column: 2;
  grid-template-columns: clamp(4rem, 8vw, 8rem) minmax(16rem, 38rem);
  gap: 1.5rem;
  align-items: start;
  justify-content: end;
  padding-right: clamp(3rem, 10vw, 10rem);
}

.gold-rule {
  height: 2px;
  margin-top: 0.72rem;
  background: var(--bronze);
}

.hero-detail p {
  min-width: 0;
  overflow-wrap: break-word;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.5;
}

.about {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 13vw, 12rem) var(--page-pad);
  background: var(--paper);
}

.section-marker,
.investments-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
}

.section-marker h2,
.investments-heading h2 {
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4rem, 9.5vw, 9rem);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 0.85;
}

.section-marker span,
.investments-heading span {
  height: 1px;
  background: currentColor;
  opacity: 0.36;
}

.about-copy {
  display: grid;
  margin-top: clamp(5rem, 11vw, 10rem);
  grid-template-columns: minmax(0, 2fr) minmax(17rem, 0.72fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: end;
}

.about-lead {
  max-width: 21ch;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(3rem, 5.45vw, 5.5rem);
  font-weight: 350;
  letter-spacing: -0.018em;
  line-height: 0.99;
}

.about-supporting {
  display: grid;
  gap: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: 0.5rem;
}

.about-supporting p {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 15, 0.32);
  font-size: clamp(1rem, 1.32vw, 1.25rem);
  line-height: 1.55;
}

.about-supporting strong {
  color: var(--oxblood);
  font-weight: 700;
}

.group-transition {
  position: relative;
  display: grid;
  min-height: max(47rem, 92svh);
  align-content: center;
  padding: clamp(7rem, 12vw, 11rem) var(--page-pad);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.transition-line {
  position: absolute;
  top: 0;
  right: 16vw;
  width: 1px;
  height: 100%;
  background: rgba(251, 248, 242, 0.17);
}

.transition-line::before {
  position: absolute;
  top: 24%;
  left: 50%;
  width: clamp(9rem, 20vw, 19rem);
  aspect-ratio: 1;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.transition-welcome {
  margin-bottom: clamp(2rem, 5vw, 5rem);
  color: var(--bronze);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 450;
}

.group-transition h2 {
  position: relative;
  max-width: 12ch;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4.2rem, 9.5vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.88;
}

.investments {
  padding: clamp(7rem, 11vw, 10rem) var(--page-pad) clamp(8rem, 14vw, 14rem);
  color: var(--paper);
  background: var(--forest);
}

.investments-heading {
  margin-bottom: clamp(5rem, 10vw, 9rem);
}

.investment-shell {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(32rem, 1.45fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.investment-preview {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: flex;
  min-height: 32rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 3vw, 3.75rem);
  overflow: hidden;
  border: 1px solid rgba(251, 248, 242, 0.33);
  background: var(--oxblood);
}

.investment-preview::after {
  position: absolute;
  right: -22%;
  bottom: -25%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 248, 242, 0.26);
  border-radius: 50%;
  content: "";
}

.preview-mark {
  width: 4.75rem;
  height: 1px;
  background: var(--bronze);
}

.preview-company {
  max-width: 8ch;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4rem, 5.5vw, 6.2rem);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 0.88;
  transition: opacity 230ms ease, transform 500ms var(--ease);
}

.preview-descriptor {
  max-width: 24rem;
  margin-top: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.4;
  transition: opacity 230ms ease, transform 500ms var(--ease);
}

.investment-preview.is-changing .preview-company,
.investment-preview.is-changing .preview-descriptor {
  opacity: 0;
  transform: translateY(0.8rem);
}

.investment-list {
  border-top: 1px solid rgba(251, 248, 242, 0.42);
}

.investment-item {
  position: relative;
  display: grid;
  min-height: 8.75rem;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.52fr);
  gap: 2rem;
  align-items: center;
  padding: 1.55rem 3.5rem 1.55rem 0;
  border-bottom: 1px solid rgba(251, 248, 242, 0.42);
  transition: color 500ms var(--ease), background-color 500ms var(--ease), padding 500ms var(--ease);
}

.investment-item h3 {
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2.4rem, 3.75vw, 4.15rem);
  font-weight: 430;
  letter-spacing: -0.018em;
  line-height: 0.93;
}

.investment-item p {
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.35;
}

.investment-link::after {
  position: absolute;
  right: 0.25rem;
  font-family: "Antonio", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 300;
  content: "↗";
  transition: transform 450ms var(--ease);
}

.investment-link:hover,
.investment-link:focus-visible {
  padding-right: 4.25rem;
  padding-left: 1.5rem;
  color: var(--ink);
  background: var(--paper);
}

.investment-link:hover::after,
.investment-link:focus-visible::after {
  right: 1.5rem;
  transform: translate(0.2rem, -0.2rem);
}

.investment-link:focus-visible {
  outline-color: var(--paper);
  outline-offset: 3px;
}

.leadership {
  padding: clamp(7rem, 12vw, 12rem) var(--page-pad);
  background: var(--ivory);
}

.leadership-list {
  display: grid;
  margin-top: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--ink);
}

.leader {
  display: grid;
  min-height: clamp(8rem, 12vw, 12rem);
  grid-template-columns: minmax(0, 1.6fr) minmax(14rem, 0.65fr);
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.leader-name {
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4.6rem, 9.5vw, 9rem);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 0.85;
}

.leader-role {
  padding-top: 0.5rem;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.4;
}

.quiet-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quiet-section {
  position: relative;
  min-height: max(36rem, 72svh);
  padding: clamp(3rem, 5vw, 5rem) var(--page-pad);
  overflow: hidden;
}

.quiet-section h2 {
  position: relative;
  z-index: 1;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 420;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.recognitions {
  color: var(--paper);
  background: var(--charcoal);
}

.updates {
  background: var(--stone);
}

.quiet-graphic {
  position: absolute;
  right: -17%;
  bottom: -29%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.46;
}

.quiet-graphic::before,
.quiet-graphic::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.quiet-graphic::before {
  top: 50%;
  left: -70%;
  width: 170%;
  height: 1px;
}

.quiet-graphic::after {
  top: -20%;
  left: 50%;
  width: 1px;
  height: 120%;
}

.contact {
  display: grid;
  min-height: max(44rem, 92svh);
  grid-template-rows: auto 1fr auto;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad) clamp(2rem, 4vw, 4rem);
  background: var(--paper);
}

.contact > h2 {
  justify-self: end;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 0.85;
}

.footer-lockup {
  width: min(48rem, 82vw);
  align-self: center;
  justify-self: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 450;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 5.2rem;
  }

  .desktop-nav {
    gap: 1.1rem;
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: 8rem minmax(0, 1fr);
  }

  .hero-title {
    font-size: clamp(4.7rem, 10.4vw, 7rem);
  }

  .about-copy {
    grid-template-columns: 1fr;
  }

  .about-lead {
    max-width: 24ch;
  }

  .about-supporting {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .investment-shell {
    grid-template-columns: minmax(17rem, 0.67fr) minmax(26rem, 1.2fr);
    gap: 3rem;
  }

  .investment-preview {
    min-height: 27rem;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .site-header.is-dark .menu-toggle,
  .menu-open .menu-toggle {
    color: var(--paper);
  }

  .hero {
    min-height: max(48rem, 100svh);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 2.25rem;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero-welcome,
  .hero-title,
  .hero-detail {
    grid-column: 1;
  }

  .hero-title {
    font-size: clamp(4.8rem, 14.4vw, 7.4rem);
  }

  .hero-detail {
    grid-template-columns: minmax(2.75rem, 0.24fr) minmax(0, 1fr);
    align-self: end;
    padding-right: 3rem;
  }

  .hero::before {
    right: 4.75rem;
  }

  .hero-frame {
    right: 1.25rem;
  }

  .investment-shell {
    display: block;
  }

  .investment-preview {
    display: none;
  }

  .investment-item {
    min-height: 8rem;
    grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.45fr);
  }

  .quiet-chapters {
    grid-template-columns: 1fr;
  }

  .quiet-section {
    min-height: 58svh;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad: 1.15rem;
    --header-height: 4.75rem;
  }

  .site-header {
    padding-right: 0.8rem;
  }

  .brand {
    width: 8.15rem;
    min-height: 2.9rem;
  }

  .hero {
    min-height: max(45rem, 100svh);
    gap: 1.8rem;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 2rem;
  }

  .hero-welcome {
    font-size: 1.35rem;
  }

  .hero-title {
    font-size: clamp(3.35rem, 15.3vw, 4.35rem);
    line-height: 0.86;
  }

  .hero-title span:nth-child(2),
  .hero-title span:nth-child(3),
  .hero-title span:nth-child(4) {
    margin-left: 0;
  }

  .hero-detail {
    grid-template-columns: 2.7rem 1fr;
    gap: 1rem;
    padding-right: 2.5rem;
  }

  .hero-detail p {
    font-size: 0.94rem;
  }

  .about,
  .leadership,
  .investments {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .section-marker,
  .investments-heading {
    gap: 1.2rem;
  }

  .section-marker h2,
  .investments-heading h2 {
    font-size: clamp(3.75rem, 18vw, 5.2rem);
  }

  .about-copy {
    margin-top: 4.5rem;
    gap: 4.5rem;
  }

  .about-lead {
    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
    line-height: 1.01;
  }

  .about-supporting {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .group-transition {
    min-height: max(42rem, 86svh);
  }

  .group-transition h2 {
    font-size: clamp(3.7rem, 16.5vw, 5.1rem);
  }

  .transition-line {
    right: 2.6rem;
  }

  .transition-line::before {
    width: 8rem;
  }

  .investments-heading {
    margin-bottom: 4.5rem;
  }

  .investment-item {
    min-height: 9.75rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.75rem 2.75rem 1.75rem 0;
  }

  .investment-item h3 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  .investment-item p {
    font-size: 0.82rem;
  }

  .investment-link:hover,
  .investment-link:focus-visible {
    padding-right: 3.5rem;
    padding-left: 0.85rem;
  }

  .leadership-list {
    margin-top: 4.5rem;
  }

  .leader {
    min-height: 9rem;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-content: center;
    padding: 1.5rem 0;
  }

  .leader-name {
    font-size: clamp(4.25rem, 19vw, 6rem);
  }

  .leader-role {
    padding-top: 0;
  }

  .quiet-section {
    min-height: 32rem;
  }

  .quiet-section h2 {
    font-size: clamp(3.6rem, 16vw, 5rem);
  }

  .contact {
    min-height: max(39rem, 88svh);
    padding-top: 4rem;
  }

  .footer-lockup {
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: initial;
    gap: 1.1rem;
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Revision 02: editorial leadership, recognition, updates and contact chapters */

[hidden] {
  display: none !important;
}

.leadership-grid {
  display: grid;
  margin-top: clamp(5rem, 10vw, 10rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(5rem, 9vw, 9rem) clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.leader-card:nth-child(even) {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.leader-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

.leader-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 17, 15, 0.18);
  content: "";
  pointer-events: none;
}

.leader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.leader-card:nth-child(2) .leader-portrait img {
  object-position: 50% 22%;
}

.leader-card:hover .leader-portrait img {
  transform: scale(1.025);
}

.leader-placeholder img {
  object-position: center;
}

.leader-copy {
  display: grid;
  margin-top: 1.35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: baseline;
  padding-top: 1.35rem;
  border-top: 1px solid var(--ink);
}

.leader-copy h3 {
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.leader-copy p {
  max-width: 13rem;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.35;
  text-align: right;
}

.recognitions-home,
.updates-home {
  padding: clamp(7rem, 12vw, 12rem) var(--page-pad);
}

.recognitions-home {
  color: var(--paper);
  background: var(--charcoal);
}

.updates-home {
  background: var(--stone);
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  margin-bottom: 1rem;
  font-family: "Mona Sans", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.chapter-heading h2,
.contact-heading h2 {
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 430;
  letter-spacing: -0.03em;
  line-height: 0.82;
}

.chapter-link {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  gap: 1.7rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid currentColor;
  font-family: "Antonio", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.chapter-link span {
  font-size: 1.45rem;
  transition: transform 350ms var(--ease);
}

.chapter-link:hover span,
.chapter-link:focus-visible span {
  transform: translate(0.25rem, -0.25rem);
}

.chapter-link-light {
  color: var(--paper);
}

.recognition-feature-list {
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid rgba(251, 248, 242, 0.38);
}

.recognition-feature {
  display: grid;
  min-height: clamp(9rem, 14vw, 14rem);
  grid-template-columns: minmax(5rem, 0.25fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  border-bottom: 1px solid rgba(251, 248, 242, 0.38);
}

.recognition-year {
  align-self: start;
  padding-top: 2.4rem;
  color: var(--bronze);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.recognition-feature h3 {
  max-width: 24ch;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 360;
  letter-spacing: -0.015em;
  line-height: 0.98;
}

.update-grid {
  display: grid;
  gap: clamp(3rem, 5vw, 5rem) clamp(1.35rem, 3vw, 3.5rem);
}

.update-grid-home {
  margin-top: clamp(5rem, 9vw, 9rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.update-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory);
}

.update-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 17, 15, 0.18);
  content: "";
  pointer-events: none;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms var(--ease), filter 750ms var(--ease);
}

.update-card:hover .update-image img,
.update-card:focus-within .update-image img {
  filter: saturate(0.86);
  transform: scale(1.035);
}

.update-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(17, 17, 15, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.update-card h3,
.update-card h2 {
  margin-top: 1rem;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 430;
  letter-spacing: -0.018em;
  line-height: 1.02;
}

.update-card h3 a,
.update-card h2 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 450ms var(--ease), background-position 0s 450ms;
}

.update-card h3 a:hover,
.update-card h3 a:focus-visible,
.update-card h2 a:hover,
.update-card h2 a:focus-visible {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.contact {
  display: grid;
  min-height: max(38rem, 76svh);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
  grid-template-rows: 1fr auto;
  gap: 5rem clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding: clamp(7rem, 11vw, 10rem) var(--page-pad) clamp(2rem, 4vw, 3.5rem);
  background: var(--paper);
}

.contact-heading h2 {
  font-size: clamp(5rem, 12vw, 12rem);
}

.contact-details {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
}

.contact-phone {
  width: fit-content;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.contact-phone span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--bronze);
  font-family: "Mona Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details address {
  font-style: normal;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1.55;
}

.footer-bar,
.compact-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.footer-bar {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
}

.footer-brand {
  display: block;
  width: clamp(6.2rem, 8vw, 8.4rem);
}

.footer-brand img {
  width: 100%;
}

.footer-bar .footer-nav,
.compact-footer .footer-nav {
  justify-content: center;
  padding: 0;
  border: 0;
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.compact-footer {
  padding: 2rem var(--page-pad);
  color: var(--paper);
  background: var(--ink);
}

.compact-socials {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compact-socials a {
  color: inherit;
}

.compact-footer .copyright {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.footer-brand-light {
  padding: 0.25rem 0.4rem;
  background: var(--paper);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: max(38rem, 74svh);
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  padding: calc(var(--header-height) + clamp(5rem, 10vw, 10rem)) var(--page-pad) clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
}

.updates-page-hero {
  background: var(--stone);
}

.page-hero h1 {
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.76;
}

.page-intro {
  position: relative;
  z-index: 1;
  max-width: 29rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  line-height: 1.55;
}

.page-hero-geometry {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -5%;
  width: clamp(15rem, 30vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 15, 0.28);
  border-radius: 50%;
}

.page-hero-geometry::before,
.page-hero-geometry::after {
  position: absolute;
  background: var(--bronze);
  content: "";
}

.page-hero-geometry::before {
  top: 50%;
  right: -20%;
  left: -20%;
  height: 1px;
}

.page-hero-geometry::after {
  top: -20%;
  bottom: -20%;
  left: 50%;
  width: 1px;
}

.recognition-archive,
.updates-archive {
  padding: clamp(7rem, 11vw, 11rem) var(--page-pad);
  background: var(--paper);
}

.recognition-group {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 6vw, 8rem);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--ink);
}

.recognition-group:last-child {
  border-bottom: 1px solid var(--ink);
}

.recognition-group > h2 {
  color: var(--oxblood);
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 430;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.recognition-group ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recognition-group li {
  display: grid;
  min-height: 7rem;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.25);
}

.recognition-group li:first-child {
  padding-top: 0;
}

.recognition-group li:last-child {
  border-bottom: 0;
}

.recognition-group li span {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.recognition-group li p {
  max-width: 34ch;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  font-weight: 370;
  letter-spacing: -0.01em;
  line-height: 1;
}

.update-grid-archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.update-grid-archive .update-card:nth-child(even) {
  margin-top: clamp(3rem, 7vw, 7rem);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: clamp(6rem, 10vw, 10rem);
}

.pagination button {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 250ms ease, background-color 250ms ease;
}

.pagination button:hover,
.pagination button:focus-visible,
.pagination button[aria-current="page"] {
  color: var(--paper);
  background: var(--ink);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.pagination-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .leader-copy {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .leader-copy p {
    text-align: left;
  }

  .update-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .update-grid-home .update-card:last-child {
    grid-column: 2;
  }

  .footer-bar,
  .compact-footer {
    grid-template-columns: auto 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .leadership-grid,
  .update-grid-archive {
    grid-template-columns: 1fr;
  }

  .leader-card {
    width: min(100%, 39rem);
  }

  .leader-card:nth-child(even) {
    margin-top: 0;
    margin-left: auto;
  }

  .leader-card:nth-child(odd) {
    margin-right: auto;
  }

  .leader-copy {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .leader-copy p {
    text-align: right;
  }

  .contact,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: start;
  }

  .page-hero {
    align-content: end;
  }

  .page-intro {
    max-width: 34rem;
  }

  .recognition-group {
    grid-template-columns: 1fr;
  }

  .update-grid-archive .update-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .brand {
    width: 7.6rem;
  }

  .leadership-grid {
    gap: 4.75rem;
  }

  .leader-copy {
    grid-template-columns: 1fr;
  }

  .leader-copy p {
    text-align: left;
  }

  .chapter-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .chapter-link {
    justify-self: start;
  }

  .recognition-feature {
    min-height: 11rem;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.25rem;
  }

  .recognition-year {
    padding-top: 1.8rem;
  }

  .update-grid-home {
    grid-template-columns: 1fr;
  }

  .update-grid-home .update-card:last-child {
    grid-column: auto;
  }

  .contact {
    grid-template-rows: auto auto auto;
    gap: 4rem;
  }

  .contact-phone {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .footer-bar,
  .compact-footer {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bar .footer-nav,
  .compact-footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: initial;
    gap: 1rem;
  }

  .copyright {
    grid-column: auto;
  }

  .page-hero {
    min-height: max(32rem, 68svh);
    padding-top: calc(var(--header-height) + 5rem);
  }

  .page-hero h1 {
    font-size: clamp(5rem, 25vw, 8rem);
  }

  .recognition-page-hero h1 {
    font-size: clamp(4.6rem, 20.5vw, 6.5rem);
  }

  .recognition-group li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

/* WordPress and Elementor integration */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--paper);
  background: var(--ink);
}

.desktop-nav .menu,
.mobile-menu .menu,
.footer-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: inherit;
}

.mobile-menu .menu {
  display: grid;
  width: 100%;
}

.footer-nav .menu {
  display: contents;
}

.desktop-nav li,
.mobile-menu li,
.footer-nav li {
  margin: 0;
  padding: 0;
}

.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.custom-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.admin-bar .site-header {
  top: 32px;
}

.admin-bar .mobile-menu {
  top: 32px;
}

.contact-socials {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 17, 15, 0.34);
}

.contact-socials-label {
  margin-bottom: 0.75rem;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-socials ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.contact-socials li {
  margin: 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.26);
}

.contact-socials a {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: "Antonio", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.contact-socials a span:last-child {
  transition: transform 350ms var(--ease);
}

.contact-socials a:hover span:last-child,
.contact-socials a:focus-visible span:last-child {
  transform: translate(0.2rem, -0.2rem);
}

.update-image-empty {
  display: grid;
  place-items: center;
  padding: 15%;
  background: var(--stone);
}

.update-image-empty img {
  width: min(14rem, 72%);
  height: auto;
  object-fit: contain;
}

.pagination .page-numbers,
.nav-links .page-numbers {
  display: inline-grid;
  min-width: 3rem;
  min-height: 3rem;
  place-items: center;
  padding: 0.6rem 1rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: color 250ms ease, background-color 250ms ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus-visible,
.pagination .page-numbers.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers:focus-visible,
.nav-links .page-numbers.current {
  color: var(--paper);
  background: var(--ink);
}

.content-page-hero {
  min-height: max(34rem, 68svh);
  grid-template-columns: 1fr;
}

.content-page-hero h1 {
  max-width: 16ch;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.entry-content-shell,
.archive-shell {
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
  background: var(--paper);
}

.entry-featured-image {
  width: min(100%, 76rem);
  max-height: 72svh;
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  object-fit: cover;
}

.entry-content {
  width: min(100%, 49rem);
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.72;
}

.entry-content > * + * {
  margin-top: 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: "Antonio", Impact, sans-serif;
  font-weight: 430;
  line-height: 1;
}

.entry-content h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.entry-content h3 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.entry-content a:not(.chapter-link),
.archive-excerpt a {
  text-decoration: underline;
  text-decoration-color: var(--bronze);
  text-underline-offset: 0.2em;
}

.source-link {
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
  font-family: "Antonio", Impact, sans-serif;
  font-size: 1.3rem;
}

.archive-shell {
  display: grid;
}

.archive-entry,
.content-none {
  display: grid;
  grid-template-columns: minmax(7rem, 0.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--ink);
}

.archive-entry h2,
.content-none h2 {
  max-width: 27ch;
  font-family: "Antonio", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.archive-excerpt {
  grid-column: 2;
  max-width: 42rem;
  line-height: 1.6;
}

.archive-shell .navigation.pagination {
  display: block;
  margin-top: 5rem;
}

.archive-shell .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.error-home-link {
  margin-top: 3rem;
}

.hbc-elementor-full-width,
.hbc-full-width {
  width: 100%;
  max-width: none;
  min-height: 60svh;
  padding-top: var(--header-height);
}

.hbc-elementor-full-width > .elementor,
.hbc-elementor-full-width .elementor-section-wrap,
.hbc-elementor-full-width .e-con,
.hbc-full-width > article {
  width: 100%;
  max-width: none;
}

.hbc-elementor-canvas {
  width: 100%;
  max-width: none;
  min-height: 100svh;
}

.elementor-widget-hbc-site-header,
.elementor-widget-hbc-hero,
.elementor-widget-hbc-about,
.elementor-widget-hbc-transition,
.elementor-widget-hbc-companies,
.elementor-widget-hbc-leadership,
.elementor-widget-hbc-recognitions,
.elementor-widget-hbc-blog,
.elementor-widget-hbc-page-header,
.elementor-widget-hbc-footer {
  width: 100%;
}

.elementor-editor-active [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

.elementor-editor-active .elementor-widget-hbc-site-header .site-header {
  position: relative;
  top: 0;
}

.hbc-elementor-card .investment-item,
.hbc-elementor-card .leader-card,
.hbc-elementor-card .recognition-feature,
.hbc-elementor-card .update-card {
  width: 100%;
}

/* V2 hero: exact editorial line groups on wide screens, natural reflow on phones. */
.hero.hero-v2 {
  min-height: max(48rem, 100svh);
  grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1.66fr);
  grid-template-rows: auto 1fr auto;
  gap: clamp(2rem, 5vh, 4rem) clamp(2rem, 5vw, 6rem);
  background-color: var(--hbc-color-background);
  background-image: linear-gradient(rgba(243, 239, 231, 0.84), rgba(243, 239, 231, 0.94)), var(--hbc-hero-image, none);
  background-position: center;
  background-size: cover;
}

.hero-v2 .hero-title {
  max-width: 12.5ch;
  align-self: center;
  font-size: clamp(4.6rem, 7.8vw, 8.2rem);
  line-height: 0.9;
}

.hero-v2 .hero-title span:nth-child(n) {
  margin-left: 0;
}

.hero-v2 .hero-title span:nth-child(2) {
  color: var(--oxblood);
}

.hero-v2 .hero-detail {
  width: min(100%, 66rem);
  grid-template-columns: clamp(3rem, 7vw, 7rem) minmax(0, 1fr);
  justify-self: end;
  padding-right: clamp(1rem, 4vw, 5rem);
}

.hero-v2 .hero-detail p {
  max-width: 68rem;
}

.hero-v2 .hero-detail p span {
  display: block;
}

.entry-featured-image-frame {
  width: min(100%, 76rem);
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  background: var(--ivory);
}

.entry-featured-image-frame .entry-featured-image {
  width: 100%;
  max-height: none;
  margin: 0;
}

.entry-featured-image-frame.is-natural .entry-featured-image {
  height: auto;
  object-fit: initial;
}

.entry-featured-image-frame.is-cover {
  aspect-ratio: var(--hbc-image-aspect, 16 / 9);
  overflow: hidden;
}

.entry-featured-image-frame.is-cover .entry-featured-image {
  height: 100%;
  object-fit: cover;
  object-position: var(--hbc-image-position, center center);
}

.entry-featured-image-frame.is-contain .entry-featured-image {
  max-height: 75svh;
  object-fit: contain;
  object-position: var(--hbc-image-position, center center);
}

.hbc-elementor-page {
  width: 100%;
  max-width: none;
}

@media (max-width: 782px) {
  .admin-bar .site-header,
  .admin-bar .mobile-menu {
    top: 46px;
  }
}

@media (max-width: 600px) {
	.hero.hero-v2 {
		min-height: max(44rem, 100svh);
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr;
		gap: 1.75rem;
	}

	.hero-v2 .hero-title {
		max-width: none;
		font-size: clamp(3.1rem, 14vw, 4.1rem);
		line-height: 0.91;
	}

	.hero-v2 .hero-title span,
	.hero-v2 .hero-detail p span {
		display: inline;
	}

	.hero-v2 .hero-title span + span::before,
	.hero-v2 .hero-detail p span + span::before {
		content: " ";
	}

	.hero-v2 .hero-detail {
		grid-template-columns: 2.5rem minmax(0, 1fr);
		align-self: end;
		padding-right: 1.5rem;
	}

	.compact-socials,
	.compact-footer .copyright {
		grid-column: auto;
		grid-row: auto;
		justify-content: flex-start;
	}

  .contact-socials a {
    font-size: 1.15rem;
  }

  .content-page-hero h1 {
    font-size: clamp(3.7rem, 16vw, 5.5rem);
  }

  .archive-entry,
  .content-none {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .archive-excerpt {
    grid-column: auto;
  }
}

/* V2 final cascade: keep exact line groups only where they fit. */
@media (min-width: 821px) {
  .hero.hero-v2 {
    grid-template-columns: minmax(9rem, 0.28fr) minmax(0, 1.72fr);
  }

  .hero-v2 .hero-title {
    max-width: none;
    font-size: clamp(3.4rem, 4.2vw, 4.65rem);
    line-height: 0.92;
  }

  .hero-v2 .hero-title span {
    white-space: nowrap;
  }

}

@media (min-width: 601px) and (max-width: 820px) {
  .hero-v2 .hero-title {
    max-width: 18ch;
    font-size: clamp(3.25rem, 7vw, 3.75rem);
  }
}

@media (max-width: 820px) {
  .hero.hero-v2 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
  }

  .hero-v2 .hero-welcome,
  .hero-v2 .hero-title,
  .hero-v2 .hero-detail {
    grid-column: 1;
    min-width: 0;
  }

  .hero-v2 .hero-title {
    max-width: 12ch;
    font-size: clamp(3.5rem, 8vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  .hero-v2 .hero-title span,
  .hero-v2 .hero-detail p span {
    display: inline;
    white-space: normal;
  }

  .hero-v2 .hero-title span + span::before,
  .hero-v2 .hero-detail p span + span::before {
    content: " ";
  }

  .hero-v2 .hero-detail {
    width: 100%;
    grid-template-columns: clamp(2.5rem, 10vw, 4.5rem) minmax(0, 1fr);
    padding-right: clamp(1rem, 5vw, 2.5rem);
  }

  .hero-v2 .hero-detail p {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 600px) {
  .hero.hero-v2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-v2 .hero-title {
    max-width: none;
    font-size: clamp(2.75rem, 12.3vw, 3.2rem);
    line-height: 0.94;
  }

  .hero-v2 .hero-frame {
    display: none;
  }

  .hero.hero-v2::before {
    display: none;
  }
}

@media (min-width: 601px) and (max-width: 820px) {
  .hero-v2 .hero-title {
    max-width: 18ch;
    font-size: clamp(3.25rem, 7vw, 3.75rem);
  }
}
