@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=IBM+Plex+Mono:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap');

/* ==========================================================================
   HappyGlimpse Hotel & Casino — Global Stylesheet
   Light premium "Art-Deco casino resort" skin over Bootstrap 5.3.3
   LIBRARY-FIRST: Bootstrap handles grid/components; this file adds skin only
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --hg-ivory: #F7F3EB;
  --hg-ivory-2: #FBF8F1;
  --hg-sand: #EDE5D5;
  --hg-sand-2: #E4DAC5;
  --hg-ink: #14352B;
  --hg-ink-2: #0E291F;
  --hg-ink-3: #1D4437;
  --hg-gold: #C6A15B;
  --hg-gold-2: #B08D2F;
  --hg-gold-soft: #E3CE9E;
  --hg-burgundy: #7A2E2E;
  --hg-text: #1F2A26;
  --hg-muted: #5F6D64;
  --hg-line: rgba(31, 42, 38, 0.14);
  --hg-line-2: rgba(31, 42, 38, 0.08);
  --hg-light-line: rgba(247, 243, 235, 0.22);
  --hg-font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --hg-font-body: 'Jost', 'Segoe UI', sans-serif;
  --hg-font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  --hg-shadow: 0 24px 60px -28px rgba(14, 41, 31, 0.35);
  --hg-shadow-soft: 0 14px 40px -24px rgba(14, 41, 31, 0.28);
  --hg-radius: 4px;
  --hg-header-h: 128px;

  /* Bootstrap variable skin */
  --bs-body-bg: #F7F3EB;
  --bs-body-color: #1F2A26;
  --bs-body-font-family: 'Jost', 'Segoe UI', sans-serif;
  --bs-body-font-size: 1.0625rem;
  --bs-link-color: #14352B;
  --bs-link-hover-color: #B08D2F;
  --bs-border-color: rgba(31, 42, 38, 0.14);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  background-color: var(--hg-ivory);
  color: var(--hg-text);
  font-family: var(--hg-font-body);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Keep AOS horizontal slide animations from spilling outside the viewport */
[data-aos="fade-left"], [data-aos="fade-right"] { transform: translateZ(0); }

/* Keep giant decorative watermarks inside their section */
.hg-watermark { max-width: 100%; overflow: hidden; }

/* Let grid rails/snaps shrink instead of expanding a column */
.row > [class*="col-"] { min-width: 0; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: var(--hg-font-display);
  font-weight: 600;
  color: var(--hg-ink);
  letter-spacing: -0.005em;
}

a { text-decoration: none; transition: color .25s ease; }

::selection { background: var(--hg-gold); color: var(--hg-ink); }

:focus-visible { outline: 2px solid var(--hg-gold-2); outline-offset: 3px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--hg-sand); }
::-webkit-scrollbar-thumb { background: var(--hg-gold); border: 2px solid var(--hg-sand); border-radius: 8px; }

img { max-width: 100%; height: auto; }

.hg-section[id], section[id] { scroll-margin-top: calc(var(--hg-header-h) + 24px); }

/* --------------------------------------------------------------------------
   3. Typography helpers
   -------------------------------------------------------------------------- */
.hg-mono {
  font-family: var(--hg-font-mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hg-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--hg-font-mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hg-gold-2);
}

.hg-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--hg-gold), transparent);
}

.hg-title {
  font-family: var(--hg-font-display);
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 1.04;
  font-weight: 600;
}

.hg-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: var(--hg-muted);
  line-height: 1.65;
}

.hg-gold-italic {
  font-family: var(--hg-font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--hg-gold-2);
}

.hg-gold-text {
  background: linear-gradient(100deg, var(--hg-gold-2), var(--hg-gold), var(--hg-gold-2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hg-shimmer 6s linear infinite;
}

.hg-display-line {
  font-family: var(--hg-font-display);
  font-style: italic;
  color: var(--hg-gold);
}

/* Dark-section text adaptations */
.hg-section--ink, .hg-media {
  color: rgba(247, 243, 235, .82);
}
.hg-section--ink h1, .hg-section--ink h2, .hg-section--ink h3,
.hg-section--ink h4, .hg-section--ink .hg-title, .hg-media h1, .hg-media h2,
.hg-media h3, .hg-media h4, .hg-media .hg-title { color: var(--hg-ivory); }
.hg-section--ink .hg-lead, .hg-media .hg-lead { color: rgba(247, 243, 235, .74); }
.hg-section--ink .hg-kicker, .hg-media .hg-kicker { color: var(--hg-gold); }
.hg-section--ink .hg-mono, .hg-media .hg-mono { color: var(--hg-gold-soft); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.hg-btn {
  --_btn-bg: var(--hg-gold);
  --_btn-fg: var(--hg-ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.9rem;
  font-family: var(--hg-font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--_btn-fg);
  background: var(--_btn-bg);
  border: 1px solid var(--_btn-bg);
  border-radius: 2px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.hg-btn:hover, .hg-btn:focus-visible {
  color: var(--_btn-fg);
  transform: translateY(-3px);
  box-shadow: var(--hg-shadow-soft);
}

.hg-btn--gold { --_btn-bg: linear-gradient(115deg, var(--hg-gold), var(--hg-gold-2)); --_btn-fg: #14352B; }
.hg-btn--ink { --_btn-bg: var(--hg-ink); --_btn-fg: var(--hg-ivory); }
.hg-btn--ink:hover { --_btn-bg: var(--hg-ink-3); }

.hg-btn--outline {
  --_btn-bg: transparent;
  --_btn-fg: var(--hg-ink);
  border-color: var(--hg-ink);
}
.hg-btn--outline:hover { --_btn-bg: var(--hg-ink); --_btn-fg: var(--hg-ivory); }

.hg-btn--light {
  --_btn-bg: var(--hg-ivory);
  --_btn-fg: var(--hg-ink);
}
.hg-btn--ghost-light {
  --_btn-bg: transparent;
  --_btn-fg: var(--hg-ivory);
  border-color: rgba(247, 243, 235, .55);
}
.hg-btn--ghost-light:hover { --_btn-bg: rgba(247, 243, 235, .12); }

.hg-btn--xl { padding: 1.15rem 2.6rem; font-size: .84rem; }

.hg-btn--round {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.hg-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hg-line);
  border-radius: 50%;
  color: var(--hg-ink);
  background: transparent;
  transition: all .3s ease;
}
.hg-icon-btn:hover { background: var(--hg-ink); color: var(--hg-gold); border-color: var(--hg-ink); }

.hg-snap-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; }
.hg-snap-btn--prev { left: -8px; }
.hg-snap-btn--next { right: -8px; }
.hg-snap-btn.hg-icon-btn { background: var(--hg-ivory); box-shadow: var(--hg-shadow-soft); }

/* --------------------------------------------------------------------------
   5. Section primitives & decor
   -------------------------------------------------------------------------- */
.hg-section { position: relative; padding-block: clamp(76px, 9vw, 132px); }

.hg-section--sand { background: var(--hg-sand); }
.hg-section--ink { background: var(--hg-ink); }
.hg-section--ink-2 { background: linear-gradient(160deg, var(--hg-ink) 0%, var(--hg-ink-2) 100%); }

.hg-section-head { max-width: 780px; }
.hg-section-head--wide { max-width: 960px; }

.hg-rule {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--hg-gold), var(--hg-gold-soft));
  border: 0;
  margin: 0;
}

.hg-suits {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--hg-gold);
  opacity: .85;
}
.hg-suits i { font-size: .85rem; }
.hg-suits::before, .hg-suits::after {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--hg-line);
}
.hg-section--ink .hg-suits::after, .hg-media .hg-suits::after { background: var(--hg-light-line); }

