




@font-face { font-family:"Geist"; font-style:normal; font-weight:400; font-display:swap;
  src:url("fonts/geist-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family:"Geist"; font-style:normal; font-weight:500; font-display:swap;
  src:url("fonts/geist-sans-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family:"Geist"; font-style:normal; font-weight:600; font-display:swap;
  src:url("fonts/geist-sans-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family:"Geist Mono"; font-style:normal; font-weight:400; font-display:swap;
  src:url("fonts/geist-mono-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family:"Geist Mono"; font-style:normal; font-weight:500; font-display:swap;
  src:url("fonts/geist-mono-latin-500-normal.woff2") format("woff2"); }

:root {
  

  --hgc-forest: #1B3A2F;
  --hgc-gold:   #B8956A;

  

  --hgc-paper: #FAF7F2;
  --hgc-ink:   #1B2A24;
  --hgc-muted: #5C6660;
  --hgc-line:  #E3E5E1;
  --hgc-line-strong: #869084;

   
  --hgc-gold-ink: #7A5F35;
  

  --hgc-cream:   #F4EDE0;
  --hgc-surface: #FFFFFF;
  

  --hgc-line-cream: #DAD3C6;
  --hgc-line-strong-cream: #727C71;

  

  --hgc-step-0:  clamp(1rem, .97rem + .17vw, 1.10rem);
  --hgc-step-1:  clamp(1.25rem, 1.18rem + .36vw, 1.47rem);
  --hgc-step-2:  clamp(1.56rem, 1.42rem + .70vw, 1.96rem);
  --hgc-step-3:  clamp(1.95rem, 1.68rem + 1.35vw, 2.61rem);
  --hgc-step-4:  clamp(2.44rem, 1.86rem + 2.90vw, 4rem);

  --hgc-shell: 72rem;
  --hgc-pad:   clamp(1.25rem, 4vw, 3rem);
  --hgc-ease:  cubic-bezier(.16, 1, .3, 1);
  --hgc-step--1: clamp(.82rem, .80rem + .09vw, .87rem);

  

  --hgc-radius:    .75rem;
  --hgc-radius-sm: .625rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --hgc-forest: #6FA88E;
    --hgc-gold:   #D8B489;
    --hgc-paper:  #0F1A14;
    --hgc-ink:    #E6EAE7;
    --hgc-muted:  #9AA49E;
    --hgc-line:   #2A332E;
    --hgc-line-strong: #5F6D64;

    --hgc-gold-ink: #D8B489;
    --hgc-cream:    #1A2620;
    --hgc-surface:  #18201C;
    

    --hgc-line-cream: #37413A;
    --hgc-line-strong-cream: #707E75;
  }
}



.hgc-shell {
  width: 100%;
  max-width: var(--hgc-shell);
  margin-inline: auto;
  padding-inline: var(--hgc-pad);
}

 
.hgc-top {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--hgc-paper) 90%, transparent);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--hgc-line);
}
.hgc-top-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.5rem; padding-block: .75rem;
}
.hgc-top .hgc-lockup { display: block; height: 30px; width: auto; max-width: 100%; }
.hgc-top-in nav { display: none; gap: 1.6rem; }
@media (min-width: 66rem) { .hgc-top-in nav { display: flex; } }
.hgc-top-in nav a {
  text-decoration: none; color: var(--hgc-muted);
  font-size: var(--hgc-step--1);
  transition: color 140ms var(--hgc-ease);
}
.hgc-top-in nav a:hover { color: var(--hgc-ink); }


.hgc-top-in nav a[aria-current="page"] { color: var(--hgc-ink); }

.hgc-brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }



.hgc-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--hgc-line);
  border-radius: .625rem; color: var(--hgc-ink); cursor: pointer;
  transition: border-color 140ms var(--hgc-ease);
}
.hgc-burger:hover { border-color: var(--hgc-line-strong); }
.hgc-burger svg { width: 20px; height: 20px; display: block; }
@media (min-width: 66rem) { .hgc-burger { display: none; } }

