:root{
  --gg-text:#2a2a2a;
  --gg-muted:#6b6b6b;
  --gg-accent:#335d3a;
  --gg-bg:#ffffff;
}

html,body{height:100%;}
body{
  color:var(--gg-text);
  background:var(--gg-bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.navbar-brand span{letter-spacing:.02em;}

.hero-img{
  display:block;
  width:100%;
  height:clamp(280px, 46vw, 520px);
  object-fit:cover;
  border-radius:.5rem;
}

.lead{color:var(--gg-muted);}

.gallery-item img{
  transition:transform .25s ease, filter .25s ease;
  display:block;
}
.gallery-item:hover img{transform:scale(1.03); filter:saturate(1.05);}

.object-cover{object-fit:cover; aspect-ratio:1/1;}

/* Visible-on-focus skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:1rem;
  top:1rem;
  width:auto;
  height:auto;
  padding:.5rem .75rem;
  background:#fff;
  color:#000;
  border:1px solid #000;
  border-radius:.25rem;
  z-index:1050;
}