/* Watermark giant FA icon */
.hg-watermark {
  position: absolute;
  z-index: 0;
  font-size: clamp(14rem, 30vw, 30rem);
  line-height: 1;
  color: var(--hg-ink);
  opacity: .045;
  pointer-events: none;
  user-select: none;
}
.hg-section--ink .hg-watermark, .hg-media .hg-watermark { color: var(--hg-gold); opacity: .08; }

/* Dot grid panel (pure CSS radial-gradient) */
.hg-dots {
  background-image: radial-gradient(rgba(20, 53, 43, .18) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}
.hg-section--ink .hg-dots, .hg-media .hg-dots {
  background-image: radial-gradient(rgba(247, 243, 235, .16) 1.2px, transparent 1.2px);
}

/* Corner-ticks frame */
.hg-frame { position: relative; }
.hg-frame::before, .hg-frame::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--hg-gold);
  z-index: 2;
  pointer-events: none;
}
.hg-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hg-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* Thin Swiss grid lines section divider */
.hg-gridlines {
  background-image:
    linear-gradient(90deg, var(--hg-line-2) 1px, transparent 1px);
  background-size: 25% 100%;
}

/* --------------------------------------------------------------------------
   6. Cards, chips, tags, media blocks
   -------------------------------------------------------------------------- */
.hg-card {
  position: relative;
  background: var(--hg-ivory-2);
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.hg-card:hover { transform: translateY(-5px); box-shadow: var(--hg-shadow-soft); border-color: rgba(198, 161, 91, .55); }
.hg-card--sand { background: var(--hg-sand); }
.hg-card--ink { background: var(--hg-ink); border-color: var(--hg-ink); color: rgba(247,243,235,.8); }
.hg-card--ink h1, .hg-card--ink h2, .hg-card--ink h3, .hg-card--ink h4, .hg-card--ink h5 { color: var(--hg-ivory); }

/* Overlay media block — bg comes from inline style with empty url(../../images/happyglimpse_d58bf2aaea888.68318713.jpg) */
.hg-media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--hg-ink);
  overflow: hidden;
}
.hg-media--fixed-ratio { aspect-ratio: 4 / 3; }
.hg-media--wide { aspect-ratio: 21 / 9; }
.hg-media--tall { aspect-ratio: 3 / 4; }
.hg-media--pano { aspect-ratio: 16 / 8; }

.hg-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.15rem;
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hg-ink);
  background: transparent;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease;
}
.hg-chip:hover { border-color: var(--hg-gold-2); color: var(--hg-gold-2); }
.hg-chip.is-active, input:checked + .hg-chip {
  background: var(--hg-ink);
  border-color: var(--hg-ink);
  color: var(--hg-gold-soft);
}

.hg-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .8rem;
  font-family: var(--hg-font-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hg-gold-2);
  background: rgba(198, 161, 91, .12);
  border: 1px solid rgba(198, 161, 91, .35);
  border-radius: 2px;
}

.hg-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.5rem;
  background: var(--hg-ivory-2);
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  box-shadow: var(--hg-shadow-soft);
  font-size: .9rem;
}

.hg-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4BAF6A;
  box-shadow: 0 0 0 0 rgba(75, 175, 106, .55);
  animation: hg-pulse 2.2s infinite;
  flex: 0 0 auto;
}
.hg-dot--gold { background: var(--hg-gold); box-shadow: 0 0 0 0 rgba(198,161,91,.55); }

/* Animated counters */
.hg-count {
  font-family: var(--hg-font-display);
  font-weight: 600;
  line-height: .95;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.hg-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(247, 243, 235, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hg-line);
  transition: box-shadow .3s ease;
}
.hg-header.is-scrolled { box-shadow: 0 12px 34px -22px rgba(14, 41, 31, .4); }

.hg-topbar {
  border-bottom: 1px solid var(--hg-line-2);
  background: var(--hg-ink);
  color: rgba(247, 243, 235, .85);
}
.hg-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .42rem;
  font-size: .78rem;
  flex-wrap: wrap;
}
.hg-topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hg-topbar-contacts i { color: var(--hg-gold); margin-right: .45rem; font-size: .72rem; }
.hg-topbar-contacts a { color: rgba(247, 243, 235, .85); border-bottom: 1px solid transparent; }
.hg-topbar-contacts a:hover { color: var(--hg-gold); border-bottom-color: var(--hg-gold); }
.hg-topbar-status { color: var(--hg-gold-soft); white-space: nowrap; }

.hg-navbar { padding-block: .8rem; transition: padding .3s ease; }
.hg-header.is-scrolled .hg-navbar { padding-block: .45rem; }

.hg-brand { display: inline-flex; align-items: center; gap: .85rem; }
.hg-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, .6);
  padding: 3px;
  transition: transform .4s ease;
}
.hg-brand:hover img { transform: rotate(-8deg) scale(1.04); }
.hg-brand-text {
  font-family: var(--hg-font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--hg-ink);
  display: flex;
  flex-direction: column;
}
.hg-brand-text small {
  font-family: var(--hg-font-mono);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hg-gold-2);
  margin-top: .3rem;
}

.hg-nav-link {
  position: relative;
  display: inline-block;
  padding: .45rem .15rem;
  font-family: var(--hg-font-mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hg-ink);
}
.hg-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--hg-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.hg-nav-link:hover, .hg-nav-link.is-active { color: var(--hg-gold-2); }
.hg-nav-link:hover::after, .hg-nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

/* Custom FA hamburger (no Bootstrap SVG icon) */
.hg-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hg-line);
  border-radius: 2px;
  background: transparent;
  color: var(--hg-ink);
  font-size: 1.05rem;
  transition: all .3s ease;
}
.hg-toggler:hover { border-color: var(--hg-gold-2); color: var(--hg-gold-2); }