.hgc-menu {
  border-top: 1px solid var(--hgc-line);
  background: var(--hgc-paper);
  padding-block: .5rem 1rem;
}
.hgc-menu[hidden] { display: none; }
.hgc-menu .hgc-shell { display: flex; flex-direction: column; }
.hgc-menu a {
  text-decoration: none; color: var(--hgc-muted);
  font-size: var(--hgc-step--1);
  padding-block: .75rem;
  min-height: 44px; display: flex; align-items: center;
  border-bottom: 1px solid var(--hgc-line);
}
.hgc-menu a:last-child { border-bottom: 0; }
.hgc-menu a:hover { color: var(--hgc-ink); }
@media (min-width: 66rem) { .hgc-menu { display: none; } }



.hgc-btn-line {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 48px;
  padding: .8125rem 1.375rem; border-radius: .75rem;
  font-size: .9375rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--hgc-line-strong);
  color: var(--hgc-ink);
  transition: border-color 140ms var(--hgc-ease), color 140ms var(--hgc-ease);
}
.hgc-btn-line:hover { border-color: var(--hgc-ink); }



.hgc-top-cta { display: none; }
@media (min-width: 66rem) { .hgc-top-cta { display: inline-flex; } }

 
.hgc-foot {
  background: var(--hgc-forest);
  color: #EDF1EE;
  padding-block: 3rem 2.25rem;
  margin-top: clamp(5rem, 10vh, 9rem);
  position: relative;
}


:is([class*="py-12"], [class*="py-16"], [class*="py-20"], [class*="py-24"]) + .hgc-foot {
  margin-top: 0;
}
.hgc-foot::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 2px; background: var(--hgc-gold);
}
@media (prefers-color-scheme: dark) {
  .hgc-foot { background: #0B120E; color: #C9D2CC; }
}
.hgc-foot .hgc-lockup { display: block; height: 26px; width: auto; margin-bottom: 1.75rem; }

.hgc-foot-cols { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 48rem) { .hgc-foot-cols { grid-template-columns: repeat(3, 1fr); } }



.hgc-foot .hgc-foot-h {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  margin: 0 0 .75rem; color: #D8B489;
}
.hgc-foot p, .hgc-foot address {
  font-size: var(--hgc-step--1); line-height: 1.7;
  font-style: normal; color: #C6D0C9; margin: 0;
}
@media (prefers-color-scheme: dark) {
  .hgc-foot p, .hgc-foot address { color: #9FAAA3; }
}

.hgc-foot-legal {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / .14);
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  justify-content: space-between; align-items: center;
}
.hgc-foot-legal nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hgc-foot-legal a {
  color: #C6D0C9; font-size: var(--hgc-step--1); text-decoration: none;
  transition: color 140ms var(--hgc-ease);
}
.hgc-foot-legal a:hover { color: #fff; }
.hgc-foot-legal a[aria-current="page"] { color: #fff; }
.hgc-foot-legal .hgc-mono {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: var(--hgc-step--1);
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  color: #A9B5AD;
}
@media (prefers-color-scheme: dark) {
  .hgc-foot-legal a, .hgc-foot-legal .hgc-mono { color: #9FAAA3; }
}



.hgc-foot :where(a, button):focus-visible { outline-color: #D8B489; }

 
@media (hover: none) and (pointer: coarse) {
  .hgc-btn-line { min-height: 48px; }
  .hgc-top-in nav a, .hgc-foot-legal a {
    min-height: 44px; display: inline-flex; align-items: center;
  }
}



@media (prefers-reduced-motion: reduce) {
  .hgc-top-in nav a, .hgc-btn-line, .hgc-foot-legal a { transition: none; }
}



.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 1rem; top: 1rem; z-index: 99;
  background: var(--ink, #1B2A24);
  color: var(--paper, #FAF7F2);
  padding: .625rem 1rem; border-radius: .5rem; text-decoration: none;
}


@media (prefers-color-scheme: dark) {
  .skip:focus {
    background: var(--ink, #E6EAE7);
    color: var(--paper, #0F1A14);
  }
}