@media (max-width: 991.98px) {
  .hg-navbar .navbar-collapse {
    background: var(--hg-ivory-2);
    border: 1px solid var(--hg-line);
    border-radius: var(--hg-radius);
    padding: 1rem 1.25rem;
    margin-top: .8rem;
  }
  .hg-nav-link { display: block; padding: .6rem .15rem; }
}

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */
.hg-footer { background: var(--hg-ink); color: rgba(247, 243, 235, .8); position: relative; overflow: hidden; }
.hg-footer h2, .hg-footer h3, .hg-footer h4, .hg-footer h5 { color: var(--hg-ivory); }

.hg-footer-invite { position: relative; padding-block: clamp(56px, 7vw, 96px); }
.hg-footer-invite .hg-title { color: var(--hg-ivory); }

.hg-footer-main { padding-block: clamp(56px, 6vw, 84px) clamp(40px, 4vw, 60px); }

.hg-footer-heading {
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hg-gold);
  margin-bottom: 1.15rem;
}

.hg-foot-link {
  display: inline-block;
  padding-block: .28rem;
  color: rgba(247, 243, 235, .78);
  font-weight: 300;
}
.hg-foot-link:hover { color: var(--hg-gold); transform: translateX(4px); }

.hg-footer address { font-style: normal; }

.hg-social { display: flex; gap: .7rem; flex-wrap: wrap; }
.hg-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hg-light-line);
  border-radius: 50%;
  color: var(--hg-gold-soft);
  transition: all .3s ease;
}
.hg-social a:hover { background: var(--hg-gold); border-color: var(--hg-gold); color: var(--hg-ink); transform: translateY(-3px); }

.hg-footer-disclaimer {
  padding: 1.4rem 0;
  border-top: 1px solid var(--hg-light-line);
  border-bottom: 1px solid var(--hg-light-line);
  background: rgba(14, 41, 31, .55);
}
.hg-footer-disclaimer p { margin: 0; font-size: .92rem; color: rgba(247, 243, 235, .75); }
.hg-footer-disclaimer i { color: var(--hg-gold); }

.hg-footer-bottom { padding-block: 1.5rem; font-size: .82rem; color: rgba(247, 243, 235, .6); }
.hg-footer-bottom a { color: rgba(247, 243, 235, .6); }
.hg-footer-bottom a:hover { color: var(--hg-gold); }

/* --------------------------------------------------------------------------
   9. Notification (inline form note) & toast
   -------------------------------------------------------------------------- */
.hg-note {
  display: none;
  align-items: flex-start;
  gap: .75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--hg-radius);
  font-size: .95rem;
  border: 1px solid transparent;
}
.hg-note.is-visible { display: flex; animation: hg-rise .45s ease both; }
.hg-note--ok { background: rgba(75, 175, 106, .1); border-color: rgba(75, 175, 106, .45); color: #2E6B45; }
.hg-note--ok i { color: #4BAF6A; }
.hg-note--err { background: rgba(122, 46, 46, .08); border-color: rgba(122, 46, 46, .4); color: var(--hg-burgundy); }
.hg-note--err i { color: var(--hg-burgundy); }
.hg-media .hg-note--ok, .hg-section--ink .hg-note--ok { background: rgba(75,175,106,.16); color: #BFE8CC; }
.hg-media .hg-note--err, .hg-section--ink .hg-note--err { background: rgba(122,46,46,.25); color: #F0C9C9; }

.hg-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 340px;
  padding: 1rem 1.3rem;
  background: var(--hg-ink);
  color: var(--hg-ivory);
  border-left: 3px solid var(--hg-gold);
  border-radius: var(--hg-radius);
  box-shadow: var(--hg-shadow);
  font-size: .92rem;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.hg-toast.is-visible { opacity: 1; transform: translateY(0); }
.hg-toast i { color: var(--hg-gold); font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   10. Cookie banner (home page only)
   -------------------------------------------------------------------------- */
.hg-cookie {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1070;
  width: min(430px, calc(100vw - 44px));
  padding: 1.5rem;
  background: var(--hg-ivory-2);
  border: 1px solid rgba(198, 161, 91, .5);
  border-radius: var(--hg-radius);
  box-shadow: var(--hg-shadow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.hg-cookie.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hg-cookie-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(198, 161, 91, .16);
  color: var(--hg-gold-2);
  font-size: 1.15rem;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   11. Custom accordion (FA plus icon, no Bootstrap SVG)
   -------------------------------------------------------------------------- */
.hg-acc-item { border-top: 1px solid var(--hg-line); }
.hg-acc-item:last-child { border-bottom: 1px solid var(--hg-line); }
.hg-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem .25rem;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--hg-font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--hg-ink);
  transition: color .3s ease;
}
.hg-acc-btn:hover { color: var(--hg-gold-2); }
.hg-acc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hg-line);
  border-radius: 50%;
  font-size: .8rem;
  color: var(--hg-gold-2);
  flex: 0 0 auto;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.hg-acc-btn[aria-expanded="true"] .hg-acc-ico {
  transform: rotate(45deg);
  background: var(--hg-ink);
  color: var(--hg-gold);
  border-color: var(--hg-ink);
}
.hg-acc-body { padding: 0 .25rem 1.5rem; color: var(--hg-muted); max-width: 92%; }

.hg-section--ink .hg-acc-item, .hg-media .hg-acc-item { border-color: var(--hg-light-line); }
.hg-section--ink .hg-acc-btn, .hg-media .hg-acc-btn { color: var(--hg-ivory); }
.hg-section--ink .hg-acc-body, .hg-media .hg-acc-body { color: rgba(247,243,235,.72); }

/* --------------------------------------------------------------------------
   12. Hero — Video-Texture Monolith (home)
   -------------------------------------------------------------------------- */
.hg-hero {
  position: relative;
  min-height: calc(100vh - var(--hg-header-h));
  min-height: calc(100svh - var(--hg-header-h));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(2rem, 4vh, 3.5rem) clamp(1.5rem, 3vh, 2.5rem);
  background-size: cover;
  background-position: center;
  background-color: var(--hg-ink);
  overflow: hidden;
}

.hg-hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1.4rem;
  background: rgba(14, 41, 31, .55);
  border: 1px solid var(--hg-light-line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--hg-font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hg-gold-soft);
}
.hg-hero__bar .hg-status { color: var(--hg-gold-soft); }

.hg-hero__core { text-align: center; position: relative; z-index: 1; }
.hg-hero__title {
  font-family: var(--hg-font-display);
  font-size: clamp(3rem, 9vw, 7.6rem);
  line-height: .96;
  font-weight: 600;
  color: var(--hg-ivory);
  margin: 1.2rem 0 1rem;
}
.hg-hero__title em {
  font-style: italic;
  color: var(--hg-gold);
}

.hg-hero__console {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: .75rem 1.6rem;
  border: 1px solid rgba(198, 161, 91, .55);
  border-radius: 999px;
  background: rgba(20, 53, 43, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hg-hero__console-text {
  font-family: var(--hg-font-mono);
  font-size: clamp(.72rem, 1.6vw, .88rem);
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--hg-ivory);
}

.hg-hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hg-light-line);
}
.hg-hero__metric {
  padding: 1.1rem .5rem 0;
  text-align: center;
  border-left: 1px solid var(--hg-light-line);
}
.hg-hero__metric:first-child { border-left: 0; }
.hg-hero__metric .hg-mono { color: var(--hg-gold-soft); }
.hg-hero__metric b {
  display: block;
  font-family: var(--hg-font-display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--hg-ivory);
}

/* --------------------------------------------------------------------------
   13. Hero — Brutalist Editorial Stage (service pages)
   -------------------------------------------------------------------------- */
.hg-stage { position: relative; padding-block: clamp(4rem, 8vw, 7rem); background-color: var(--hg-ink); overflow: hidden; }
.hg-stage__title {
  font-family: var(--hg-font-display);
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  line-height: .95;
  font-weight: 600;
  color: var(--hg-ivory);
}
.hg-stage__title em { font-style: italic; color: var(--hg-gold); }
.hg-stage__overtitle { display: flex; align-items: center; gap: .8rem; }
.hg-stage__footnotes { border-top: 1px solid var(--hg-light-line); padding-top: 1.4rem; }
.hg-stage__note { font-size: .85rem; color: rgba(247,243,235,.7); }
.hg-stage__note b { color: var(--hg-gold); font-family: var(--hg-font-mono); font-weight: 600; }

/* --------------------------------------------------------------------------
   14. Hero — Luxury Monospace Terminal
   -------------------------------------------------------------------------- */
.hg-terminal-hero { position: relative; background-color: var(--hg-ink-2); overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); }
.hg-term-bar {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem 1.2rem;
  border: 1px solid var(--hg-light-line);
  border-radius: var(--hg-radius);
  background: rgba(247, 243, 235, .04);
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hg-gold-soft);
}
.hg-term-bar__dots { display: flex; gap: .4rem; }
.hg-term-bar__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--hg-gold); opacity: .6; }
.hg-term-bar__dots span:first-child { opacity: 1; }

.hg-term-title {
  font-family: var(--hg-font-display);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: .98;
  color: var(--hg-ivory);
}
.hg-term-title em { font-style: italic; color: var(--hg-gold); }

.hg-ticker {
  overflow: hidden;
  border-block: 1px solid var(--hg-light-line);
  padding-block: .8rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hg-ticker__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: hg-marquee 34s linear infinite;
  font-family: var(--hg-font-mono);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-gold-soft);
  white-space: nowrap;
}
.hg-ticker__track i { color: var(--hg-gold); margin-right: .5rem; }

/* --------------------------------------------------------------------------
   15. Hero — Spatial Layered Viewport
   -------------------------------------------------------------------------- */
.hg-layer-hero { position: relative; background-color: var(--hg-ink); overflow: hidden; padding-block: clamp(4.5rem, 9vw, 8rem); }
.hg-layer-hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--hg-light-line);
  font-family: var(--hg-font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-gold-soft);
}
.hg-layer-title {
  font-family: var(--hg-font-display);
  font-size: clamp(2.7rem, 7.5vw, 6.4rem);
  line-height: .97;
  color: var(--hg-ivory);
}
.hg-layer-title em { font-style: italic; color: var(--hg-gold); }
.hg-drift-card {
  animation: hg-float 7s ease-in-out infinite;
}
.hg-counter-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--hg-font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-gold-soft);
  border: 1px solid var(--hg-light-line);
  border-radius: 999px;
  padding: .45rem 1rem;
}

/* --------------------------------------------------------------------------
   16. Kinetic Grid & Interactive Pillars
   -------------------------------------------------------------------------- */
.hg-kinetic { position: relative; }
.hg-kinetic__search {
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 420px;
  padding: .8rem 1.3rem;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  background: var(--hg-ivory-2);
  color: var(--hg-muted);
  font-family: var(--hg-font-mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hg-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--hg-line);
}
.hg-pillar {
  position: relative;
  min-height: 460px;
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--hg-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--hg-ink);
  transition: color .45s ease;
}
.hg-pillar:first-child { border-left: 0; }
.hg-pillar-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .55s ease;
  z-index: 0;
}
.hg-pillar-body { position: relative; z-index: 1; }
.hg-pillar:hover, .hg-pillar:focus-within { color: var(--hg-ivory); }
.hg-pillar:hover .hg-pillar-bg, .hg-pillar:focus-within .hg-pillar-bg { opacity: 1; }
.hg-pillar:hover h3, .hg-pillar:focus-within h3,
.hg-pillar:hover .hg-pillar-ico { color: var(--hg-ivory); }
.hg-pillar-ico {
  font-size: 1.6rem;
  color: var(--hg-gold-2);
  margin-bottom: 1rem;
  display: inline-block;
  transition: color .45s ease, transform .45s ease;
}
.hg-pillar:hover .hg-pillar-ico { transform: translateY(-4px); }
.hg-pillar h3 { font-size: 1.7rem; transition: color .45s ease; }
.hg-pillar p { font-size: .95rem; opacity: .85; }
.hg-pillar-more {
  font-family: var(--hg-font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-gold-2);
}
.hg-pillar:hover .hg-pillar-more { color: var(--hg-gold); }

@media (max-width: 991.98px) {
  .hg-pillars { grid-template-columns: 1fr 1fr; }
  .hg-pillar { min-height: 380px; border-top: 1px solid var(--hg-line); }
  .hg-pillar:nth-child(-n+2) { border-top: 0; }
  .hg-pillar:nth-child(odd) { border-left: 0; }
}
@media (max-width: 575.98px) {
  .hg-pillars { grid-template-columns: 1fr; }
  .hg-pillar { border-left: 0; border-top: 1px solid var(--hg-line); min-height: 300px; }
  .hg-pillar:first-child { border-top: 0; }
}

/* --------------------------------------------------------------------------
   17. Manifesto (editorial brand block)
   -------------------------------------------------------------------------- */
.hg-manifesto { font-family: var(--hg-font-display); font-size: clamp(1.5rem, 3.1vw, 2.6rem); line-height: 1.28; font-weight: 500; color: var(--hg-ink); }
.hg-manifesto .hg-mark {
  font-style: italic;
  color: var(--hg-gold-2);
  border-bottom: 2px solid rgba(198, 161, 91, .5);
  transition: all .3s ease;
}
.hg-manifesto .hg-mark:hover { color: var(--hg-burgundy); border-bottom-color: var(--hg-burgundy); }

.hg-toc { list-style: none; padding: 0; margin: 0; }
.hg-toc li { border-top: 1px solid var(--hg-line); }
.hg-toc li:last-child { border-bottom: 1px solid var(--hg-line); }
.hg-toc a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem .2rem;
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hg-muted);
}
.hg-toc a:hover { color: var(--hg-gold-2); }
.hg-toc a i { color: var(--hg-gold); font-size: .7rem; }

/* --------------------------------------------------------------------------
   18. Magazine spread (portfolio/cases)
   -------------------------------------------------------------------------- */
.hg-spread { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.5rem; }
.hg-pano {
  position: relative;
  min-height: 520px;
  border-radius: var(--hg-radius);
  overflow: hidden;
}
.hg-pano__body { position: relative; z-index: 1; }
.hg-case {
  position: relative;
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
  overflow: hidden;
  background: var(--hg-ivory-2);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hg-case:hover { transform: translateY(-5px); box-shadow: var(--hg-shadow-soft); }
.hg-case img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.hg-case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--hg-line-2);
  font-family: var(--hg-font-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hg-muted);
}
.hg-case-meta i { color: var(--hg-gold-2); }

@media (max-width: 991.98px) {
  .hg-spread { grid-template-columns: 1fr; }
  .hg-pano { min-height: 420px; }
}

/* --------------------------------------------------------------------------
   19. Split curtain (before/after)
   -------------------------------------------------------------------------- */
.hg-curtain {
  --hg-split: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--hg-radius);
  overflow: hidden;
  user-select: none;
}
.hg-curtain-pane {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--hg-ink);
  color: var(--hg-ivory);
}
.hg-curtain-pane--left { clip-path: inset(0 calc(100% - var(--hg-split)) 0 0); }
.hg-curtain-pane--right { clip-path: inset(0 0 0 var(--hg-split)); }
.hg-curtain-pane > .container { padding-top: 3rem; padding-bottom: 3rem; height: 100%; }
.hg-curtain-handle {
  position: absolute;
  top: 50%;
  left: var(--hg-split);
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hg-gold);
  color: var(--hg-ink);
  border: 0;
  cursor: ew-resize;
  box-shadow: var(--hg-shadow);
  transition: transform .25s ease;
}
.hg-curtain-handle:hover { transform: translate(-50%, -50%) scale(1.08); }
.hg-curtain-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 200vh;
  background: rgba(198, 161, 91, .8);
}
.hg-curtain-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.1rem;
  background: rgba(14, 41, 31, .6);
  border: 1px solid var(--hg-light-line);
  border-radius: 999px;
  font-family: var(--hg-font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-gold-soft);
}

@media (max-width: 767.98px) {
  .hg-curtain { aspect-ratio: auto; }
  .hg-curtain-pane { position: relative; clip-path: none !important; min-height: 380px; }
  .hg-curtain-pane--right { border-top: 2px solid var(--hg-gold); }
  .hg-curtain-handle { display: none; }
}

/* --------------------------------------------------------------------------
   20. Monospace financial terminal (metrics)
   -------------------------------------------------------------------------- */
.hg-term {
  border: 1px solid var(--hg-ink);
  border-radius: var(--hg-radius);
  background: var(--hg-ivory-2);
  font-family: var(--hg-font-mono);
}
.hg-term__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--hg-line);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hg-muted);
}
.hg-term__bar i { color: var(--hg-gold-2); }
.hg-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.hg-stat { padding: 2rem 1.5rem; border-left: 1px solid var(--hg-line); }
.hg-stat:first-child { border-left: 0; }
.hg-stat b {
  display: block;
  font-family: var(--hg-font-display);
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 600;
  color: var(--hg-ink);
  line-height: 1;
}
.hg-stat small { display: block; margin-top: .5rem; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--hg-muted); }
.hg-stat-delta { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; font-size: .7rem; color: #2E6B45; }
.hg-stat-delta i { color: #4BAF6A; }

@media (max-width: 991.98px) {
  .hg-stats { grid-template-columns: 1fr 1fr; }
  .hg-stat { border-top: 1px solid var(--hg-line); }
  .hg-stat:nth-child(-n+2) { border-top: 0; }
  .hg-stat:nth-child(odd) { border-left: 0; }
}

/* --------------------------------------------------------------------------
   21. Blueprint rail (process)
   -------------------------------------------------------------------------- */
.hg-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding: .5rem .25rem 1.75rem;
  scroll-snap-type: x mandatory;
  position: relative;
}
.hg-stage-card {
  scroll-snap-align: start;
  position: relative;
  border: 1px dashed rgba(31, 42, 38, .3);
  border-radius: var(--hg-radius);
  padding: 2rem 1.6rem;
  background: var(--hg-ivory-2);
}
.hg-stage-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.05rem;
  width: .65rem;
  height: .65rem;
  border-top: 1px dashed rgba(31, 42, 38, .4);
  border-right: 1px dashed rgba(31, 42, 38, .4);
  transform: translateY(-50%) rotate(45deg);
}
.hg-stage-num {
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  letter-spacing: .24em;
  color: var(--hg-gold-2);
}
.hg-stage-card i { font-size: 1.5rem; color: var(--hg-ink); margin: 1rem 0 .8rem; display: inline-block; }
.hg-stage-card h3 { font-size: 1.45rem; }
.hg-stage-card p { font-size: .92rem; color: var(--hg-muted); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   22. Quote spread (testimonials)
   -------------------------------------------------------------------------- */
.hg-quote {
  font-family: var(--hg-font-display);
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  line-height: 1.22;
  font-weight: 500;
  color: var(--hg-ivory);
}
.hg-quote i.hg-quote-ico { color: var(--hg-gold); font-size: 1.6rem; opacity: .9; }
.hg-dropcap::first-letter {
  float: left;
  font-family: var(--hg-font-display);
  font-size: 4.6em;
  line-height: .82;
  padding-right: .12em;
  color: var(--hg-gold);
  font-weight: 600;
}
.hg-quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hg-quote-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(198, 161, 91, .6);
}
.hg-quote-author b { display: block; color: var(--hg-ivory); font-family: var(--hg-font-display); font-size: 1.2rem; font-weight: 600; }
.hg-quote-author small { color: var(--hg-gold-soft); font-family: var(--hg-font-mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   23. Tier ledger (pricing)
   -------------------------------------------------------------------------- */
.hg-ledger { border: 1px solid var(--hg-ink); border-radius: var(--hg-radius); overflow: hidden; }
.hg-ledger-head, .hg-tier-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
}
.hg-ledger-head {
  background: var(--hg-ink);
  color: var(--hg-gold-soft);
  font-family: var(--hg-font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hg-ledger-head > div { padding: .9rem 1.3rem; }
.hg-tier-row { border-top: 1px solid var(--hg-line); background: var(--hg-ivory-2); }
.hg-tier-row > div { padding: 1.15rem 1.3rem; }
.hg-tier-row.is-featured { background: var(--hg-ink); color: rgba(247,243,235,.85); }
.hg-tier-row.is-featured h3, .hg-tier-row.is-featured b { color: var(--hg-ivory); }
.hg-tier-row h3 { font-size: 1.35rem; margin: 0; }
.hg-tier-row b { font-family: var(--hg-font-display); font-size: 1.6rem; color: var(--hg-ink); }
.hg-tier-row small { display: block; font-family: var(--hg-font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--hg-muted); margin-top: .3rem; }
.hg-tier-row.is-featured small { color: var(--hg-gold-soft); }
.hg-tier-row ul { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.hg-tier-row ul li { padding-block: .22rem; }
.hg-tier-row ul li i { color: var(--hg-gold-2); margin-right: .55rem; font-size: .72rem; }
.hg-tier-row.is-featured ul li i { color: var(--hg-gold); }

.hg-limits { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--hg-line); border-top: 0; }
.hg-limit { padding: 1rem 1.3rem; border-left: 1px solid var(--hg-line); font-size: .82rem; color: var(--hg-muted); }
.hg-limit:first-child { border-left: 0; }
.hg-limit i { color: var(--hg-gold-2); margin-right: .5rem; }

@media (max-width: 991.98px) {
  .hg-ledger-head { display: none; }
  .hg-tier-row { grid-template-columns: 1fr; }
  .hg-tier-row > div { border-top: 1px solid var(--hg-line-2); }
  .hg-tier-row > div:first-child { border-top: 0; }
  .hg-limits { grid-template-columns: 1fr 1fr; }
  .hg-limit { border-top: 1px solid var(--hg-line); }
  .hg-limit:nth-child(-n+2) { border-top: 0; }
  .hg-limit:nth-child(odd) { border-left: 0; }
}

/* --------------------------------------------------------------------------
   24. FAQ split-screen
   -------------------------------------------------------------------------- */
.hg-faq-aside {
  position: sticky;
  top: calc(var(--hg-header-h) + 32px);
}
.hg-search {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.3rem;
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  background: var(--hg-ivory-2);
}
.hg-search input {
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--hg-font-body);
  font-size: .95rem;
  color: var(--hg-text);
  width: 100%;
}
.hg-search input::placeholder { color: var(--hg-muted); letter-spacing: .06em; }
.hg-search i { color: var(--hg-gold-2); }

/* --------------------------------------------------------------------------
   25. CTA gateway
   -------------------------------------------------------------------------- */
.hg-gateway { position: relative; background-color: var(--hg-ink-2); overflow: hidden; }
.hg-gateway__title {
  font-family: var(--hg-font-display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1;
  color: var(--hg-ivory);
}
.hg-gateway__title em { font-style: italic; color: var(--hg-gold); }
.hg-slots-track {
  height: 3px;
  background: rgba(247, 243, 235, .16);
  border-radius: 3px;
  overflow: hidden;
}
.hg-slots-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--hg-gold), var(--hg-gold-2));
}

/* --------------------------------------------------------------------------
   26. Timeline ribbon
   -------------------------------------------------------------------------- */
.hg-tl { position: relative; }
.hg-tl-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2.2rem .25rem .75rem;
}
.hg-tl-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hg-gold), var(--hg-sand-2));
}
.hg-tl-dot {
  position: relative;
  scroll-snap-align: start;
  padding: 1.2rem 1.25rem 1.4rem;
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
  background: var(--hg-ivory-2);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hg-tl-dot::before {
  content: "";
  position: absolute;
  top: calc(-2.2rem + 5px);
  left: 1.25rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--hg-ivory);
  border: 3px solid var(--hg-gold-2);
}
.hg-tl-dot:hover { transform: translateY(-5px); box-shadow: var(--hg-shadow-soft); }
.hg-tl-dot time { font-family: var(--hg-font-mono); font-size: .74rem; letter-spacing: .2em; color: var(--hg-gold-2); }
.hg-tl-dot h3 { font-size: 1.3rem; margin-top: .4rem; }
.hg-tl-dot p { font-size: .9rem; color: var(--hg-muted); margin-bottom: 0; }

.hg-milestone { min-height: 340px; border-radius: var(--hg-radius); }

/* --------------------------------------------------------------------------
   27. Philosophy canvas / offset gallery
   -------------------------------------------------------------------------- */
.hg-mission { min-height: 380px; border-radius: var(--hg-radius); }
.hg-mission__num {
  font-family: var(--hg-font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(198, 161, 91, .85);
}
.hg-offset-gallery .hg-off-card:first-child { transform: translateY(2.6rem); }
.hg-off-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--hg-radius); display: block; }
.hg-off-card figcaption {
  margin-top: .7rem;
  font-family: var(--hg-font-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

/* --------------------------------------------------------------------------
   28. Founder block
   -------------------------------------------------------------------------- */
.hg-portrait { min-height: 480px; border-radius: var(--hg-radius); }
.hg-monologue-quote {
  font-family: var(--hg-font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--hg-ink);
}
.hg-speech-list { list-style: none; padding: 0; margin: 0; }
.hg-speech-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .95rem .25rem;
  border-top: 1px solid var(--hg-line);
  font-size: .95rem;
}
.hg-speech-list li:last-child { border-bottom: 1px solid var(--hg-line); }
.hg-speech-list i { color: var(--hg-gold-2); margin-top: .25rem; }

/* --------------------------------------------------------------------------
   29. Counter stage
   -------------------------------------------------------------------------- */
.hg-stage-counter {
  position: absolute;
  right: -1.5rem;
  bottom: -2.2rem;
  font-family: var(--hg-font-display);
  font-size: clamp(9rem, 26vw, 24rem);
  line-height: .8;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(198, 161, 91, .4);
  pointer-events: none;
  user-select: none;
}
.hg-verify {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 5vw, 3.5rem);
  z-index: 3;
  max-width: 280px;
  animation: hg-float 8s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   30. Team roster
   -------------------------------------------------------------------------- */
.hg-member { position: relative; overflow: hidden; border-radius: var(--hg-radius); }
.hg-member img {
  width: 100%;
  aspect-ratio: 3/4.4;
  object-fit: cover;
  display: block;
  filter: grayscale(.35);
  transition: filter .5s ease, transform .5s ease;
}
.hg-member:hover img { filter: grayscale(0); transform: scale(1.03); }
.hg-member-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.3rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(14, 41, 31, .88));
  color: var(--hg-ivory);
  transform: translateY(38%);
  transition: transform .45s ease;
}
.hg-member:hover .hg-member-overlay, .hg-member:focus-within .hg-member-overlay { transform: translateY(0); }
.hg-member-overlay b { font-family: var(--hg-font-display); font-size: 1.25rem; font-weight: 600; }
.hg-member-overlay small { display: block; font-family: var(--hg-font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--hg-gold-soft); margin-bottom: .45rem; }
.hg-member-overlay p { font-size: .84rem; color: rgba(247,243,235,.8); margin-bottom: .7rem; }
.hg-member-overlay a { color: var(--hg-gold); margin-right: .8rem; }
.hg-member-overlay a:hover { color: var(--hg-ivory); }

/* --------------------------------------------------------------------------
   31. Sticky stacking deck
   -------------------------------------------------------------------------- */
.hg-deck-card {
  position: sticky;
  top: calc(var(--hg-header-h) + 40px);
  min-height: 480px;
  border-radius: var(--hg-radius);
  box-shadow: var(--hg-shadow);
}
.hg-deck-card + .hg-deck-card { margin-top: 2.5rem; }
.hg-deck-progress {
  position: sticky;
  top: calc(var(--hg-header-h) + 120px);
}
.hg-deck-progress li { padding-block: .55rem; border-top: 1px solid var(--hg-light-line); font-family: var(--hg-font-mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--hg-gold-soft); }
.hg-deck-progress li:last-child { border-bottom: 1px solid var(--hg-light-line); }

@media (max-width: 991.98px) {
  .hg-deck-card { position: static; min-height: 0; margin-top: 1.75rem !important; }
  .hg-deck-progress { position: static; }
}

/* --------------------------------------------------------------------------
   32. Bento grid
   -------------------------------------------------------------------------- */
.hg-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}
.hg-bento-cell { border-radius: var(--hg-radius); }
.hg-b-cell-4 { grid-column: span 4; }
.hg-b-cell-5 { grid-column: span 5; }
.hg-b-cell-6 { grid-column: span 6; }
.hg-b-cell-7 { grid-column: span 7; }
.hg-b-cell-8 { grid-column: span 8; }
.hg-b-cell-12 { grid-column: span 12; }

@media (max-width: 991.98px) {
  .hg-bento > .hg-bento-cell { grid-column: span 12; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hg-b-cell-4 { grid-column: span 6; }
  .hg-b-cell-5, .hg-b-cell-7 { grid-column: span 6; }
  .hg-b-cell-8 { grid-column: span 12; }
}

/* Bento OS-window style */
.hg-os {
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
  background: var(--hg-ivory-2);
  overflow: hidden;
  height: 100%;
}
.hg-os__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--hg-line-2);
  font-family: var(--hg-font-mono);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hg-muted);
}
.hg-os__bar i { color: var(--hg-gold-2); }
.hg-os__body { padding: 1.6rem; }

/* --------------------------------------------------------------------------
   33. Services showcase (accordion + preview)
   -------------------------------------------------------------------------- */
.hg-svc-item { border-top: 1px solid var(--hg-line); }
.hg-svc-item:last-child { border-bottom: 1px solid var(--hg-line); }
.hg-svc-btn {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
  padding: 1.5rem .25rem;
  background: transparent;
  border: 0;
  text-align: left;
  transition: background .3s ease;
}
.hg-svc-btn:hover { background: rgba(237, 229, 213, .55); }
.hg-svc-num { font-family: var(--hg-font-mono); font-size: .78rem; color: var(--hg-gold-2); letter-spacing: .14em; }
.hg-svc-btn h3 { margin: 0; font-size: clamp(1.3rem, 2.6vw, 1.9rem); transition: color .3s ease; }
.hg-svc-btn:hover h3 { color: var(--hg-gold-2); }
.hg-svc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hg-line);
  border-radius: 50%;
  color: var(--hg-gold-2);
  transition: all .35s ease;
}
.hg-svc-btn[aria-expanded="true"] .hg-svc-ico { background: var(--hg-ink); color: var(--hg-gold); border-color: var(--hg-ink); transform: rotate(90deg); }
.hg-svc-body { padding: 0 .25rem 1.75rem; max-width: 88%; }
.hg-svc-body p { color: var(--hg-muted); }
.hg-svc-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--hg-font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-gold-2);
  border-bottom: 1px solid rgba(198, 161, 91, .5);
  padding-bottom: .25rem;
}
.hg-svc-link:hover { color: var(--hg-burgundy); border-bottom-color: var(--hg-burgundy); }

.hg-preview {
  position: sticky;
  top: calc(var(--hg-header-h) + 32px);
  border-radius: var(--hg-radius);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hg-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hg-preview__cap { position: relative; z-index: 1; }
@media (max-width: 991.98px) { .hg-preview { position: static; min-height: 0; } .hg-preview img { position: static; aspect-ratio: 16/9; } }

/* --------------------------------------------------------------------------
   34. Capability radar
   -------------------------------------------------------------------------- */
.hg-radar { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; }
.hg-radar-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--hg-line);
  border-radius: 50%;
}
.hg-radar-ring:nth-child(2) { inset: 15%; }
.hg-radar-ring:nth-child(3) { inset: 30%; }
.hg-radar-ring:nth-child(4) { inset: 45%; border-color: rgba(198, 161, 91, .5); }
.hg-radar-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--hg-ink);
  color: var(--hg-gold-soft);
  justify-content: center;
  text-align: center;
  font-family: var(--hg-font-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hg-radar-core i { font-size: 1.3rem; color: var(--hg-gold); }
.hg-radar-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .95rem;
  background: var(--hg-ivory-2);
  border: 1px solid var(--hg-line);
  border-radius: 999px;
  font-family: var(--hg-font-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hg-ink);
  box-shadow: var(--hg-shadow-soft);
  transition: transform .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.hg-radar-node i { color: var(--hg-gold-2); }
.hg-radar-node:hover { transform: scale(1.06); border-color: var(--hg-gold); }
.hg-radar-node--1 { top: 2%; left: 50%; transform: translateX(-50%); }
.hg-radar-node--2 { top: 26%; right: 0; }
.hg-radar-node--3 { bottom: 26%; right: 4%; }
.hg-radar-node--4 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.hg-radar-node--5 { bottom: 26%; left: 0; }
.hg-radar-node--6 { top: 26%; left: 4%; }
.hg-radar-node--1:hover { transform: translateX(-50%) scale(1.06); }
.hg-radar-node--4:hover { transform: translateX(-50%) scale(1.06); }

/* --------------------------------------------------------------------------
   35. Horizontal scrubber strip
   -------------------------------------------------------------------------- */
.hg-scrub {
  position: relative;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
}
.hg-scrub-fixed { position: sticky; top: calc(var(--hg-header-h) + 32px); }
.hg-scrub-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.25rem;
}
.hg-scrub-card {
  scroll-snap-align: start;
  border-radius: var(--hg-radius);
  overflow: hidden;
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--hg-ink);
  background: var(--hg-ivory-2);
  border: 1px solid var(--hg-line);
}
.hg-scrub-card--media { color: var(--hg-ivory); }
.hg-scrub-card__body { position: relative; z-index: 1; padding: 1.5rem; }
.hg-scrub-card__num {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-family: var(--hg-font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198, 161, 91, .8);
  z-index: 1;
}
.hg-scrub-badge {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: -1.1rem;
  z-index: 5;
}

@media (max-width: 991.98px) {
  .hg-scrub { grid-template-columns: 1fr; }
  .hg-scrub-fixed { position: static; }
  .hg-scrub-track { grid-auto-flow: row; grid-auto-columns: auto; overflow-x: visible; scroll-snap-type: none; }
  .hg-scrub-card { min-height: 0; }
  .hg-scrub-badge { position: static; margin-top: 1.5rem; }
}

/* --------------------------------------------------------------------------
   36. Split sticky matrix
   -------------------------------------------------------------------------- */
.hg-matrix { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.hg-matrix-visual {
  position: sticky;
  top: calc(var(--hg-header-h) + 32px);
  min-height: 560px;
  border-radius: var(--hg-radius);
  align-self: start;
}
.hg-matrix-item { padding: 1.5rem .25rem; border-top: 1px solid var(--hg-line); }
.hg-matrix-item:last-child { border-bottom: 1px solid var(--hg-line); }
.hg-matrix-item h3 { font-size: 1.5rem; }
.hg-matrix-item ul { list-style: none; padding: 0; margin: .8rem 0 0; }
.hg-matrix-item ul li { padding-block: .25rem; color: var(--hg-muted); font-size: .95rem; }
.hg-matrix-item ul li i { color: var(--hg-gold-2); margin-right: .55rem; font-size: .7rem; }

@media (max-width: 991.98px) {
  .hg-matrix { grid-template-columns: 1fr; }
  .hg-matrix-visual { position: static; min-height: 0; aspect-ratio: 16/10; margin-bottom: 1.5rem; order: -1; }
}

/* --------------------------------------------------------------------------
   37. Forms
   -------------------------------------------------------------------------- */
.hg-form-card { position: relative; }
.hg-config-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.hg-config-chips input { position: absolute; opacity: 0; pointer-events: none; }

.hg-field { position: relative; }
.hg-field label {
  display: block;
  font-family: var(--hg-font-mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hg-muted);
  margin-bottom: .5rem;
}
.hg-field input, .hg-field textarea, .hg-field select {
  width: 100%;
  padding: .85rem .25rem;
  border: 0;
  border-bottom: 1px solid var(--hg-line);
  background: transparent;
  border-radius: 0;
  font-family: var(--hg-font-body);
  font-size: 1.02rem;
  color: var(--hg-text);
  transition: border-color .3s ease;
}
.hg-field textarea { min-height: 120px; resize: vertical; }
.hg-field input:focus, .hg-field textarea:focus, .hg-field select:focus {
  outline: none;
  border-bottom-color: var(--hg-gold-2);
}
.hg-field .hg-field-msg {
  display: none;
  margin-top: .45rem;
  font-size: .78rem;
  color: var(--hg-burgundy);
}
.hg-field.is-err input, .hg-field.is-err textarea, .hg-field.is-err select { border-bottom-color: var(--hg-burgundy); }
.hg-field.is-err .hg-field-msg { display: block; }
.hg-field.is-ok input, .hg-field.is-ok textarea, .hg-field.is-ok select { border-bottom-color: #4BAF6A; }

.hg-media .hg-field label { color: rgba(247,243,235,.6); }
.hg-media .hg-field input, .hg-media .hg-field textarea, .hg-media .hg-field select { color: var(--hg-ivory); border-bottom-color: var(--hg-light-line); }
.hg-media .hg-field input::placeholder, .hg-media .hg-field textarea::placeholder { color: rgba(247,243,235,.4); }

.form-check-input:checked { background-color: var(--hg-gold-2); border-color: var(--hg-gold-2); }
.form-check-input { border: 1px solid var(--hg-line); }

/* --------------------------------------------------------------------------
   38. Direct line (giant email)
   -------------------------------------------------------------------------- */
.hg-line-mail {
  display: inline-flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.6rem);
  font-family: var(--hg-font-display);
  font-size: clamp(1.7rem, 5.5vw, 4.6rem);
  font-weight: 600;
  color: var(--hg-ink);
  line-height: 1;
  word-break: break-all;
  cursor: pointer;
  border-bottom: 3px solid rgba(198, 161, 91, .55);
  padding-bottom: .4rem;
  transition: color .3s ease, border-color .3s ease;
}
.hg-line-mail:hover { color: var(--hg-gold-2); border-bottom-color: var(--hg-gold-2); }
.hg-line-mail i { font-size: .45em; color: var(--hg-gold-2); }
.hg-messengers { display: flex; flex-wrap: wrap; gap: .8rem; }

/* --------------------------------------------------------------------------
   39. Map
   -------------------------------------------------------------------------- */
.hg-map iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--hg-line);
  border-radius: var(--hg-radius);
  display: block;
  filter: sepia(.22) saturate(.9);
}

/* --------------------------------------------------------------------------
   40. Subscribe (footer invite)
   -------------------------------------------------------------------------- */
.hg-subscribe {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.hg-subscribe input {
  flex: 1 1 220px;
  padding: .95rem 1.25rem;
  background: rgba(247, 243, 235, .07);
  border: 1px solid var(--hg-light-line);
  border-radius: 2px;
  color: var(--hg-ivory);
  font-family: var(--hg-font-body);
  outline: none;
  transition: border-color .3s ease;
}
.hg-subscribe input::placeholder { color: rgba(247,243,235,.45); }
.hg-subscribe input:focus { border-color: var(--hg-gold); }

/* --------------------------------------------------------------------------
   41. Generic snap row (galleries / reels)
   -------------------------------------------------------------------------- */
.hg-snap {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .25rem .25rem 1.25rem;
}
.hg-snap > * { scroll-snap-align: start; }
.hg-snap figure { margin: 0; }
.hg-snap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--hg-radius);
  display: block;
}
.hg-snap figcaption {
  margin-top: .6rem;
  font-family: var(--hg-font-mono);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hg-muted);
}
.hg-snap--wide { grid-auto-columns: minmax(420px, 1.4fr); }
.hg-snap--wide img { aspect-ratio: 16/9; }

@media (max-width: 767.98px) {
  .hg-snap, .hg-snap--wide { grid-auto-columns: minmax(260px, 85%); }
}

/* --------------------------------------------------------------------------
   42. Keyframes
   -------------------------------------------------------------------------- */
@keyframes hg-pulse {
  0% { box-shadow: 0 0 0 0 rgba(75, 175, 106, .55); }
  70% { box-shadow: 0 0 0 9px rgba(75, 175, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(75, 175, 106, 0); }
}
@keyframes hg-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes hg-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes hg-shimmer {
  to { background-position: 200% center; }
}
@keyframes hg-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   43. Motion preferences & small screens
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 575.98px) {
  :root { --hg-header-h: 112px; }
  .hg-cookie { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .hg-toast { right: 12px; left: 12px; bottom: 12px; max-width: none; }
  .hg-hero__metrics { grid-template-columns: 1fr 1fr; }
  .hg-hero__metric { border-left: 0; border-top: 1px solid var(--hg-light-line); padding-top: .9rem; }
  .hg-hero__metric:nth-child(-n+2) { border-top: 0; }
  .hg-hero__metric:nth-child(even) { border-left: 1px solid var(--hg-light-line); }
}
